diff options
author | Raja R Harinath <harinath@src.gnome.org> | 1998-02-18 21:36:45 +0000 |
---|---|---|
committer | Raja R Harinath <harinath@src.gnome.org> | 1998-02-18 21:36:45 +0000 |
commit | ba3ab7290efbcc1d46e4f12796cd4ed46ceb29c7 (patch) | |
tree | a5ca7f47ca4495c0d8862989154997105366e8b8 /macros/gnome-support.m4 | |
parent | 139d68314c969db390089b099aede177f6c2f117 (diff) | |
download | gnome-common-ba3ab7290efbcc1d46e4f12796cd4ed46ceb29c7.tar.gz |
Replace `strcasecmp' if necessary.
* gnome-support.m4 (GNOME_SUPPORT_CHECKS): Replace `strcasecmp' if
necessary.
- Hari
svn path=/trunk/; revision=88
Diffstat (limited to 'macros/gnome-support.m4')
-rw-r--r-- | macros/gnome-support.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4 index 9286f79..28b8e11 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) ]) |