Back to the Main Page.

etr_strings_strcasecmp

Download the M4 Source.

Synopsis

ETR_STRINGS_STRCASECMP

Version

1.1 (2001/07/26)     C_Support @ ac-archive-0.5.39

Author

Warren Young <warren@etr-usa.com>

Description

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

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