From 479038b02cbcb8a357fa42dffb129569cbb71e68 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 20 Jul 2003 05:35:54 +0000 Subject: [PATCH] from gnulib --- m4/memcoll.m4 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 m4/memcoll.m4 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 +])