summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-06-11 15:47:44 -0700
committerGuy Harris <guy@alum.mit.edu>2015-06-11 15:47:44 -0700
commit3dd9240cc311f3c617d68764a6e6a1a21a77c6a6 (patch)
treeef08093422e4db1e2830542edf6f0a44e5d4726e /configure.in
parent7e17343965b7275367a4f0ceb90969867f3f1410 (diff)
downloadtcpdump-3dd9240cc311f3c617d68764a6e6a1a21a77c6a6.tar.gz
Do case-insensitive comparisons assuming ASCII strings.
Do the case-insensitive comparisons in a locale-independent fashion that only maps ASCII letters, in the standard English-language fashion; that way, we don't get bitten by, for example, Turkish having separate "i with dot" and "i without dot" letters, with lower-case "i with dot" being mapped to upper-case "I with dot" rather than being mapped to "I".
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 7ee957de..0640f5a8 100644
--- a/configure.in
+++ b/configure.in
@@ -573,7 +573,7 @@ if test "$ac_cv_namereqd" = no; then
missing_includes=yes
fi
-AC_REPLACE_FUNCS(vfprintf strcasecmp strlcat strlcpy strdup strsep getopt_long)
+AC_REPLACE_FUNCS(vfprintf strlcat strlcpy strdup strsep getopt_long)
AC_CHECK_FUNCS(fork vfork strftime)
AC_CHECK_FUNCS(setlinebuf alarm)