gettimeofday: port recent C++ fix to Emacs
[gnulib.git] / modules / memmem
index a6b7b93..63bd3ef 100644 (file)
@@ -1,23 +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:
 
 Include:
-"memmem.h"
+<string.h>
 
 License:
-LGPL
+LGPLv2+
 
 Maintainer:
-libc, Simon Josefsson
+libc, Eric Blake