Hash :
fcc94473
Author :
Date :
2011-05-22T12:59:31
strcase: Move AC_LIBOBJ invocations to module description. * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Set HAVE_STRNCASECMP. (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Call AC_CHECK_FUNCS instead of AC_REPLACE_FUNCS. Move AC_LIBOBJ, gl_PREREQ_STRCASECMP, gl_PREREQ_STRNCASECMP invocations from here... * modules/strcase (configure.ac): ... to here.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
Description:
Case-insensitive string comparison functions.
Status:
obsolete
Notice:
This module is obsolete.
Files:
lib/strcasecmp.c
lib/strncasecmp.c
m4/strcase.m4
Depends-on:
strings
configure.ac:
gl_STRCASE
if test $HAVE_STRCASECMP = 0; then
AC_LIBOBJ([strcasecmp])
gl_PREREQ_STRCASECMP
fi
if test $HAVE_STRNCASECMP = 0; then
AC_LIBOBJ([strncasecmp])
gl_PREREQ_STRNCASECMP
fi
Makefile.am:
Include:
<strings.h>
License:
LGPLv2+
Maintainer:
Bruno Haible