[Macro Index Page] [Download M4 Source]

etr_strings_strcasecmp

Synopsis

ETR_STRINGS_STRCASECMP

Description

This macro tries to find strcasecmp() in strings.h. See the ETR_STRING_STRCASECMP macro's commentary for usage details.

Version

1.2 (last modified: 2001-05-25)

Author

Warren Young <warren@etr-usa.com>

M4 Source Code

AC_DEFUN([ETR_STRINGS_STRCASECMP],
[ AC_CACHE_CHECK([for strcasecmp() in strings.h], ac_cv_strings_strcasecmp, [

        AC_TRY_LINK(
                [ #include <strings.h> ],
                [ strcasecmp("foo", "bar"); ],
                ac_cv_strings_strcasecmp=yes,
                ac_cv_strings_strcasecmp=no)
])

        if test x"$ac_cv_strings_strcasecmp" = "xyes"
        then
                AC_DEFINE(HAVE_STRINGS_STRCASECMP, 1,
                        [ Define if your system has strcasecmp() in strings.h ])
        fi
]) dnl ETR_STRINGS_STRCASECMP

Copyright

GNU General Public License with this special exception.