1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
Import(["env", "conf_env"])
if env.get("LIBIDN_BUNDLED", False) :
################################################################################
# Module flags
################################################################################
if env["SCONS_STAGE"] == "flags" :
env["LIBIDN_FLAGS"] = {
"CPPDEFINES": ["IDNA_STATIC"],
"CPPPATH": [Dir("src")],
"LIBPATH": [Dir(".")],
"LIBS": ["Swiften_IDN"],
}
if env["PLATFORM"] == "win32" :
env["LIBIDN_FLAGS"]["CPPPATH"] += [Dir("stubs/win32")]
if env["MSVC_VERSION"][:3] == "9.0" :
env["LIBIDN_FLAGS"]["CPPPATH"] += [Dir("stubs/win32/VC2008")]
################################################################################
# Build
################################################################################
if env["SCONS_STAGE"] == "build" :
myenv = env.Clone()
# Remove warn flags
myenv.Replace(CCFLAGS = [flag for flag in env["CCFLAGS"] if flag not in ["-W", "-Wall"]])
# Check for strcasecmp() or replacement
conf = Configure(conf_env)
if not conf.CheckFunc('strcasecmp') :
if conf.CheckFunc("stricmp") :
myenv.Append(CPPDEFINES = [("strcasecmp", "stricmp")])
else :
print "Error: Cannot find strcasecmp() or stricmp()"
Exit(1)
if not conf.CheckFunc('strncasecmp') :
if conf.CheckFunc("strnicmp") :
myenv.Append(CPPDEFINES = [("strncasecmp", "strnicmp")])
else :
print "Error: Cannot find strncasecmp() or strnicmp()"
Exit(1)
conf.Finish()
myenv.Append(CPPDEFINES = "IDNA_STATIC")
myenv.Append(CPPPATH = ["src", "stubs"])
if myenv["PLATFORM"] == "win32" :
myenv.Append(CPPPATH = "stubs/win32")
if myenv["MSVC_VERSION"][:3] == "9.0" :
myenv.Append(CPPPATH = "stubs/win32/VC2008")
myenv.StaticLibrary("Swiften_IDN", [
"src/stringprep.c",
"src/profiles.c",
"src/rfc3454.c",
"src/punycode.c",
"src/idna.c",
"src/toutf8.c",
"src/nfkc.c"
])
|