mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
* m4/strdup.m4 (gl_FUNC_STRDUP): Move AC_LIBOBJ and gl_PREREQ_STRDUP invocations from here... * modules/strdup (configure.ac): ... to here. * modules/strdup-posix (configure.ac): ... and here.
30 lines
441 B
Plaintext
30 lines
441 B
Plaintext
Description:
|
|
strdup() function: duplicate a string.
|
|
|
|
Files:
|
|
lib/strdup.c
|
|
m4/strdup.m4
|
|
|
|
Depends-on:
|
|
string
|
|
malloc-posix [test $ac_cv_func_strdup = no || test $REPLACE_STRDUP = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_STRDUP_POSIX
|
|
if test $ac_cv_func_strdup = no || test $REPLACE_STRDUP = 1; then
|
|
AC_LIBOBJ([strdup])
|
|
gl_PREREQ_STRDUP
|
|
fi
|
|
gl_STRING_MODULE_INDICATOR([strdup])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<string.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all, glibc
|