mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-05-13 15:13:36 +00:00
* modules/c-strcasecmp: New file. * modules/c-strncasecmp: New file. * modules/c-strcase: Merely depend on c-strcasecmp, c-strncasecmp. * lib/strings.in.h (strcasecmp, strncasecmp): Update warning message. * tests/test-c-strcasecmp.sh: New file, based on tests/test-c-strcase.sh. * tests/test-c-strncasecmp.sh: New file, based on tests/test-c-strcase.sh. * tests/test-c-strcase.sh: Remove file. * modules/c-strcasecmp-tests: New file. * modules/c-strncasecmp-tests: New file. * modules/c-strcase-tests: Remove file. * doc/c-strcasecmp.texi: New file, based on doc/c-strcase.texi. * doc/c-strncasecmp.texi: New file, based on doc/c-strcase.texi. * doc/c-strcase.texi: Remove file. * doc/c-locale.texi: Include c-strcasecmp.texi and c-strncasecmp.texi separately. * modules/c-strcaseeq (Depends-on): Add c-strcasecmp. Remove c-strcase. * modules/iconv_open (Depends-on): Likewise. * modules/nl_langinfo-tests (Depends-on): Likewise. * modules/propername (Depends-on): Likewise. * modules/propername-lite (Depends-on): Likewise. * modules/striconv (Depends-on): Likewise. * modules/striconveh (Depends-on): Likewise. * modules/striconveha (Depends-on): Likewise. * modules/c-strcasestr (Depends-on): Add c-strncasecmp. Remove c-strcase.
36 lines
528 B
Plaintext
36 lines
528 B
Plaintext
Description:
|
|
Character set conversion of strings made easy, uses iconv.
|
|
|
|
Files:
|
|
lib/striconv.h
|
|
lib/striconv.c
|
|
|
|
Depends-on:
|
|
iconv
|
|
iconv_open
|
|
free-posix
|
|
strdup
|
|
c-strcasecmp
|
|
|
|
configure.ac:
|
|
if test $gl_cond_libtool = false; then
|
|
gl_ltlibdeps="$gl_ltlibdeps $LTLIBICONV"
|
|
gl_libdeps="$gl_libdeps $LIBICONV"
|
|
fi
|
|
|
|
Makefile.am:
|
|
lib_SOURCES += striconv.h striconv.c
|
|
lib_LDFLAGS += $(LTLIBICONV)
|
|
|
|
Include:
|
|
"striconv.h"
|
|
|
|
Link:
|
|
$(LTLIBICONV) when linking with libtool, $(LIBICONV) otherwise
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Simon Josefsson
|