Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/relocatable-prog @ 10748:0ef26bffcbe1
Mark 'memcmp' obsolete.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 02 Nov 2008 16:57:03 +0100 |
parents | 0c3b25464595 |
children | b25692ed074a |
rev | line source |
---|---|
8313 | 1 Description: |
2 Help make programs relocatable, that is, to allow them to function | |
3 properly when copied to an arbitrary directory. | |
4 | |
5 Files: | |
6 build-aux/config.libpath | |
7 build-aux/reloc-ldflags | |
8 doc/relocatable.texi | |
9 lib/relocatable.h | |
10 lib/relocatable.c | |
11 lib/progreloc.c | |
12 m4/relocatable.m4 | |
13 m4/relocatable-lib.m4 | |
9444
0c3b25464595
relocatable.m4 needs lib-ld.m4.
Bruno Haible <bruno@clisp.org>
parents:
9363
diff
changeset
|
14 m4/lib-ld.m4 |
8313 | 15 |
16 Depends-on: | |
17 relocatable-prog-wrapper | |
18 progname | |
8318 | 19 canonicalize-lgpl |
20 xalloc | |
21 xreadlink | |
22 stdbool | |
23 unistd | |
10748 | 24 memcmp |
8313 | 25 |
26 configure.ac: | |
27 gl_RELOCATABLE([$gl_source_base]) | |
28 | |
29 Makefile.am: | |
9363
4d4d1419d4ab
Use @FOO@ syntax instead of $(FOO) syntax, because it uncovers typos early.
Bruno Haible <bruno@clisp.org>
parents:
8334
diff
changeset
|
30 DEFS += -DEXEEXT=\"@EXEEXT@\" |
8313 | 31 |
32 Include: | |
33 #include "relocatable.h" | |
34 #include "progname.h" | |
35 | |
36 License: | |
37 GPL | |
38 | |
39 Maintainer: | |
40 Bruno Haible, Ben Pfaff | |
41 |