Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 21 Mar 2005 22:06:27 +0000 (22:06 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 21 Mar 2005 22:06:27 +0000 (22:06 +0000)
65 files changed:
m4/ChangeLog
m4/acl.m4
m4/backupfile.m4
m4/c-strtod.m4
m4/canon-host.m4
m4/canonicalize.m4
m4/cloexec.m4
m4/closeout.m4
m4/dirfd.m4
m4/dirname.m4
m4/exclude.m4
m4/exitfail.m4
m4/file-type.m4
m4/filemode.m4
m4/fpending.m4
m4/fsusage.m4
m4/getcwd.m4
m4/getdate.m4
m4/getline.m4
m4/getpagesize.m4
m4/getpass.m4
m4/getugroups.m4
m4/group-member.m4
m4/hard-locale.m4
m4/hash.m4
m4/human.m4
m4/idcache.m4
m4/inttostr.m4
m4/long-options.m4
m4/makepath.m4
m4/md5.m4
m4/memcasecmp.m4
m4/memcoll.m4
m4/modechange.m4
m4/mountlist.m4
m4/nanosleep.m4
m4/path-concat.m4
m4/pathmax.m4
m4/physmem.m4
m4/posixtm.m4
m4/posixver.m4
m4/quote.m4
m4/quotearg.m4
m4/readtokens.m4
m4/readutmp.m4
m4/safe-read.m4
m4/safe-write.m4
m4/same.m4
m4/savedir.m4
m4/settime.m4
m4/sha1.m4
m4/sig2str.m4
m4/strdup.m4
m4/strftime.m4
m4/strndup.m4
m4/strverscmp.m4
m4/timespec.m4
m4/unlocked-io.m4
m4/userspec.m4
m4/utimecmp.m4
m4/utimens.m4
m4/xalloc.m4
m4/xnanosleep.m4
m4/xstrtol.m4
m4/yesno.m4

index f35eec5d2df3294f99ad3ad89f45ba60f9c0fa57..c5a6331be46359d1b2b5f599943fc71fdceb60d6 100644 (file)
@@ -1,3 +1,27 @@
+2005-03-21  Jim Meyering  <jim@meyering.net>
+       and  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * acl.m4, backupfile.m4, c-strtod.m4, canon-host.m4, canonicalize.m4,
+       cloexec.m4, closeout.m4, dirfd.m4, dirname.m4, exclude.m4,
+       exitfail.m4, file-type.m4, filemode.m4, fpending.m4, fsusage.m4,
+       getcwd.m4, getdate.m4, getline.m4, getpagesize.m4, getpass.m4,
+       getugroups.m4, group-member.m4, hard-locale.m4, hash.m4, human.m4,
+       idcache.m4, inttostr.m4, long-options.m4, makepath.m4, md5.m4,
+       memcasecmp.m4, memcoll.m4, modechange.m4, mountlist.m4, nanosleep.m4,
+       path-concat.m4, pathmax.m4, physmem.m4, posixtm.m4, posixver.m4,
+       quote.m4, quotearg.m4, readtokens.m4, readutmp.m4, safe-read.m4,
+       safe-write.m4, same.m4, savedir.m4, settime.m4, sha1.m4, sig2str.m4,
+       strdup.m4, strftime.m4, strndup.m4, strverscmp.m4, timespec.m4,
+       unlocked-io.m4, userspec.m4, utimecmp.m4, utimens.m4, xalloc.m4,
+       xnanosleep.m4, xstrtol.m4, yesno.m4:
+       Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
+       for these modules.
+
+2005-03-21  Jim Meyering  <jim@meyering.net>
+
+       * chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
+       * memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
+
 2005-03-16  Bruno Haible  <bruno@clisp.org>
 
        * stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
index 7f6e4e575e752f305a1fa5f475d9d8111d279fd1..b592dd471c3fff2d054019aee462b3113d32c8fd 100644 (file)
--- a/m4/acl.m4
+++ b/m4/acl.m4
@@ -1,6 +1,6 @@
 # acl.m4 - check for access control list (ACL) primitives
 
-# Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -9,6 +9,9 @@
 
 AC_DEFUN([AC_FUNC_ACL],
 [
+  AC_LIBSOURCES([acl.c, acl.h])
+  AC_LIBOBJ([acl])
+
   dnl Prerequisites of lib/acl.c.
   AC_CHECK_HEADERS(sys/acl.h)
   AC_CHECK_FUNCS(acl)
index 528b7a088e312eec0eb7f269d330023c2dc0d40f..2390b5ddf9d3503b982bd1eff55a7308eb2fa407 100644 (file)
@@ -1,11 +1,14 @@
-# backupfile.m4 serial 6
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# backupfile.m4 serial 7
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_BACKUPFILE],
 [
+  AC_LIBSOURCES([backupfile.c, backupfile.h])
+  AC_LIBOBJ([backupfile])
+
   dnl Prerequisites of lib/backupfile.c.
   AC_REQUIRE([AC_HEADER_DIRENT])
   AC_REQUIRE([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO])
index 87ec19159caa1797b8cfe0510753d408f836ae48..ffeb45884168be406ed204d8b1974c9466655700 100644 (file)
@@ -1,6 +1,6 @@
-# c-strtod.m4 serial 5
+# c-strtod.m4 serial 6
 
-# Copyright (C) 2004 Free Software Foundation, Inc.
+# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -35,6 +35,9 @@ AC_DEFUN([gl_C99_STRTOLD],
 
 AC_DEFUN([gl_C_STRTOD],
 [
+  AC_LIBSOURCES([c-strtod.c, c-strtod.h])
+  AC_LIBOBJ([c-strtod])
+
   dnl Prerequisites of lib/c-strtod.c.
   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
   :
@@ -42,6 +45,9 @@ AC_DEFUN([gl_C_STRTOD],
 
 AC_DEFUN([gl_C_STRTOLD],
 [
+  AC_LIBSOURCES([c-strtold.c, c-strtod.h])
+  AC_LIBOBJ([c-strtold])
+
   dnl Prerequisites of lib/c-strtold.c.
   AC_REQUIRE([gl_C_STRTOD])
   AC_REQUIRE([gl_C99_STRTOLD])
index e59f8759bcaacf4425f938588720c867ba362148..1e1275ab3fd25a452f2285512813a9a0ec11273a 100644 (file)
@@ -1,11 +1,14 @@
-# canon-host.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# canon-host.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_CANON_HOST],
 [
+  AC_LIBSOURCES([canon-host.c])
+  AC_LIBOBJ([canon-host])
+
   dnl Prerequisites of lib/canon-host.c.
   AC_CHECK_HEADERS_ONCE(unistd.h)
   AC_CHECK_HEADERS(netdb.h sys/socket.h netinet/in.h arpa/inet.h)
index 182bda71fd8527f6ae619d11cc195f02bab273ca..b593e9b87964ceb69139a5b54480965caf5d0b39 100644 (file)
@@ -1,6 +1,6 @@
-#serial 4
+#serial 6
 
-# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -9,6 +9,9 @@
 
 AC_DEFUN([AC_FUNC_CANONICALIZE_FILE_NAME],
   [
+    AC_LIBSOURCES([canonicalize.c, canonicalize.h, stat-macros.h])
+    AC_LIBOBJ([canonicalize])
+
     AC_REQUIRE([AC_HEADER_STDC])
     AC_CHECK_HEADERS(string.h sys/param.h stddef.h)
     AC_CHECK_FUNCS(resolvepath canonicalize_file_name)
index ca0d6bcc156a3b297d8ac3fe817aeacceb03a02e..f95320cc69bc3c452f8f527adc0ee509e118c62a 100644 (file)
@@ -1,11 +1,14 @@
-# cloexec.m4 serial 2
-dnl Copyright (C) 2004 Free Software Foundation, Inc.
+# cloexec.m4 serial 3
+dnl Copyright (C) 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_CLOEXEC],
 [
+  AC_LIBSOURCES([cloexec.c, cloexec.h])
+  AC_LIBOBJ([cloexec])
+
   dnl Prerequisites of lib/cloexec.c.
   AC_CHECK_HEADERS_ONCE(fcntl.h unistd.h)
 ])
index cb51eb07c045bdffee26ff04b32a5a37e69bdf28..8d3ead35f2c9738807f33de81f71786d99d742e4 100644 (file)
@@ -1,11 +1,14 @@
-# closeout.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# closeout.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_CLOSEOUT],
 [
+  AC_LIBSOURCES([closeout.c, closeout.h])
+  AC_LIBOBJ([closeout])
+
   dnl Prerequisites of lib/closeout.c.
   :
 ])
index 5e51ed2bf75e9701927aa165b96a5c09e549c33e..db2a9a0eda6a7533c91fe6006c071238457a6e0c 100644 (file)
@@ -1,8 +1,8 @@
-#serial 9
+#serial 10
 
 dnl Find out how to get the file descriptor associated with an open DIR*.
 
-# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -11,6 +11,8 @@ dnl From Jim Meyering
 
 AC_DEFUN([gl_FUNC_DIRFD],
 [
+  AC_LIBSOURCES([dirfd.c, dirfd.h])
+
   dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
   AC_REQUIRE([AC_PROG_CPP])
   AC_REQUIRE([AC_PROG_EGREP])
index 8b14184dcaf256a7343a199cd5ed859f63cdb439..e36937d8fc8801e93d6e02f4bf3d7050cf4bf9f2 100644 (file)
@@ -1,11 +1,14 @@
-# dirname.m4 serial 4
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# dirname.m4 serial 5
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_DIRNAME],
 [
+  AC_LIBSOURCES([dirname.c, dirname.h])
+  AC_LIBOBJ([dirname])
+
   dnl Prerequisites of lib/dirname.h.
   AC_REQUIRE([gl_AC_DOS])
 
index 4d6e1b0abc25fa967cc0ad7803cb0aa29b984d52..ecb0f54a67dfb138dfbc7fa085f3ce2cd6508fa6 100644 (file)
@@ -1,11 +1,14 @@
-# exclude.m4 serial 4
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# exclude.m4 serial 5
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_EXCLUDE],
 [
+  AC_LIBSOURCES([exclude.c, exclude.h])
+  AC_LIBOBJ([exclude])
+
   dnl Prerequisites of lib/exclude.c.
   AC_REQUIRE([AC_C_INLINE])
   AC_REQUIRE([AC_HEADER_STDC])
index f25c64df8b946fcd107b396fdebdfc0a4993645f..5523676f1d7c47a98baa0cfebecb8693b9fb18e0 100644 (file)
@@ -1,11 +1,14 @@
-# exitfail.m4 serial 4
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# exitfail.m4 serial 5
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_EXITFAIL],
 [
+  AC_LIBSOURCES([exitfail.c, exitfail.h])
+  AC_LIBOBJ([exitfail])
+
   dnl No prerequisites of lib/exitfail.c.
   :
 ])
index facbb4fd408c7e9bc99bcc0122c8e34db7d42a66..aa456901f97edd9a01215cc669de5a71456c54a5 100644 (file)
@@ -1,11 +1,14 @@
-# file-type.m4 serial 2
-dnl Copyright (C) 2002 Free Software Foundation, Inc.
+# file-type.m4 serial 4
+dnl Copyright (C) 2002, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FILE_TYPE],
 [
+  AC_LIBSOURCES([file-type.c, file-type.h, stat-macros.h])
+  AC_LIBOBJ([file-type])
+
   dnl Prerequisites of lib/file-type.h.
   AC_REQUIRE([AC_HEADER_STAT])
 ])
index 9eee98b7cecffc2c828ad78d3e25628d5ea32f2c..977d4b9ea825c3e735d9136d9d918d07f46d6731 100644 (file)
@@ -1,11 +1,14 @@
-# filemode.m4 serial 2
-dnl Copyright (C) 2002 Free Software Foundation, Inc.
+# filemode.m4 serial 4
+dnl Copyright (C) 2002, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FILEMODE],
 [
+  AC_LIBSOURCES([filemode.c, filemode.h, stat-macros.h])
+  AC_LIBOBJ([filemode])
+
   dnl Prerequisites of lib/filemode.c.
   AC_REQUIRE([AC_HEADER_STAT])
 ])
index 25fc16728e0f0f5770f9f1a1b5bff976b6d2070d..87398b142b4ba5e9ccccfd631ecac62be355c8de 100644 (file)
@@ -1,6 +1,6 @@
-#serial 5
+#serial 6
 
-# Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -15,6 +15,8 @@ dnl we have to grub around in the FILE struct.
 
 AC_DEFUN([gl_FUNC_FPENDING],
 [
+  AC_LIBSOURCES([__fpending.c, __fpending.h])
+
   AC_CHECK_HEADERS(stdio_ext.h)
   AC_REPLACE_FUNCS([__fpending])
   fp_headers='
index 306d0efb39432306b0301fae7f7cb5b721c602d0..2406a146a0dc44ade18e4b565150b6e8189f6bdb 100644 (file)
@@ -1,7 +1,7 @@
-# fsusage.m4 serial 14
+# fsusage.m4 serial 15
 # Obtaining file system usage information.
 
-# Copyright (C) 1997, 1998, 2000, 2001, 2003, 2004 Free Software
+# Copyright (C) 1997, 1998, 2000, 2001, 2003, 2004, 2005 Free Software
 # Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
@@ -12,6 +12,8 @@
 
 AC_DEFUN([gl_FSUSAGE],
 [
+  AC_LIBSOURCES([fsusage.c, fsusage.h])
+
   AC_CHECK_HEADERS_ONCE(sys/param.h)
   AC_CHECK_HEADERS_ONCE(sys/vfs.h sys/fs_types.h)
   AC_CHECK_HEADERS(sys/mount.h, [], [],
index c2524916e349eebec62a3f8ae0e5f65cc7a6e35a..3e7e5dcba9c063f7afd9e6ef8475e00247f0dd0c 100644 (file)
@@ -1,6 +1,6 @@
 # getcwd.m4 - check for working getcwd that is compatible with glibc
 
-# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -9,6 +9,8 @@
 
 AC_DEFUN([gl_FUNC_GETCWD_NULL],
   [
+   AC_LIBSOURCES([getcwd.c, getcwd.h])
+
    AC_CHECK_HEADERS_ONCE(unistd.h)
    AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result],
      [gl_cv_func_getcwd_null],
index 978cf5022a7d9bc461a060848ae3d2021b0ad08c..5b2f77f2394afdfbb501b31a29d7832b031fd538 100644 (file)
@@ -1,11 +1,14 @@
-# getdate.m4 serial 6
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# getdate.m4 serial 7
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_GETDATE],
 [
+  AC_LIBSOURCES([getdate.h, getdate.y])
+  AC_LIBOBJ([getdate])
+
   dnl Prerequisites of lib/getdate.h.
   AC_REQUIRE([AM_STDBOOL_H])
   AC_REQUIRE([gl_TIMESPEC])
index 2b5aaabcd6dc04a7c0671e5ae94cd1018840126b..983f261463a7c97686ec24693f6cef7b5f505d9f 100644 (file)
@@ -1,6 +1,6 @@
-# getline.m4 serial 11
+# getline.m4 serial 12
 
-dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software
+dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005 Free Software
 dnl Foundation, Inc.
 dnl
 dnl This file is free software; the Free Software Foundation
@@ -15,6 +15,8 @@ dnl have a function by that name in -linet that doesn't have anything
 dnl to do with the function we need.
 AC_DEFUN([AM_FUNC_GETLINE],
 [
+  AC_LIBSOURCES([getline.c, getline.h])
+
   dnl Persuade glibc <stdio.h> to declare getline() and getdelim().
   AC_REQUIRE([AC_GNU_SOURCE])
 
index 6076cefe446ce8991e9c6a5ed420c50220c0e72e..12d688905843b4e282960b4a8e58f0a5b87f66d2 100644 (file)
@@ -1,11 +1,13 @@
-# getpagesize.m4 serial 3
-dnl Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+# getpagesize.m4 serial 4
+dnl Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_GETPAGESIZE],
 [
+  AC_LIBSOURCES([getpagesize.h])
+
   dnl Prerequisites of lib/getpagesize.h.
   AC_CHECK_HEADERS_ONCE(sys/param.h unistd.h)
   AC_CHECK_HEADERS(OS.h)
index d48534c573f3454722f70b6711a5fdb9812208cf..29d15e8844f5d689062132cdcbfbb6942a64aa8c 100644 (file)
@@ -1,5 +1,5 @@
-# getpass.m4 serial 5
-dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
+# getpass.m4 serial 6
+dnl Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -18,6 +18,8 @@ AC_DEFUN([gl_FUNC_GETPASS],
 # arbitrary length (not just 8 bytes as on HP-UX).
 AC_DEFUN([gl_FUNC_GETPASS_GNU],
 [
+  AC_LIBSOURCES([getpass.c, getpass.h])
+
   AC_CHECK_DECLS_ONCE(getpass)
   dnl TODO: Detect when GNU getpass() is already found in glibc.
   AC_LIBOBJ(getpass)
index 7d96bb70dafcb503761e8211735fb48e7ad746f1..be865303d462ec591afbd246817edc28b2392740 100644 (file)
@@ -1,11 +1,14 @@
-# getugroups.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# getugroups.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_GETUGROUPS],
 [
+  AC_LIBSOURCES([getugroups.c])
+  AC_LIBOBJ([getugroups])
+
   dnl Prerequisites of lib/getugroups.c.
   AC_CHECK_HEADERS_ONCE(unistd.h)
   AC_TYPE_GETGROUPS
index dca7f9e8069a330bf1f2cd1d4d51bdbc85b033ae..d5e96c8746771f9c79cd6fad72d0fa3712ed4dda 100644 (file)
@@ -1,6 +1,6 @@
-#serial 7
+#serial 8
 
-# Copyright (C) 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -9,6 +9,8 @@ dnl Written by Jim Meyering
 
 AC_DEFUN([gl_FUNC_GROUP_MEMBER],
 [
+  AC_LIBSOURCES([group-member.c, group-member.h])
+
   dnl Persuade glibc <unistd.h> to declare group_member().
   AC_REQUIRE([AC_GNU_SOURCE])
 
index 8c97051f9a2e906660c1be5b2252ab7265f3f240..640a75560a03d8be64694e5b89eb644cdededaf3 100644 (file)
@@ -1,8 +1,12 @@
-# hard-locale.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# hard-locale.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 dnl No prerequisites of lib/hard-locale.c.
-AC_DEFUN([gl_HARD_LOCALE], [:])
+AC_DEFUN([gl_HARD_LOCALE],
+[
+  AC_LIBSOURCES([hard-locale.c, hard-locale.h])
+  AC_LIBOBJ([hard-locale])
+])
index c156ecb31536ebb488d46609fcdc30b770e5067f..948dd97207cdb26aabbd0daf65e022b74eac3f9d 100644 (file)
@@ -1,11 +1,14 @@
-# hash.m4 serial 4
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# hash.m4 serial 5
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_HASH],
 [
+  AC_LIBSOURCES([hash.c, hash.h])
+  AC_LIBOBJ([hash])
+
   dnl Prerequisites of lib/hash.c.
   AC_REQUIRE([AM_STDBOOL_H])
 ])
index a9c194e714117f4f2acfa7b22915cfdee9ae24b4..1787c48f99071e6c91b47e49db35e071b9548533 100644 (file)
@@ -1,11 +1,14 @@
-# human.m4 serial 7
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+#serial 9
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_HUMAN],
 [
+  AC_LIBSOURCES([human.c, human.h, intprops.h])
+  AC_LIBOBJ([human])
+
   dnl Prerequisites of lib/human.h.
   AC_REQUIRE([AM_STDBOOL_H])
   AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])
index 6fab7cffc018072ad294cb1ed8158ebb67ea358a..d0ae832ea8ebbb192759f1f776576475278105b6 100644 (file)
@@ -1,11 +1,14 @@
-# idcache.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# idcache.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_IDCACHE],
 [
+  AC_LIBSOURCES([idcache.c])
+  AC_LIBOBJ([idcache])
+
   dnl Prerequisites of lib/idcache.c.
   AC_CHECK_HEADERS_ONCE(unistd.h)
 ])
index b1aabad4691fccacfa08535cb10f90609e66d96f..600c82ca9dc166f15861793646ba3d545e55c894 100644 (file)
@@ -1,11 +1,22 @@
-# inttostr.m4 serial 3
-dnl Copyright (C) 2004 Free Software Foundation, Inc.
+#serial 5
+dnl Copyright (C) 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_INTTOSTR],
 [
+  AC_LIBSOURCES([inttostr.c, inttostr.h, intprops.h])
+
+  dnl We don't technically need to list the following .c files, since their
+  dnl functions are named in the AC_LIBOBJ calls, but this is an unusual
+  dnl module and it seems a little clearer to do so.
+  AC_LIBSOURCES([imaxtostr.c, offtostr.c, umaxtostr.c])
+
+  AC_LIBOBJ([imaxtostr])
+  AC_LIBOBJ([offtostr])
+  AC_LIBOBJ([umaxtostr])
+
   gl_PREREQ_INTTOSTR
   gl_PREREQ_IMAXTOSTR
   gl_PREREQ_OFFTOSTR
index 58333cf4cc2d2346928e1533bb9f1c1d8f5654ff..f4af901e0df585f5ef3ce9d660443dac9a5a187e 100644 (file)
@@ -1,11 +1,13 @@
-# long-options.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# long-options.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_LONG_OPTIONS],
 [
+  AC_LIBSOURCES([long-options.c, long-options.h])
+  AC_LIBOBJ([long-options])
+
   dnl Prerequisites of lib/long-options.c.
-  :
 ])
index c6df126dfa31192a88cc52e322d07039d8021df9..2efb67cee90757e75b328e19f1ba5bc6039095e7 100644 (file)
@@ -1,11 +1,14 @@
-# makepath.m4 serial 4
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# makepath.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_MAKEPATH],
 [
+  AC_LIBSOURCES([makepath.c, makepath.h, stat-macros.h])
+  AC_LIBOBJ([makepath])
+
   dnl Prerequisites of lib/makepath.c.
   AC_REQUIRE([AC_FUNC_ALLOCA])
   AC_CHECK_HEADERS_ONCE(unistd.h)
index 861e3ff0ead3f789a95b8d290d91de560eaa7b52..729b6563c5fc936ea7bb7a6c725a39b82c7c8b58 100644 (file)
--- a/m4/md5.m4
+++ b/m4/md5.m4
@@ -1,11 +1,14 @@
-# md5.m4 serial 6
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# md5.m4 serial 7
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_MD5],
 [
+  AC_LIBSOURCES([md5.c, md5.h])
+  AC_LIBOBJ([md5])
+
   dnl Prerequisites of lib/md5.h.
   AC_REQUIRE([gl_AC_TYPE_UINT32_T])
 
index 5b862645ff1481cae908f4e26031528b935887b0..9652bbe94346db01a9c1ba1f697c1caded83f8b5 100644 (file)
@@ -1,11 +1,14 @@
-# memcasecmp.m4 serial 2
-dnl Copyright (C) 2002 Free Software Foundation, Inc.
+#serial 3
+dnl Copyright (C) 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_MEMCASECMP],
 [
+  AC_LIBSOURCES([memcasecmp.c, memcasecmp.h])
+  AC_LIBOBJ([memcasecmp])
+
   dnl Prerequisites of lib/memcasecmp.c.
   AC_REQUIRE([AC_HEADER_STDC])
   AC_CHECK_FUNCS_ONCE(isascii)
index 79608eea4a2d3f1bf582f477a7ecf478c2c55117..6f73412878bc70c8a71a2e35299104f35d601196 100644 (file)
@@ -1,11 +1,14 @@
-# memcoll.m4 serial 4
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# memcoll.m4 serial 5
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_MEMCOLL],
 [
+  AC_LIBSOURCES([memcoll.c, memcoll.h])
+  AC_LIBOBJ([memcoll])
+
   dnl Prerequisites of lib/memcoll.c.
   AC_REQUIRE([AC_FUNC_MEMCMP])
   AC_FUNC_STRCOLL
index 44def51e4923db92c82e8363b56a103ddf1cbba4..8ecf4daaf76047c07b810c804ed9c3c1c2af5677 100644 (file)
@@ -1,10 +1,13 @@
-# modechange.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# modechange.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_MODECHANGE],
 [
+  AC_LIBSOURCES([modechange.c, modechange.h])
+  AC_LIBOBJ([modechange])
+
   AC_REQUIRE([AC_HEADER_STAT])
 ])
index d0cee86ffcfa7fee46072b2ba61e1cf94f917bac..d5d62a458e47d30695e1b84211048344dba791b3 100644 (file)
@@ -1,11 +1,13 @@
-# mountlist.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# mountlist.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_MOUNTLIST],
 [
+  AC_LIBSOURCES([mountlist.c, mountlist.h])
+
   gl_LIST_MOUNTED_FILE_SYSTEMS([gl_cv_list_mounted_fs=yes],
                               [gl_cv_list_mounted_fs=no])
   if test $gl_cv_list_mounted_fs = yes; then
index d3c466d4da6986b7ec85a1a7bbc12a19fb3a834b..5590b9be61c5a86b24d3414b2335d1de2c0efc69 100644 (file)
@@ -1,17 +1,19 @@
-#serial 11
+#serial 12
 
 dnl From Jim Meyering.
 dnl Check for the nanosleep function.
 dnl If not found, use the supplied replacement.
 dnl
 
-# Copyright (C) 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_NANOSLEEP],
 [
+ AC_LIBSOURCES([nanosleep.c])
+
  nanosleep_save_libs=$LIBS
 
  # Solaris 2.5.1 needs -lposix4 to get the nanosleep function.
index cef4266eda45f00b0fdd33946db7e677d6197b04..48a8db3a8e01c6acd662e90da79a8b08ecfe8237 100644 (file)
@@ -1,11 +1,14 @@
-# path-concat.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# path-concat.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_PATH_CONCAT],
 [
+  AC_LIBSOURCES([path-concat.c, path-concat.h])
+  AC_LIBOBJ([path-concat])
+
   dnl Prerequisites of lib/path-concat.c.
   AC_CHECK_FUNCS_ONCE(mempcpy)
 ])
index 9790e134fb4278fb147f5081204391765f9fa433..ccf4a77c2e0a756cdb85b5c60221cfeb5effeb36 100644 (file)
@@ -1,11 +1,13 @@
-# pathmax.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# pathmax.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_PATHMAX],
 [
+  AC_LIBSOURCES([pathmax.h])
+
   dnl Prerequisites of lib/pathmax.h.
   AC_CHECK_HEADERS_ONCE(sys/param.h unistd.h)
 ])
index abda0558a2d1174b8798f4a4d5ba14f0d011ae9c..900b29b2be3b590aba3073dea1243decdf42baa7 100644 (file)
@@ -1,5 +1,5 @@
-# physmem.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# physmem.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -26,6 +26,9 @@ AC_DEFUN([gl_SYS__SYSTEM_CONFIGURATION],
 
 AC_DEFUN([gl_PHYSMEM],
 [
+  AC_LIBSOURCES([physmem.c, physmem.h])
+  AC_LIBOBJ([physmem])
+
   # Prerequisites of lib/physmem.c.
   AC_CHECK_HEADERS_ONCE(unistd.h)
   AC_CHECK_HEADERS([sys/pstat.h sys/sysmp.h sys/sysinfo.h \
index 625ea9b2bbe1ddce6d94dc2c2588ac49c620b242..9acf84a121393b2d79eb102efc05529962a33e44 100644 (file)
@@ -1,11 +1,14 @@
-# posixtm.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# posixtm.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_POSIXTM],
 [
+  AC_LIBSOURCES([posixtm.c, posixtm.h])
+  AC_LIBOBJ(posixtm)
+
   dnl Prerequisites of lib/posixtm.c.
   AC_STRUCT_TM
 ])
index 3e0bc04def3b8bc650365a38c98e84decc2eb2ad..369ba3fd67b8cfc5bc9a542b029bff38211d0ec5 100644 (file)
@@ -1,11 +1,14 @@
-# posixver.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# posixver.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_POSIXVER],
 [
+  AC_LIBSOURCES([posixver.c, posixver.h])
+  AC_LIBOBJ([posixver])
+
   AC_CHECK_HEADERS_ONCE(unistd.h)
   AC_REQUIRE([gl_DEFAULT_POSIX2_VERSION])
 ])
index 18beaff9241254415aaa2e6eab211850f1d4019b..ca66b53aafd1dfe7d710a85c1c57abcedf8315a2 100644 (file)
@@ -1,11 +1,14 @@
-# quote.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# quote.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_QUOTE],
 [
+  AC_LIBSOURCES([quote.c, quote.h])
+  AC_LIBOBJ([quote])
+
   dnl Prerequisites of lib/quote.c.
   dnl (none)
 ])
index 6b8b031a8df3ce7923b677015bf4d2b0e65916da..98ae13316f4d2d6827798ada70c97f61059ad211 100644 (file)
@@ -1,11 +1,14 @@
-# quotearg.m4 serial 3
-dnl Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+# quotearg.m4 serial 4
+dnl Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_QUOTEARG],
 [
+  AC_LIBSOURCES([quotearg.c, quotearg.h])
+  AC_LIBOBJ([quotearg])
+
   dnl Prerequisites of lib/quotearg.c.
   AC_CHECK_HEADERS_ONCE(wchar.h wctype.h)
   AC_CHECK_FUNCS_ONCE(iswprint mbsinit)
index 7cacb475355322b937b96295a16bbfd14be5c468..94561ebb3abb43e643b9ccff4e675cd33130d6e3 100644 (file)
@@ -1,11 +1,14 @@
-# readtokens.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# readtokens.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_READTOKENS],
 [
+  AC_LIBSOURCES([readtokens.c, readtokens.h])
+  AC_LIBOBJ([readtokens])
+
   dnl Prerequisites of lib/readtokens.c.
   :
 ])
index dd9ae9e600f8c20bb541a6c16f77a45ea31d8496..81d7642e0bd02deaaf07d5cbc9ff578764067210 100644 (file)
@@ -1,11 +1,14 @@
-# readutmp.m4 serial 6
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# readutmp.m4 serial 7
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_READUTMP],
 [
+  AC_LIBSOURCES([readutmp.c, readutmp.h])
+  AC_LIBOBJ([readutmp])
+
   dnl Prerequisites of lib/readutmp.h.
   AC_CHECK_HEADERS(utmp.h utmpx.h)
   AC_CHECK_FUNCS(utmpname utmpxname)
index b096e7f7fbcd6bd89390b34563feda305fc6ee2d..ac8ecafac4945fac0de723f69eb4c179a7182181 100644 (file)
@@ -1,11 +1,14 @@
-# safe-read.m4 serial 2
-dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
+# safe-read.m4 serial 3
+dnl Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_SAFE_READ],
 [
+  AC_LIBSOURCES([safe-read.c, safe-read.h])
+  AC_LIBOBJ([safe-read])
+
   gl_PREREQ_SAFE_READ
 ])
 
index 775561ddd884db96253123d27cabc43a1e715ff9..197adeba21f27ac0ea8478fbc9d6d563191be752 100644 (file)
@@ -1,11 +1,14 @@
-# safe-write.m4 serial 1
-dnl Copyright (C) 2002 Free Software Foundation, Inc.
+# safe-write.m4 serial 2
+dnl Copyright (C) 2002, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_SAFE_WRITE],
 [
+  AC_LIBSOURCES([safe-write.c, safe-write.h])
+  AC_LIBOBJ([safe-write])
+
   gl_PREREQ_SAFE_WRITE
 ])
 
index 8a0870a3904860a45d290c56369ebf7f33aed844..1957e0fe96a798651989fa5edefdcd135f96f839 100644 (file)
@@ -1,11 +1,14 @@
-# same.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# same.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_SAME],
 [
+  AC_LIBSOURCES([same.c, same.h])
+  AC_LIBOBJ([same])
+
   dnl Prerequisites of lib/same.c.
   AC_CHECK_HEADERS_ONCE(unistd.h)
   AC_CHECK_FUNCS(pathconf)
index f9cfdcb513bdbba82f1bcb33e85b6332767fec94..8305816aca07f65a538706cac860721474299d63 100644 (file)
@@ -1,11 +1,14 @@
-# savedir.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# savedir.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_SAVEDIR],
 [
+  AC_LIBSOURCES([savedir.c, savedir.h])
+  AC_LIBOBJ([savedir])
+
   dnl Prerequisites of lib/savedir.c.
   AC_REQUIRE([AC_HEADER_DIRENT])
   AC_REQUIRE([AC_FUNC_CLOSEDIR_VOID])
index 208b9d09b4e78b82c09856793ba0c17b4661f413..20bb360d8cd35b9623d723db2fa42b26a30264e3 100644 (file)
@@ -1,11 +1,14 @@
-# settime.m4 serial 3
-dnl Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+# settime.m4 serial 4
+dnl Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_SETTIME],
 [
+  AC_LIBSOURCES([settime.c])
+  AC_LIBOBJ([settime])
+
   dnl Prerequisites of lib/settime.c.
   AC_REQUIRE([gl_CLOCK_TIME])
   AC_REQUIRE([gl_TIMESPEC])
index 26306ff6c0c6429ece5f01bf8549314a341e6a70..7b6c21cb83cbe8ed7c0b72adfd2a97fac433c7ae 100644 (file)
@@ -1,11 +1,14 @@
-# sha1.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# sha1.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_SHA1],
 [
+  AC_LIBSOURCES([sha1.c, sha1.h])
+  AC_LIBOBJ([sha1])
+
   dnl Prerequisites of lib/sha1.c.
   AC_REQUIRE([AC_C_BIGENDIAN])
   :
index 73d89c8f248d6f62b59a202f39d9821d92352961..92c80630c32b528b5bbb9c02eeba47fd6973b216 100644 (file)
@@ -1,11 +1,13 @@
-# sig2str.m4 serial 2
-dnl Copyright (C) 2002 Free Software Foundation, Inc.
+#serial 4
+dnl Copyright (C) 2002, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_SIG2STR],
 [
+  AC_LIBSOURCES([sig2str.c, sig2str.h, intprops.h])
+
   AC_REPLACE_FUNCS(sig2str)
   if test $ac_cv_func_sig2str = no; then
     gl_PREREQ_SIG2STR
index 76e621ba78dc5963e76ede80b1baa1be8fb57ba2..42325ab9ee7d119b10715c22de5d04272ea27971 100644 (file)
@@ -1,11 +1,13 @@
-# strdup.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# strdup.m4 serial 6
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_STRDUP],
 [
+  AC_LIBSOURCES([strdup.c, strdup.h])
+
   AC_REPLACE_FUNCS(strdup)
   AC_CHECK_DECLS_ONCE(strdup)
   gl_PREREQ_STRDUP
index 36f20a3426ea6ea9035529cce1d5a9107a5d36c9..b47ea8ccc355e7a59848d5cdaae312bcebec0e43 100644 (file)
@@ -1,6 +1,6 @@
 #serial 24
 
-# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004
+# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 # Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
@@ -17,6 +17,9 @@ AC_DEFUN([gl_FUNC_GNU_STRFTIME],
 # These are the prerequisite macros for GNU's strftime.c replacement.
 AC_DEFUN([gl_FUNC_STRFTIME],
 [
+ AC_LIBSOURCES([strftime.c, strftime.h])
+ AC_LIBOBJ([strftime])
+
  # strftime.c uses the underyling system strftime if it exists.
  AC_REQUIRE([AC_FUNC_STRFTIME])
 
index 05204aad8f7ec95df209e6282a9bc62567753091..57945045686e90f034e82aee316a218209c41aeb 100644 (file)
@@ -1,11 +1,13 @@
-# strndup.m4 serial 3
-dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# strndup.m4 serial 4
+dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_STRNDUP],
 [
+  AC_LIBSOURCES([strndup.c, strndup.h])
+
   dnl Persuade glibc <string.h> to declare strndup().
   AC_REQUIRE([AC_GNU_SOURCE])
 
index 9f36c6e24d770b485282da65c8e87aa13bf4ce60..46e178beb69b7a98b2694e4534731f181c738986 100644 (file)
@@ -1,11 +1,13 @@
-# strverscmp.m4 serial 2
-dnl Copyright (C) 2002 Free Software Foundation, Inc.
+# strverscmp.m4 serial 3
+dnl Copyright (C) 2002, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_STRVERSCMP],
 [
+  AC_LIBSOURCES([strverscmp.c, strverscmp.h])
+
   dnl Persuade glibc <string.h> to declare strverscmp().
   AC_REQUIRE([AC_GNU_SOURCE])
 
index 81776e2e3146a29dde8a03f80acf5e1e84c9134a..e0fc3574b806ed85d4919d258ada8fe4e8a95874 100644 (file)
@@ -1,6 +1,6 @@
-#serial 9
+#serial 10
 
-# Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -9,6 +9,8 @@ dnl From Jim Meyering
 
 AC_DEFUN([gl_TIMESPEC],
 [
+  AC_LIBSOURCES([timespec.h])
+
   dnl Prerequisites of lib/timespec.h.
   AC_REQUIRE([AC_HEADER_TIME])
   AC_CHECK_HEADERS_ONCE(sys/time.h)
index c536d2dd9377ea87f529e2ca30a6e9f1e64fe68f..6cbacb003977f4b9139133df73c4417c2093bbe7 100644 (file)
@@ -1,6 +1,6 @@
-# unlocked-io.m4 serial 11
+# unlocked-io.m4 serial 12
 
-# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
+# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
 # Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
@@ -17,6 +17,8 @@ dnl on Solaris 2.6).
 
 AC_DEFUN([gl_FUNC_GLIBC_UNLOCKED_IO],
 [
+  AC_LIBSOURCES([unlocked-io.h])
+
   AC_DEFINE([USE_UNLOCKED_IO], 1,
     [Define to 1 if you want getc etc. to use unlocked I/O if available.
      Unlocked I/O can improve performance in unithreaded apps,
index 0dd254c7d1b5e82568ceae54e1b9eb40a7f10a37..00ec209f52e3dd439afeb2fcd67a8714990fad3d 100644 (file)
@@ -1,11 +1,14 @@
-# userspec.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+#serial 7
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_USERSPEC],
 [
+  AC_LIBSOURCES([userspec.c, userspec.h, intprops.h])
+  AC_LIBOBJ([userspec])
+
   dnl Prerequisites of lib/userspec.c.
   AC_CHECK_HEADERS_ONCE(sys/param.h unistd.h)
 ])
index 30f9343aef12de008643ad1c088d1293bf0ab5c4..ba02d53a6407968a514ad847ac0c86eb224aacc2 100644 (file)
@@ -1,10 +1,14 @@
-dnl Copyright (C) 2004 Free Software Foundation, Inc.
+#serial 1
+dnl Copyright (C) 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_UTIMECMP],
 [
+  AC_LIBSOURCES([utimecmp.c, utimecmp.h, intprops.h])
+  AC_LIBOBJ([utimecmp])
+
   dnl Prerequisites of lib/utimecmp.c.
   AC_REQUIRE([gl_TIMESPEC])
   AC_REQUIRE([gl_FUNC_UTIMES])
index 25ff2dcb74909f0375c0435bf6f8c913b3bda65f..bb446c820947bd8af4606d3bf5e4e2652523eec4 100644 (file)
@@ -1,10 +1,13 @@
-dnl Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+dnl Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_UTIMENS],
 [
+  AC_LIBSOURCES([utimens.c, utimens.h])
+  AC_LIBOBJ([utimens])
+
   dnl Prerequisites of lib/utimens.c.
   AC_REQUIRE([gl_TIMESPEC])
   AC_REQUIRE([gl_FUNC_UTIMES])
index 0e711f6416c0910ee4e73d29e544ed0881244499..c0847dd37e1d58922ac1451f3cf04195c6210b7f 100644 (file)
@@ -1,11 +1,14 @@
-# xalloc.m4 serial 11
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+# xalloc.m4 serial 12
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_XALLOC],
 [
+  AC_LIBSOURCES([xmalloc.c, xalloc.h])
+  AC_LIBOBJ([xmalloc])
+
   gl_PREREQ_XALLOC
   gl_PREREQ_XMALLOC
 ])
index f030bc1bba78e0b7a55dae2ac02c8d7b570dadc9..360a4f5cbe67e35d7ce283b0a782ed2e7d60b4b6 100644 (file)
@@ -1,4 +1,4 @@
-# xnanosleep.m4 serial 2
+#serial 3
 dnl Copyright (C) 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -8,6 +8,6 @@ dnl Written by Paul Eggert.
 
 AC_DEFUN([gl_XNANOSLEEP],
 [
-  AC_LIBSOURCES([xnanosleep.c, xnanosleep.h])
+  AC_LIBSOURCES([xnanosleep.c, xnanosleep.h, intprops.h])
   AC_LIBOBJ([xnanosleep])
 ])
index 2d76d2ff9a305d3a1e294dac9f61bf220d0b92e1..95bd9a66446a23831bf58f7a88e042fcd281949f 100644 (file)
@@ -1,11 +1,15 @@
-# xstrtol.m4 serial 5
-dnl Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+#serial 7
+dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_XSTRTOL],
 [
+  AC_LIBSOURCES([xstrtol.c, xstrtol.h, xstrtoul.c, intprops.h])
+  AC_LIBOBJ([xstrtol])
+  AC_LIBOBJ([xstrtoul])
+
   AC_REQUIRE([gl_PREREQ_XSTRTOL])
   AC_REQUIRE([gl_PREREQ_XSTRTOUL])
 ])
index ae20a19c2ffae38137461b3a7ecf0d35a6cda79d..6e8078df475273162e4361f8cca8643aabf63b26 100644 (file)
@@ -1,11 +1,14 @@
-# yesno.m4 serial 3
-dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
+# yesno.m4 serial 4
+dnl Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_YESNO],
 [
+  AC_LIBSOURCES([yesno.c, yesno.h])
+  AC_LIBOBJ([yesno])
+
   dnl No prerequisites of lib/yesno.c.
   :
 ])