diff options
Diffstat (limited to 'macros')
-rw-r--r-- | macros/ChangeLog | 5 | ||||
-rw-r--r-- | macros/gnome-support.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 72e47bd22b..a4c4d43907 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,8 @@ +1998-02-18 Raja R Harinath <harinath@cs.umn.edu> + + * gnome-support.m4 (GNOME_SUPPORT_CHECKS): Replace `strcasecmp' if + necessary. + 1998-02-15 Raja R Harinath <harinath@cs.umn.edu> * Makefile.am (MACROS): Add `gnome-pthread-check.m4'. 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) ]) |