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 5853a85..fa8f870 100644 --- a/3rdParty/LibIDN/SConscript +++ b/3rdParty/LibIDN/SConscript @@ -18,13 +18,13 @@ if not conf.CheckFunc('strcasecmp') : if conf.CheckFunc("stricmp") : myenv.Append(CPPDEFINES = [("strcasecmp", "stricmp")]) else : - print "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 "Cannot find strncasecmp() or strnicmp()" + print "Error: Cannot find strncasecmp() or strnicmp()" Exit(1) conf.Finish() |