install-reloc: Support multi-binary installation.
[gnulib.git] / modules / memmem
index 72ebd21..63bd3ef 100644 (file)
@@ -1,24 +1,24 @@
 Description:
-memmem() function: locate first substring in a buffer.
+memmem() function: efficiently locate first substring in a buffer.
 
 Files:
-lib/memmem.h
-lib/memmem.c
-m4/memmem.m4
 
 Depends-on:
+memmem-simple
 
 configure.ac:
 gl_FUNC_MEMMEM
+if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then
+  AC_LIBOBJ([memmem])
+fi
 
 Makefile.am:
-lib_SOURCES += memmem.h
 
 Include:
-"memmem.h"
+<string.h>
 
 License:
-LGPL
+LGPLv2+
 
 Maintainer:
-libc, Simon Josefsson
+libc, Eric Blake