Mercurial > hg > octave-kai > gnulib-hg
annotate modules/memmem @ 17476:6057744acd2c default tip master
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Fri, 16 Aug 2013 06:32:22 -0700 |
parents | 577ff30eb284 |
children |
rev | line source |
---|---|
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
9591 | 2 memmem() function: efficiently locate first substring in a buffer. |
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 Depends-on: |
9596
6eb1fb1fb3e8
Small tweaks to memmem module.
Bruno Haible <bruno@clisp.org>
parents:
9591
diff
changeset
|
7 memmem-simple |
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 configure.ac: |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 gl_FUNC_MEMMEM |
15039
577ff30eb284
memmem*: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9596
diff
changeset
|
11 if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then |
577ff30eb284
memmem*: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9596
diff
changeset
|
12 AC_LIBOBJ([memmem]) |
577ff30eb284
memmem*: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9596
diff
changeset
|
13 fi |
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 Makefile.am: |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 Include: |
7944
a1d177cd9523
* doc/gnulib-tool.texi (Initial import): Update to match current
Paul Eggert <eggert@cs.ucla.edu>
parents:
7497
diff
changeset
|
18 <string.h> |
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 License: |
9102
404dc8725caf
Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents:
8054
diff
changeset
|
21 LGPLv2+ |
5310
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 |
26382eb5dbd2
New module 'memmem', from Simon Josefsson.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 Maintainer: |
9590
246fc6fd3787
Give gcc some memmem optimization hints.
Eric Blake <ebb9@byu.net>
parents:
9584
diff
changeset
|
24 libc, Eric Blake |