summaryrefslogtreecommitdiffstats
blob: fad1ebacc4f227df21198a63e3a94d085f4ca5dd (plain)
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
Import(["env", "conf_env"])

################################################################################
# Module flags
################################################################################

if env["SCONS_STAGE"] == "flags" :
	env["LIBIDN_FLAGS"] = {
			"CPPDEFINES": ["IDNA_STATIC"],
			"CPPPATH": [Dir("src")],
			"LIBPATH": [Dir(".")],
			"LIBS": ["IDN"],
		}

################################################################################
# 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")
		env["LIBIDN_FLAGS"]["CPPPATH"] += [Dir("stubs/win32")]

	myenv.StaticLibrary("IDN", [
			"src/stringprep.c",
			"src/profiles.c",
			"src/rfc3454.c",
			"src/punycode.c",
			"src/idna.c",
			"src/toutf8.c",
			"src/nfkc.c"
		])