diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-20 05:35:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-20 05:35:54 +0000 |
commit | 479038b02cbcb8a357fa42dffb129569cbb71e68 (patch) | |
tree | 14cedf70c913cff95187a9c134876ee96ac74290 | |
parent | e13407adf924feb9273eea3aa57ad16e5a6c0ebc (diff) | |
download | coreutils-479038b02cbcb8a357fa42dffb129569cbb71e68.tar.xz |
from gnulib
-rw-r--r-- | m4/memcoll.m4 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/m4/memcoll.m4 b/m4/memcoll.m4 new file mode 100644 index 000000000..23f56af17 --- /dev/null +++ b/m4/memcoll.m4 @@ -0,0 +1,15 @@ +# memcoll.m4 serial 2 +dnl Copyright (C) 2002 Free Software Foundation, Inc. +dnl This file is free software, distributed under the terms of the GNU +dnl General Public License. As a special exception to the GNU General +dnl Public License, this file may be distributed as part of a program +dnl that contains a configuration script generated by Autoconf, under +dnl the same distribution terms as the rest of that program. + +AC_DEFUN([gl_MEMCOLL], +[ + dnl Prerequisites of lib/memcoll.c. + AC_REQUIRE([AC_FUNC_MEMCMP]) + AC_CHECK_HEADERS_ONCE(string.h) + AC_FUNC_STRCOLL +]) |