diff options
Diffstat (limited to '3rdParty/LibIDN')
| -rw-r--r-- | 3rdParty/LibIDN/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdParty/LibIDN/SConscript b/3rdParty/LibIDN/SConscript index 90892b0..c99aff8 100644 --- a/3rdParty/LibIDN/SConscript +++ b/3rdParty/LibIDN/SConscript @@ -38,17 +38,17 @@ if env.get("LIBIDN_BUNDLED", False) : 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()" + 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()" + print("Error: Cannot find strncasecmp() or strnicmp()") Exit(1) conf.Finish() myenv.Append(CPPDEFINES = ["LIBIDN_STATIC", "HAVE_CONFIG_H"]) myenv.Append(CPPPATH = ["src", "stubs", "src/gl"]) |
Swift