diff options
Diffstat (limited to 'gl/m4')
-rw-r--r-- | gl/m4/gnulib.m4 | 4 | ||||
-rw-r--r-- | gl/m4/strpbrk.m4 | 16 | ||||
-rw-r--r-- | gl/m4/strsep.m4 | 17 |
3 files changed, 1 insertions, 36 deletions
diff --git a/gl/m4/gnulib.m4 b/gl/m4/gnulib.m4 index 46d5e338b..a17d49dbd 100644 --- a/gl/m4/gnulib.m4 +++ b/gl/m4/gnulib.m4 @@ -8,7 +8,7 @@ # Generated by gnulib-tool. # # Invoked as: gnulib-tool --import -# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=gl --m4-base=gl/m4 --aux-dir=scripts alloca-opt allocsa mkdtemp setenv strpbrk strsep vasnprintf vasprintf xsize +# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=gl --m4-base=gl/m4 --aux-dir=scripts alloca-opt allocsa mkdtemp setenv strpbrk vasnprintf vasprintf xsize AC_DEFUN([gl_EARLY], [ @@ -21,8 +21,6 @@ AC_DEFUN([gl_INIT], gl_ALLOCSA gt_FUNC_MKDTEMP gt_FUNC_SETENV - gl_FUNC_STRPBRK - gl_FUNC_STRSEP gl_FUNC_VASNPRINTF gl_FUNC_VASPRINTF gl_XSIZE diff --git a/gl/m4/strpbrk.m4 b/gl/m4/strpbrk.m4 deleted file mode 100644 index 68360684e..000000000 --- a/gl/m4/strpbrk.m4 +++ /dev/null @@ -1,16 +0,0 @@ -# strpbrk.m4 serial 2 -dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -AC_DEFUN([gl_FUNC_STRPBRK], -[ - AC_REPLACE_FUNCS(strpbrk) - if test $ac_cv_func_strpbrk = no; then - gl_PREREQ_STRPBRK - fi -]) - -# Prerequisites of lib/strpbrk.c. -AC_DEFUN([gl_PREREQ_STRPBRK], [:]) diff --git a/gl/m4/strsep.m4 b/gl/m4/strsep.m4 deleted file mode 100644 index 40a087b3d..000000000 --- a/gl/m4/strsep.m4 +++ /dev/null @@ -1,17 +0,0 @@ -# strsep.m4 serial 3 -dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -AC_DEFUN([gl_FUNC_STRSEP], -[ - dnl Persuade glibc <string.h> to declare strsep(). - AC_REQUIRE([AC_GNU_SOURCE]) - - AC_REPLACE_FUNCS(strsep) - gl_PREREQ_STRSEP -]) - -# Prerequisites of lib/strsep.c. -AC_DEFUN([gl_PREREQ_STRSEP], [:]) |