utimens: port to NetBSD-10.99.12/amd64
[gnulib.git] / modules / strcase
blobfaf40578e7a18a03e470190b6244fb7fbf9a3ea5
1 Description:
2 Case-insensitive string comparison functions.
4 Files:
5 lib/strcasecmp.c
6 lib/strncasecmp.c
7 m4/strcase.m4
9 Depends-on:
10 strings
12 configure.ac:
13 gl_STRCASE
14 gl_CONDITIONAL([GL_COND_OBJ_STRCASECMP], [test $HAVE_STRCASECMP = 0])
15 AM_COND_IF([GL_COND_OBJ_STRCASECMP], [
16   gl_PREREQ_STRCASECMP
18 gl_CONDITIONAL([GL_COND_OBJ_STRNCASECMP], [test $HAVE_STRNCASECMP = 0])
19 AM_COND_IF([GL_COND_OBJ_STRNCASECMP], [
20   gl_PREREQ_STRNCASECMP
23 Makefile.am:
24 if GL_COND_OBJ_STRCASECMP
25 lib_SOURCES += strcasecmp.c
26 endif
27 if GL_COND_OBJ_STRNCASECMP
28 lib_SOURCES += strncasecmp.c
29 endif
31 Include:
32 <strings.h>
34 License:
35 LGPLv2+
37 Maintainer:
38 all