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

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

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 "Cannot find strcasecmp() or stricmp()"
		Exit(1)
if not conf.CheckFunc('strncasecmp') :
	if conf.CheckFunc("strnicmp") :
		myenv.Append(CPPDEFINES = [("strncasecmp", "strnicmp")])
	else :
		print "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"
	])