aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-support.m4
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@src.gnome.org>1998-02-19 05:36:45 +0800
committerRaja R Harinath <harinath@src.gnome.org>1998-02-19 05:36:45 +0800
commitc9d932d2395aa2281fba90ad4d02bfbea03b83e1 (patch)
tree80f5294da11cc8853999135067a690bcaabfbeee /macros/gnome-support.m4
parentd59d4dd766874c04cefd339c592763098ea04786 (diff)
downloadgsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.tar
gsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.tar.gz
gsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.tar.bz2
gsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.tar.lz
gsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.tar.xz
gsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.tar.zst
gsoc2013-evolution-c9d932d2395aa2281fba90ad4d02bfbea03b83e1.zip
Replace `strcasecmp' if necessary.
* gnome-support.m4 (GNOME_SUPPORT_CHECKS): Replace `strcasecmp' if necessary. - Hari svn path=/trunk/; revision=39
Diffstat (limited to 'macros/gnome-support.m4')
-rw-r--r--macros/gnome-support.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4
index 9286f79b45..28b8e116df 100644
--- a/macros/gnome-support.m4
+++ b/macros/gnome-support.m4
@@ -2,6 +2,6 @@ dnl libsupport stuff
dnl GNOME_SUPPORT_CHECKS
AC_DEFUN([GNOME_SUPPORT_CHECKS],[
AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.o getopt1.o")
- AC_REPLACE_FUNCS(strtok_r)
+ AC_REPLACE_FUNCS(strtok_r strcasecmp)
AC_SUBST(LIBOBJS)
])