|
c7487319
|
2011-06-21T08:50:51
|
|
strerror_r: fix OpenBSD behavior on 0
OpenBSD treats strerror_r(0,,) as a success, but with a message
"Undefined error: 0"; while this is distinct from strerror_r(-1,,)
returning "Unknown error: -1", it does not imply success. Meanwhile,
if buf is short enough for ERANGE, then we can't use strstr to look
for "Unknown" or "Undefined" in the resulting message, like we had
been doing for strerror(). Fix this by shifting the burden - now
the strerror-override code guarantees that 0 will have an
override when needed.
* lib/strerror-override.c (strerror_override): Also override 0
when needed.
* lib/strerror-override.h (strerror_override): Likewise.
* lib/strerror.c (strerror): Simplify, now that 0 override is done
earlier.
* lib/strerror_r.c (strerror_r): Likewise.
* m4/strerror.m4 (gl_FUNC_STRERROR): Split detection of 0
behavior...
(gl_FUNC_STRERROR_0): ...into new macro.
* m4/strerror_r.m4 (gl_FUNC_STRERROR_R): Replace strerror_r if 0
is overridden.
(gl_FUNC_STRERROR_R_WORKS): Avoid extra tests if 0 is broken.
* modules/strerror-override (Files): Add strerror.m4.
(configure.ac): Also provide override for 0 when needed.
* doc/posix-functions/strerror.texi (strerror): Document this.
* doc/posix-functions/perror.texi (perror): Likewise.
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
8681e553
|
2011-06-21T10:10:06
|
|
perror: adjust array size
If we ever adjust strerror-override.h to have a larger size for
STACKBUF_LEN, then perror should also pick up the adjustment.
* modules/perror (Depends-on): Add strerror-override.
* lib/perror.c (perror): Use it to avoid magic number.
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
d80aff0a
|
2011-06-20T15:12:10
|
|
test-stat: don't allocate PATH_MAX bytes
POSIX allows systems (like Hurd) that don't define PATH_MAX, or
which define it larger than a reasonable stack allocation should
be. The test originally used stack allocation to avoid portability
problems with getcwd, but the getcwd-lgpl module solves those.
* tests/test-stat.h (test_stat_func): Don't stack-allocate a
PATH_MAX-sized buffer.
* modules/openat-tests (Depends-on): Add getcwd-lgpl, drop pathmax.
* modules/stat-tests (Depends-on): Likewise.
* tests/test-fstatat.c (includes): Drop pathmax.h.
* tests/test-stat.c (includes): Likewise.
Reported by Bruno Haible.
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
6187bd67
|
2011-06-20T12:38:05
|
|
float: Work around <float.h> bugs on FreeBSD/x86, AIX with GCC, IRIX.
* lib/float.in.h: Add workarounds for FreeBSD/x86, AIX with GCC, IRIX.
* lib/float.c: New file.
* m4/float_h.m4 (gl_FLOAT_H): Also handle FreeBSD, AIX, IRIX. Set
REPLACE_FLOAT_LDBL.
* modules/float (Files): Add lib/float.c.
(configure.ac): Invoke AC_LIBOBJ.
* doc/posix-headers/float.texi: Mention problems on FreeBSD, AIX, IRIX.
|
|
47adaa09
|
2011-06-20T12:27:26
|
|
Tests for module 'float'.
* modules/float-tests: New file.
* tests/test-float.c: New file.
|
|
a1110841
|
2011-06-19T14:41:22
|
|
round-ieee: Fix test failures on AIX 7.1 and OSF/1 5.1.
* modules/round-ieee (Depends-on): Add floor-ieee, ceil-ieee.
* doc/posix-functions/round.texi: Mention problem with negative
arguments.
* doc/posix-functions/ceil.texi: Mention problem on OSF/1 5.1.
|
|
24c9b888
|
2011-06-19T14:06:51
|
|
roundf-ieee: Fix test failures on AIX 7.1 and OSF/1 5.1.
* m4/roundf.m4 (gl_FUNC_ROUNDF): Test also the sign of roundf (-0.3f).
* modules/roundf-ieee (Depends-on): Add floorf-ieee, ceilf-ieee.
* doc/posix-functions/roundf.texi: Mention problem with negative
arguments.
* doc/posix-functions/ceilf.texi: Mention problem on OSF/1 5.1.
|
|
d9a273b2
|
2011-06-18T23:06:53
|
|
openat, fdopendir tests: Fix link errors.
* modules/openat-tests (Depends-on): Add progname.
* modules/fdopendir-tests (Depends-on): Likewise.
* tests/test-fchownat.c: Include progname.h.
(main): Call set_program_name.
* tests/test-fstatat.c: Include progname.h.
(main): Call set_program_name.
* tests/test-mkdirat.c: Include progname.h.
(main): Call set_program_name.
* tests/test-openat.c: Include progname.h.
(main): Call set_program_name.
* tests/test-unlinkat.c: Include progname.h.
(main): Call set_program_name.
* tests/test-fdopendir.c: Include progname.h.
(main): Call set_program_name.
|
|
1e33f8d8
|
2011-06-18T22:22:23
|
|
getcwd tests: Avoid compilation error on HP-UX 11.31.
* modules/getcwd-tests (Depends-on): Add pathmax.
* tests/test-getcwd.c: Include pathmax.h.
|
|
7cc207a7
|
2011-06-17T16:34:36
|
|
Tests: Remove unnecessary dependency.
* modules/canonicalize-tests (Depends-on): Remove progname.
* modules/chown-tests (Depends-on): Likewise.
* modules/dirname-tests (Depends-on): Likewise.
* modules/fdopendir-tests (Depends-on): Likewise.
* modules/fdutimensat-tests (Depends-on): Likewise.
* modules/hash-tests (Depends-on): Likewise.
* modules/lchown-tests (Depends-on): Likewise.
* modules/linkat-tests (Depends-on): Likewise.
* modules/renameat-tests (Depends-on): Likewise.
* modules/spawn-pipe-tests (Depends-on): Likewise.
* modules/utimensat-tests (Depends-on): Likewise.
|
|
edca61fe
|
2011-06-17T12:41:19
|
|
Fix tests link errors.
* modules/ceil-ieee-tests (Makefile.am): Use CEIL_LIBM, not FLOOR_LIBM.
* modules/chown-tests (Makefile.am): Don't link test-chown with
LIBINTL.
* modules/lchown-tests (Makefile.am): Don't link test-lchown with
LIBINTL.
* modules/utimens-tests (Makefile.am): Don't link test-utimens with
LIBINTL.
* modules/futimens-tests (Makefile.am): Don't link test-futimens with
LIBINTL.
|
|
6eedb6a1
|
2011-06-17T01:06:58
|
|
crypto/gc-sha1: Fix recent regression.
* modules/crypto/gc-sha1 (configure.ac): Invoke AC_LIBOBJ here.
* m4/gc-sha1.m4 (gl_GC_SHA1): Don't invoke gl_SHA1.
|
|
05da5d6d
|
2011-06-17T01:06:29
|
|
crypto/gc-md5: Fix recent regression.
* modules/crypto/gc-md5 (configure.ac): Invoke AC_LIBOBJ here.
|
|
d6e1452c
|
2011-06-17T01:02:39
|
|
crypto/gc-md4: Fix recent regression.
* modules/crypto/gc-md4 (configure.ac): Invoke AC_LIBOBJ here.
* m4/md4.m4 (gl_MD4): Ensure the expansion is non-empty.
|
|
0b3b74d5
|
2011-06-17T01:00:39
|
|
crypto/gc-arctwo: Fix recent regression.
* modules/crypto/gc-arctwo (configure.ac): Invoke AC_LIBOBJ here.
* m4/arctwo.m4 (gl_ARCTWO): Ensure the expansion is non-empty.
|
|
20fd2002
|
2011-06-17T00:56:44
|
|
crypto/gc-rijndael: Fix recent regression.
* modules/crypto/gc-rijndael (Files): Remove m4/rijndael.m4.
(configure.ac): Invoke AC_LIBOBJ here.
* m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Don't invoke gl_RIJNDAEL.
Reported by Tom G. Christensen <tgc@jupiterrise.com>.
|
|
6b91542b
|
2011-06-17T00:53:04
|
|
crypto/gc-hmac-sha1: Fix recent regression.
* modules/crypto/gc-hmac-sha1 (Files): Remove m4/hmac-sha1.m4.
(configure.ac): Invoke AC_LIBOBJ here.
* m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Don't invoke gl_HMAC_SHA1.
Reported by Tom G. Christensen <tgc@jupiterrise.com>.
|
|
56bf5897
|
2011-06-17T00:49:44
|
|
crypto/gc-hmac-md5: Fix recent regression.
* modules/crypto/gc-hmac-md5 (Files): Remove m4/hmac-md5.m4.
(configure.ac): Invoke AC_LIBOBJ here.
* m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Don't invoke gl_HMAC_MD5.
Reported by Tom G. Christensen <tgc@jupiterrise.com>.
|
|
96f8fde7
|
2011-06-17T00:47:09
|
|
crypto/gc-des: Fix recent regression.
* modules/crypto/gc-des (Files): Remove m4/des.m4.
(configure.ac): Invoke AC_LIBOBJ here.
* m4/gc-des.m4 (gl_GC_DES): Don't invoke gl_DES.
Reported by Tom G. Christensen <tgc@jupiterrise.com>.
|
|
395cc914
|
2011-06-17T00:44:56
|
|
crypto/gc-arcfour: Fix recent regression.
* modules/crypto/gc-arcfour (Files): Remove m4/arcfour.m4.
(configure.ac): Invoke AC_LIBOBJ here.
* m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Don't invoke gl_ARCFOUR.
Reported by Tom G. Christensen <tgc@jupiterrise.com>.
|
|
8b7bcee2
|
2011-06-16T22:07:19
|
|
fprintftime: Move AC_LIBOBJ invocations to module description.
* m4/fprintftime.m4: Remove file.
* modules/fprintftime (Files): Remove m4/fprintftime.m4.
(configure.ac): Remove gl_FPRINTFTIME call.
(Makefile.am): Augment lib_SOURCES.
Reported by Jim Meyering.
|
|
e374f8d7
|
2011-05-24T03:35:50
|
|
yesno: Move AC_LIBOBJ invocations to module description.
* m4/yesno.m4 (gl_YESNO): Remove AC_LIBOBJ invocation.
* modules/yesno (Makefile.am): Augment lib_SOURCES.
|
|
c7cc592a
|
2011-05-24T03:34:20
|
|
xstrtol: Move AC_LIBOBJ invocations to module description.
* m4/xstrtol.m4 (gl_XSTRTOL): Remove AC_LIBOBJ invocations.
* modules/xstrtol (Makefile.am): Augment lib_SOURCES.
|
|
8b0a6f48
|
2011-05-24T03:31:49
|
|
xstrtold: Move AC_LIBOBJ invocations to module description.
* m4/xstrtod.m4 (gl_XSTRTOLD): Remove AC_LIBOBJ invocation.
* modules/xstrtold (Makefile.am): Augment lib_SOURCES.
|
|
a741924d
|
2011-05-24T03:30:41
|
|
xstrtod: Move AC_LIBOBJ invocations to module description.
* m4/xstrtod.m4 (gl_XSTRTOD): Remove AC_LIBOBJ invocation.
* modules/xstrtod (Makefile.am): Augment lib_SOURCES.
|
|
f601b941
|
2011-05-24T03:28:18
|
|
xnanosleep: Move AC_LIBOBJ invocations to module description.
* m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove AC_LIBOBJ invocation.
* modules/xnanosleep (Makefile.am): Augment lib_SOURCES.
|
|
b344de99
|
2011-05-24T02:30:19
|
|
xgetcwd: Move AC_LIBOBJ invocations to module description.
* m4/xgetcwd.m4 (gl_XGETCWD): Remove AC_LIBOBJ invocation.
* modules/xgetcwd (Makefile.am): Augment lib_SOURCES.
|
|
f5865400
|
2011-05-24T02:27:22
|
|
xalloc: Move AC_LIBOBJ invocations to module description.
* m4/xalloc.m4 (gl_XALLOC): Remove AC_LIBOBJ invocation.
* modules/xalloc (Makefile.am): Augment lib_SOURCES.
|
|
efb6daba
|
2011-05-24T02:25:13
|
|
write-any-file: Move AC_LIBOBJ invocations to module description.
* m4/write-any-file.m4 (gl_WRITE_ANY_FILE): Remove AC_LIBOBJ
invocation.
* modules/write-any-file (Makefile.am): Augment lib_SOURCES.
|
|
be6418e5
|
2011-05-24T02:23:33
|
|
utimens: Move AC_LIBOBJ invocations to module description.
* m4/utimens.m4 (gl_UTIMENS): Remove AC_LIBOBJ invocation.
* modules/utimens (Makefile.am): Augment lib_SOURCES.
|
|
90b64430
|
2011-05-24T02:21:47
|
|
utimecmp: Move AC_LIBOBJ invocations to module description.
* m4/utimecmp.m4 (gl_UTIMECMP): Remove AC_LIBOBJ invocation.
* modules/utimecmp (Makefile.am): Augment lib_SOURCES.
|
|
50933ccc
|
2011-05-24T02:18:29
|
|
userspec: Move AC_LIBOBJ invocations to module description.
* m4/userspec.m4 (gl_USERSPEC): Remove AC_LIBOBJ invocation.
* modules/userspec (Makefile.am): Augment lib_SOURCES.
|
|
09ff0473
|
2011-05-24T02:15:00
|
|
unistd-safer: Move AC_LIBOBJ invocations to module description.
* m4/unistd-safer.m4 (gl_UNISTD_SAFER): Remove AC_LIBOBJ invocations.
* modules/unistd-safer (Makefile.am): Augment lib_SOURCES.
|
|
0855715c
|
2011-05-24T02:13:12
|
|
tempname: Move AC_LIBOBJ invocations to module description.
* m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Remove AC_LIBOBJ invocation.
* modules/tempname (Makefile.am): Augment lib_SOURCES.
|
|
b8fd86de
|
2011-05-24T02:16:53
|
|
unlinkdir: Move AC_LIBOBJ invocations to module description.
* m4/unlinkdir.m4 (gl_UNLINKDIR): Remove AC_LIBOBJ invocation.
* modules/unlinkdir (Makefile.am): Augment lib_SOURCES.
|
|
fcb55c13
|
2011-05-24T02:02:38
|
|
strftime: Move AC_LIBOBJ invocations to module description.
* m4/strftime.m4 (gl_FUNC_STRFTIME): Remove AC_LIBOBJ invocation.
* modules/strftime (Makefile.am): Augment lib_SOURCES.
|
|
de781f38
|
2011-05-24T02:00:29
|
|
stdlib-safer: Move AC_LIBOBJ invocations to module description.
* m4/stdlib-safer.m4: Remove file.
* modules/stdlib-safer (Files): Remove m4/stdlib-safer.m4.
(configure.ac): Remove gl_STDLIB_SAFER call.
(Makefile.am): Augment lib_SOURCES.
|
|
8b498e93
|
2011-05-24T01:54:41
|
|
tmpfile-safer: Move AC_LIBOBJ invocations to module description.
* m4/stdio-safer.m4: Remove file.
* modules/tmpfile-safer (Files): Remove m4/stdio-safer.m4.
(configure.ac): Remove gl_TMPFILE_SAFER call.
(Makefile.am): Augment lib_SOURCES.
|
|
251c566a
|
2011-05-24T01:52:04
|
|
popen-safer: Move AC_LIBOBJ invocations to module description.
* m4/stdio-safer.m4 (gl_POPEN_SAFER): Remove macro.
* modules/popen-safer (Files): Remove m4/stdio-safer.m4.
(configure.ac): Remove gl_POPEN_SAFER call.
(Makefile.am): Augment lib_SOURCES.
|
|
c784be7b
|
2011-05-24T01:50:49
|
|
freopen-safer: Move AC_LIBOBJ invocations to module description.
* m4/stdio-safer.m4 (gl_FREOPEN_SAFER): Remove macro.
* modules/freopen-safer (Files): Remove m4/stdio-safer.m4.
(configure.ac): Remove gl_FREOPEN_SAFER call.
(Makefile.am): Augment lib_SOURCES.
|
|
5209471f
|
2011-05-24T01:46:56
|
|
fopen-safer: Move AC_LIBOBJ invocations to module description.
* m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove macro.
* modules/fopen-safer (Files): Remove m4/stdio-safer.m4.
(configure.ac): Remove gl_FOPEN_SAFER call.
(Makefile.am): Augment lib_SOURCES.
|
|
dfdc239e
|
2011-05-24T01:41:34
|
|
crypto/sha512: Move AC_LIBOBJ invocations to module description.
* m4/sha512.m4 (gl_SHA512): Remove AC_LIBOBJ invocation.
* modules/crypto/sha512 (Makefile.am): Augment lib_SOURCES.
|
|
47746a8d
|
2011-05-24T01:39:42
|
|
crypto/sha256: Move AC_LIBOBJ invocations to module description.
* m4/sha256.m4 (gl_SHA256): Remove AC_LIBOBJ invocation.
* modules/crypto/sha256 (Makefile.am): Augment lib_SOURCES.
|
|
194ac9bf
|
2011-05-24T01:38:14
|
|
crypto/sha1: Move AC_LIBOBJ invocations to module description.
* m4/sha1.m4 (gl_SHA1): Remove AC_LIBOBJ invocation.
* modules/crypto/sha1 (Makefile.am): Augment lib_SOURCES.
|
|
abc56360
|
2011-05-24T01:36:34
|
|
settime: Move AC_LIBOBJ invocations to module description.
* m4/settime.m4 (gl_SETTIME): Remove AC_LIBOBJ invocation.
* modules/settime (Makefile.am): Augment lib_SOURCES.
|
|
01bd9a0f
|
2011-05-24T01:35:15
|
|
savedir: Move AC_LIBOBJ invocations to module description.
* m4/savedir.m4 (gl_SAVEDIR): Remove AC_LIBOBJ invocation.
* modules/savedir (Makefile.am): Augment lib_SOURCES.
|
|
f7fbbd81
|
2011-05-24T01:33:23
|
|
save-cwd: Move AC_LIBOBJ invocations to module description.
* m4/save-cwd.m4 (gl_SAVE_CWD): Remove AC_LIBOBJ invocation.
* modules/save-cwd (Makefile.am): Augment lib_SOURCES.
|
|
98eb156e
|
2011-05-24T01:31:38
|
|
same: Move AC_LIBOBJ invocations to module description.
* m4/same.m4 (gl_SAME): Remove AC_LIBOBJ invocation.
* modules/same (Makefile.am): Augment lib_SOURCES.
|
|
f31c6659
|
2011-05-24T01:30:20
|
|
safe-write: Move AC_LIBOBJ invocations to module description.
* m4/safe-write.m4 (gl_SAFE_WRITE): Remove macro.
* modules/safe-write (configure.ac): Invoke gl_PREREQ_SAFE_WRITE
instead of gl_SAFE_WRITE.
(Makefile.am): Augment lib_SOURCES.
|
|
3f60f6a8
|
2011-05-24T01:28:26
|
|
safe-read: Move AC_LIBOBJ invocations to module description.
* m4/safe-read.m4 (gl_SAFE_READ): Remove macro.
* modules/safe-read (configure.ac): Invoke gl_PREREQ_SAFE_READ instead
of gl_SAFE_READ.
(Makefile.am): Augment lib_SOURCES.
|
|
ff32b57d
|
2011-05-24T01:26:08
|
|
safe-alloc: Move AC_LIBOBJ invocations to module description.
* m4/safe-alloc.m4 (gl_SAFE_ALLOC): Remove AC_LIBOBJ invocation.
* modules/safe-alloc (Makefile.am): Augment lib_SOURCES.
|
|
356644eb
|
2011-05-24T01:23:28
|
|
crypto/rijndael: Move AC_LIBOBJ invocations to module description.
* m4/rijndael.m4: Remove file.
* modules/crypto/rijndael (Files): Remove it.
(configure.ac): Remove gl_RIJNDAEL call.
(Makefile.am): Augment lib_SOURCES.
|
|
acb9956a
|
2011-05-24T01:14:18
|
|
readtokens: Move AC_LIBOBJ invocations to module description.
* m4/readtokens.m4 (gl_READTOKENS): Remove AC_LIBOBJ invocation.
* modules/readtokens (Makefile.am): Augment lib_SOURCES.
|
|
e93ec645
|
2011-05-24T01:12:53
|
|
read-file: Move AC_LIBOBJ invocations to module description.
* m4/read-file.m4 (gl_FUNC_READ_FILE): Remove macro.
* modules/read-file (configure.ac): Invoke gl_PREREQ_READ_FILE instead
of gl_FUNC_READ_FILE.
(Makefile.am): Augment lib_SOURCES.
|
|
62edd0a2
|
2011-05-24T01:09:10
|
|
quotearg: Move AC_LIBOBJ invocations to module description.
* m4/quotearg.m4 (gl_QUOTEARG): Remove AC_LIBOBJ invocation.
* modules/quotearg (Makefile.am): Augment lib_SOURCES.
|
|
3ece1c0c
|
2011-05-24T01:06:48
|
|
quote: Move AC_LIBOBJ invocations to module description.
* m4/quote.m4 (gl_QUOTE): Remove AC_LIBOBJ invocation.
* modules/quote (Makefile.am): Augment lib_SOURCES.
|
|
53b17af5
|
2011-05-24T01:05:01
|
|
posixver: Move AC_LIBOBJ invocations to module description.
* m4/posixver.m4 (gl_POSIXVER): Remove AC_LIBOBJ invocation.
* modules/posixver (Makefile.am): Augment lib_SOURCES.
|
|
e5c04f12
|
2011-05-24T01:03:35
|
|
posixtm: Move AC_LIBOBJ invocations to module description.
* m4/posixtm.m4 (gl_POSIXTM): Remove AC_LIBOBJ invocation.
* modules/posixtm (Makefile.am): Augment lib_SOURCES.
|
|
389b7c74
|
2011-05-24T01:02:05
|
|
physmem: Move AC_LIBOBJ invocations to module description.
* m4/physmem.m4 (gl_PHYSMEM): Remove AC_LIBOBJ invocation.
* modules/physmem (Makefile.am): Augment lib_SOURCES.
|
|
176cd193
|
2011-05-24T01:00:38
|
|
pagealign_alloc: Move AC_LIBOBJ invocations to module description.
* m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Remove AC_LIBOBJ
invocation.
* modules/pagealign_alloc (Makefile.am): Augment lib_SOURCES.
|
|
59728708
|
2011-05-24T00:58:45
|
|
mpsort: Move AC_LIBOBJ invocations to module description.
* m4/mpsort.m4 (gl_MPSORT): Remove AC_LIBOBJ invocation.
* modules/mpsort (Makefile.am): Augment lib_SOURCES.
|
|
46a0e77e
|
2011-05-24T00:57:31
|
|
modechange: Move AC_LIBOBJ invocations to module description.
* m4/modechange.m4 (gl_MODECHANGE): Remove AC_LIBOBJ invocation.
* modules/modechange (Makefile.am): Augment lib_SOURCES.
|
|
9309a5fb
|
2011-05-24T00:44:17
|
|
mkdir-p: Move AC_LIBOBJ invocations to module description.
* m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Remove AC_LIBOBJ invocations.
* modules/mkdir-p (Makefile.am): Augment lib_SOURCES.
|
|
6c767691
|
2011-05-24T00:42:17
|
|
mkancesdirs: Move AC_LIBOBJ invocations to module description.
* m4/mkancesdirs.m4 (gl_MKANCESDIRS): Remove AC_LIBOBJ invocation.
* modules/mkancesdirs (Makefile.am): Augment lib_SOURCES.
|
|
de12675d
|
2011-05-24T00:40:36
|
|
mgetgroups: Move AC_LIBOBJ invocations to module description.
* m4/mgetgroups.m4 (gl_MGETGROUPS): Remove AC_LIBOBJ invocation.
* modules/mgetgroups (Makefile.am): Augment lib_SOURCES.
|
|
076e1669
|
2011-05-24T00:38:58
|
|
memxor: Move AC_LIBOBJ invocations to module description.
* m4/memxor.m4 (gl_MEMXOR): Remove AC_LIBOBJ invocation.
* modules/memxor (Makefile.am): Augment lib_SOURCES.
|
|
11382197
|
2011-05-24T00:37:26
|
|
memcoll: Move AC_LIBOBJ invocations to module description.
* m4/memcoll.m4 (gl_MEMCOLL): Remove AC_LIBOBJ invocation.
* modules/memcoll (Makefile.am): Augment lib_SOURCES.
|
|
95a7f177
|
2011-05-24T00:35:58
|
|
memcasecmp: Move AC_LIBOBJ invocations to module description.
* m4/memcasecmp.m4 (gl_MEMCASECMP): Remove AC_LIBOBJ invocation.
* modules/memcasecmp (Makefile.am): Augment lib_SOURCES.
|
|
7da4d67b
|
2011-05-24T00:34:00
|
|
crypto/md5: Move AC_LIBOBJ invocations to module description.
* m4/md5.m4 (gl_MD5): Remove AC_LIBOBJ invocation.
* modules/crypto/md5 (Makefile.am): Augment lib_SOURCES.
|
|
b5b37f45
|
2011-05-24T00:32:54
|
|
crypto/md4: Move AC_LIBOBJ invocations to module description.
* m4/md4.m4 (gl_MD4): Remove AC_LIBOBJ invocation.
* modules/crypto/md4 (Makefile.am): Augment lib_SOURCES.
|
|
595a46b5
|
2011-05-24T00:29:57
|
|
crypto/md2: Move AC_LIBOBJ invocations to module description.
* m4/md2.m4: Remove file.
* modules/crypto/md2 (Files): Remove it.
(configure.ac): Remove gl_MD2 call.
(Makefile.am): Augment lib_SOURCES.
|
|
d5e729a9
|
2011-05-24T00:28:08
|
|
long-options: Move AC_LIBOBJ invocations to module description.
* m4/long-options.m4: Remove file.
* modules/long-options (Files): Remove it.
(configure.ac): Remove gl_LONG_OPTIONS call.
(Makefile.am): Augment lib_SOURCES.
|
|
dc3179ba
|
2011-05-24T00:25:59
|
|
i-ring: Move AC_LIBOBJ invocations to module description.
* m4/i-ring.m4 (gl_I_RING): Remove AC_LIBOBJ invocation.
* modules/i-ring (Makefile.am): Augment lib_SOURCES.
|
|
d113b88a
|
2011-05-24T00:10:47
|
|
idcache: Move AC_LIBOBJ invocations to module description.
* m4/idcache.m4 (gl_IDCACHE): Remove AC_LIBOBJ invocation.
* modules/idcache (Makefile.am): Augment lib_SOURCES.
|
|
3094f8f7
|
2011-05-24T00:08:16
|
|
human: Move AC_LIBOBJ invocations to module description.
* m4/human.m4 (gl_HUMAN): Remove AC_LIBOBJ invocation.
* modules/human (Makefile.am): Augment lib_SOURCES.
|
|
76565cde
|
2011-05-24T00:05:51
|
|
crypto/hmac-sha1: Move AC_LIBOBJ invocations to module description.
* m4/hmac-sha1.m4: Remove file.
* modules/crypto/hmac-sha1 (Files): Remove it.
(configure.ac): Remove gl_HMAC_SHA1 call.
(Makefile.am): Augment lib_SOURCES.
|
|
12df879c
|
2011-05-24T00:04:14
|
|
crypto/hmac-md5: Move AC_LIBOBJ invocations to module description.
* m4/hmac-md5.m4: Remove file.
* modules/crypto/hmac-md5 (Files): Remove it.
(configure.ac): Remove gl_HMAC_MD5 call.
(Makefile.am): Augment lib_SOURCES.
|
|
70a6fb3c
|
2011-05-24T00:02:09
|
|
hash: Move AC_LIBOBJ invocations to module description.
* m4/hash.m4: Remove file.
* modules/hash (Files): Remove it.
(configure.ac): Remove gl_HASH call.
(Makefile.am): Augment lib_SOURCES.
|
|
8cc5c7f6
|
2011-05-23T23:52:25
|
|
hard-locale: Move AC_LIBOBJ invocations to module description.
* m4/hard-locale.m4 (gl_HARD_LOCALE): Remove AC_LIBOBJ invocation.
* modules/hard-locale (Makefile.am): Augment lib_SOURCES.
|
|
e9d253aa
|
2011-05-23T23:50:47
|
|
getugroups: Move AC_LIBOBJ invocations to module description.
* m4/getugroups.m4 (gl_GETUGROUPS): Remove AC_LIBOBJ invocation.
* modules/getugroups (Makefile.am): Augment lib_SOURCES.
|
|
cc527454
|
2011-05-23T23:37:39
|
|
gettime: Move AC_LIBOBJ invocations to module description.
* m4/gettime.m4 (gl_GETTIME): Remove AC_LIBOBJ invocation.
* modules/gettime (Makefile.am): Augment lib_SOURCES.
|
|
a1520a75
|
2011-05-23T23:35:39
|
|
getndelim2: Move AC_LIBOBJ invocations to module description.
* m4/getndelim2.m4 (gl_GETNDELIM2): Remove AC_LIBOBJ invocation.
* modules/getndelim2 (Makefile.am): Augment lib_SOURCES.
|
|
23120a4b
|
2011-05-23T23:33:47
|
|
crypto/gc-pbkdf2-sha1: Move AC_LIBOBJ invocations to module description.
* m4/gc-pbkdf2-sha1.m4: Remove file.
* modules/crypto/gc-pbkdf2-sha1 (Files): Remove it.
(configure.ac): Remove gl_GC_PBKDF2_SHA1 call.
(Makefile.am): Augment lib_SOURCES.
|
|
4b40eab9
|
2011-05-23T23:31:06
|
|
fts: Move AC_LIBOBJ invocations to module description.
* m4/fts.m4 (gl_FUNC_FTS_CORE): Move AC_LIBOBJ invocation from here...
* modules/fts (configure.ac): ... to here.
|
|
54ad4216
|
2011-05-23T23:25:41
|
|
file-type: Move AC_LIBOBJ invocations to module description.
* m4/file-type.m4: Remove file.
* modules/file-type (Files): Remove it.
(configure.ac): Remove gl_FILE_TYPE call.
(Makefile.am): Augment lib_SOURCES.
|
|
0d0b3c1e
|
2011-05-23T23:23:49
|
|
filenamecat*: Respect rules for use of AC_LIBOBJ.
* m4/filenamecat.m4 (gl_FILE_NAME_CONCAT, gl_FILE_NAME_CONCAT_LGPL):
Remove AC_LIBOBJ invocation.
* modules/filenamecat (Makefile.am): Augment lib_SOURCES.
* modules/filenamecat-lgpl (Makefile.am): Augment lib_SOURCES.
|
|
8e4f082e
|
2011-05-23T23:19:32
|
|
filemode: Move AC_LIBOBJ invocations to module description.
* m4/filemode.m4 (gl_FILEMODE): Remove AC_LIBOBJ invocation.
* modules/filemode (Makefile.am): Augment lib_SOURCES.
|
|
e2de58e8
|
2011-05-23T23:17:44
|
|
openat-safer: Move AC_LIBOBJ invocations to module description.
* m4/fcntl-safer.m4 (gl_OPENAT_SAFER): Remove AC_LIBOBJ invocation.
* modules/openat-safer (Makefile.am): Augment lib_SOURCES.
|
|
a84d6791
|
2011-05-23T23:16:16
|
|
fcntl-safer: Move AC_LIBOBJ invocations to module description.
* m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove AC_LIBOBJ invocations.
* modules/fcntl-safer (Makefile.am): Augment lib_SOURCES.
|
|
6467c8d8
|
2011-05-23T23:08:08
|
|
exclude: Move AC_LIBOBJ invocations to module description.
* m4/exclude.m4: Remove file.
* modules/exclude (Files): Remove it.
(configure.ac): Remove gl_EXCLUDE call.
(Makefile.am): Augment lib_SOURCES.
|
|
61062b55
|
2011-05-23T23:05:53
|
|
dirname*: Respect rules for use of AC_LIBOBJ.
* m4/dirname.m4 (gl_DIRNAME, gl_DIRNAME_LGPL): Remove AC_LIBOBJ
invocations.
* modules/dirname (Makefile.am): Augment lib_SOURCES.
* modules/dirname-lgpl (Makefile.am): Augment lib_SOURCES.
|
|
51588a3f
|
2011-05-23T23:01:21
|
|
dirent-safer: Move AC_LIBOBJ invocations to module description.
* m4/dirent-safer.m4 (gl_DIRENT_SAFER): Remove AC_LIBOBJ invocation.
* modules/dirent-safer (Makefile.am): Augment lib_SOURCES.
|
|
74a13df4
|
2011-05-23T22:59:12
|
|
crypto/des: Move AC_LIBOBJ invocations to module description.
* m4/des.m4: Remove file.
* modules/crypto/des (Files): Remove it.
(configure.ac): Remove gl_DES call.
(Makefile.am): Augment lib_SOURCES.
|
|
f570e72a
|
2011-05-23T22:57:28
|
|
cycle-check: Move AC_LIBOBJ invocations to module description.
* m4/cycle-check.m4 (gl_CYCLE_CHECK): Remove AC_LIBOBJ invocation.
* modules/cycle-check (Makefile.am): Augment lib_SOURCES.
|
|
24115a13
|
2011-05-23T22:55:29
|
|
c-strtold: Move AC_LIBOBJ invocations to module description.
* m4/c-strtod.m4 (gl_C_STRTOLD): Remove AC_LIBOBJ invocation.
* modules/c-strtold (Makefile.am): Augment lib_SOURCES.
|
|
1a930be3
|
2011-05-23T22:49:28
|
|
close-stream: Move AC_LIBOBJ invocations to module description.
* m4/close-stream.m4 (gl_CLOSE_STREAM): Remove AC_LIBOBJ invocation.
* modules/close-stream (Makefile.am): Augment lib_SOURCES.
|
|
9dc832be
|
2011-05-23T22:54:04
|
|
c-strtod: Move AC_LIBOBJ invocations to module description.
* m4/c-strtod.m4 (gl_C_STRTOD): Remove AC_LIBOBJ invocation.
* modules/c-strtod (Makefile.am): Augment lib_SOURCES.
|
|
66b7c686
|
2011-05-23T22:51:09
|
|
crc: Move AC_LIBOBJ invocations to module description.
* m4/crc.m4: Remove file.
* modules/crc (Files): Remove it.
(configure.ac): Remove gl_CRC call.
(Makefile.am): Augment lib_SOURCES.
|
|
088b3f8d
|
2011-05-23T22:47:18
|
|
closeout: Move AC_LIBOBJ invocations to module description.
* m4/closeout.m4 (gl_CLOSEOUT): Remove AC_LIBOBJ invocation.
* modules/closeout (Makefile.am): Augment lib_SOURCES.
|
|
a292d7f8
|
2011-05-23T22:45:58
|
|
closein: Move AC_LIBOBJ invocations to module description.
* m4/closein.m4 (gl_CLOSEIN): Remove AC_LIBOBJ invocation.
* modules/closein (Makefile.am): Augment lib_SOURCES.
|