diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-11-20 15:44:19 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-11-20 15:44:19 +0000 |
| commit | a45a6308d0a0d5db68f9fa5103cb91de4a5ef52c (patch) | |
| tree | a74874c525c2763fc775954348b5132eb4e0aa7a /configure.in | |
| parent | 0c6010abea726c977e7d6384fe5bbf0b7e1accb2 (diff) | |
strcasecmp() for FLUID under AIX.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1336 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index d7a25a8e0..7fbf5178b 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.18 2000/11/20 15:12:39 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.19 2000/11/20 15:44:17 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -137,7 +137,8 @@ AC_CHECK_FUNC(snprintf, else AC_DEFINE(HAVE_SNPRINTF) fi) -AC_CHECK_FUNCS(vsprintf) +AC_CHECK_FUNC(vsprintf) +AC_CHECK_FUNC(strcasecmp) AC_PATH_XTRA dnl# echo "Ignoring libraries \"$X_PRE_LIBS\" requested by configure." @@ -278,5 +279,5 @@ AC_CONFIG_HEADER(config.h:configh.in) AC_OUTPUT(makeinclude) dnl -dnl End of "$Id: configure.in,v 1.33.2.18 2000/11/20 15:12:39 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.19 2000/11/20 15:44:17 easysw Exp $". dnl |
