[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnulib changes to make it easier for coreutils to use gnulib-tool
From: |
Paul Eggert |
Subject: |
Re: gnulib changes to make it easier for coreutils to use gnulib-tool |
Date: |
Tue, 22 Aug 2006 10:17:03 -0700 |
User-agent: |
Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux) |
Simon Josefsson <address@hidden> writes:
> No, please go ahead.
OK, thanks, I installed this.
2006-08-22 Paul Eggert <address@hidden>
Avoid the need for AC_LIBSOURCES in m4 macros.
* modules/arcfour (EXTRA_DIST): Add arcfour.h.
* modules/arctwo (EXTRA_DIST): Add arctwo.h.
* modules/check-version (EXTRA_DIST): Add check-version.h.
* modules/crc (EXTRA_DIST): Add crc.h.
* modules/des (EXTRA_DIST): Add des.h.
* modules/gc (EXTRA_DIST): Add gc.h.
* modules/getdelim (EXTRA_DIST): Add getdelim.h.
* modules/getline (EXTRA_DIST): Add getline.h.
* modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
* modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
* modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
* modules/md2 (EXTRA_DIST): Add md2.h.
* modules/md4 (EXTRA_DIST): Add md4.h.
* modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
* modules/read-file (EXTRA_DIST): Add read-file.h.
* modules/readline (EXTRA_DIST): Add readline.h.
* modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
rijndael-api-fst.h.
* m4/rijndael.m4 (gl_ARCFOUR):
* m4/arctwo.m4 (gl_ARCTWO):
* m4/check-version.m4 (gl_CHECK_VERSION):
* m4/crc.m4 (gl_CRC):
* m4/des.m4 (gl_DES):
* m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
* m4/gc.m4 (gl_GC):
* m4/getdelim.m4 (gl_FUNC_GETDELIM):
* m4/getline.m4 (gl_FUNC_GETLINE):
* m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
* m4/hmac-md5.m4 (gl_HMAC_MD5):
* m4/hmac-sha1.m4 (gl_HMAC_SHA1):
* m4/md2.m4 (gl_MD2):
* m4/md4.m4 (gl_MD4):
* m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
* m4/read-file.m4 (gl_FUNC_READ_FILE):
* m4/readline.m4 (gl_FUNC_READLINE):
* m4/rijndael.m4 (gl_RIJNDAEL):
Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
to get the necessary .h files and whatnot.
Index: m4/arcfour.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/arcfour.m4,v
retrieving revision 1.1
diff -p -u -r1.1 arcfour.m4
--- m4/arcfour.m4 15 Oct 2005 18:19:45 -0000 1.1
+++ m4/arcfour.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# arcfour.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# arcfour.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_ARCFOUR],
[
- AC_LIBSOURCES([arcfour.c, arcfour.h])
AC_LIBOBJ([arcfour])
])
Index: m4/arctwo.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/arctwo.m4,v
retrieving revision 1.1
diff -p -u -r1.1 arctwo.m4
--- m4/arctwo.m4 21 Oct 2005 12:03:18 -0000 1.1
+++ m4/arctwo.m4 22 Aug 2006 17:09:43 -0000
@@ -1,12 +1,11 @@
-# arctwo.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# arctwo.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_ARCTWO],
[
- AC_LIBSOURCES([arctwo.c, arctwo.h])
AC_LIBOBJ([arctwo])
# Prerequisites of lib/arctwo.c.
AC_REQUIRE([AC_C_INLINE])
Index: m4/check-version.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/check-version.m4,v
retrieving revision 1.1
diff -p -u -r1.1 check-version.m4
--- m4/check-version.m4 28 Jun 2005 08:17:31 -0000 1.1
+++ m4/check-version.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-#serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+#serial 2
+dnl Copyright (C) 2005, 2006 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_CHECK_VERSION],
[
- AC_LIBSOURCES([check-version.c, check-version.h])
AC_LIBOBJ([check-version])
])
Index: m4/crc.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/crc.m4,v
retrieving revision 1.1
diff -p -u -r1.1 crc.m4
--- m4/crc.m4 11 Oct 2005 18:25:51 -0000 1.1
+++ m4/crc.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# crc.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# crc.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_CRC],
[
- AC_LIBSOURCES([crc.h, crc.c])
AC_LIBOBJ([crc])
])
Index: m4/des.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/des.m4,v
retrieving revision 1.1
diff -p -u -r1.1 des.m4
--- m4/des.m4 21 Oct 2005 12:28:18 -0000 1.1
+++ m4/des.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# des.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# des.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_DES],
[
- AC_LIBSOURCES([des.c, des.h])
AC_LIBOBJ([des])
])
Index: m4/gc-pbkdf2-sha1.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/gc-pbkdf2-sha1.m4,v
retrieving revision 1.1
diff -p -u -r1.1 gc-pbkdf2-sha1.m4
--- m4/gc-pbkdf2-sha1.m4 12 Oct 2005 13:13:29 -0000 1.1
+++ m4/gc-pbkdf2-sha1.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# gc-pbkdf2-sha1.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# gc-pbkdf2-sha1.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_GC_PBKDF2_SHA1],
[
- AC_LIBSOURCES([gc-pbkdf2-sha1.c])
AC_LIBOBJ([gc-pbkdf2-sha1])
])
Index: m4/gc.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/gc.m4,v
retrieving revision 1.6
diff -p -u -r1.6 gc.m4
--- m4/gc.m4 9 Aug 2006 22:52:40 -0000 1.6
+++ m4/gc.m4 22 Aug 2006 17:09:43 -0000
@@ -1,4 +1,4 @@
-# gc.m4 serial 3
+# gc.m4 serial 4
dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -6,7 +6,6 @@ dnl with or without modifications, as lo
AC_DEFUN([gl_GC],
[
- AC_LIBSOURCES([gc.h, gc-gnulib.c, gc-libgcrypt.c])
AC_ARG_WITH(libgcrypt,
AS_HELP_STRING([--with-libgcrypt], [use libgcrypt for low-level crypto]),
libgcrypt=$withval, libgcrypt=no)
Index: m4/getdelim.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/getdelim.m4,v
retrieving revision 1.1
diff -p -u -r1.1 getdelim.m4
--- m4/getdelim.m4 2 Aug 2005 09:33:30 -0000 1.1
+++ m4/getdelim.m4 22 Aug 2006 17:09:43 -0000
@@ -1,6 +1,6 @@
-# getdelim.m4 serial 1
+# getdelim.m4 serial 2
-dnl Copyright (C) 2005 Free Software dnl Foundation, Inc.
+dnl Copyright (C) 2005, 2006 Free Software dnl Foundation, Inc.
dnl
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -10,7 +10,6 @@ AC_PREREQ(2.52)
AC_DEFUN([gl_FUNC_GETDELIM],
[
- AC_LIBSOURCES([getdelim.c, getdelim.h])
dnl Persuade glibc <stdio.h> to declare getdelim().
AC_REQUIRE([AC_GNU_SOURCE])
Index: m4/getline.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/getline.m4,v
retrieving revision 1.17
diff -p -u -r1.17 getline.m4
--- m4/getline.m4 22 Jul 2006 15:08:58 -0000 1.17
+++ m4/getline.m4 22 Aug 2006 17:09:43 -0000
@@ -1,4 +1,4 @@
-# getline.m4 serial 14
+# getline.m4 serial 15
dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006 Free Software
dnl Foundation, Inc.
@@ -15,8 +15,6 @@ dnl have a function by that name in -lin
dnl to do with the function we need.
AC_DEFUN([gl_FUNC_GETLINE],
[
- AC_LIBSOURCES([getline.c, getline.h])
-
dnl Persuade glibc <stdio.h> to declare getline().
AC_REQUIRE([AC_GNU_SOURCE])
Index: m4/getlogin_r.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/getlogin_r.m4,v
retrieving revision 1.3
diff -p -u -r1.3 getlogin_r.m4
--- m4/getlogin_r.m4 20 Apr 2006 22:28:34 -0000 1.3
+++ m4/getlogin_r.m4 22 Aug 2006 17:09:43 -0000
@@ -1,4 +1,4 @@
-#serial 2
+#serial 3
# Copyright (C) 2005, 2006 Free Software Foundation, Inc.
#
@@ -14,7 +14,6 @@ dnl
AC_DEFUN([gl_GETLOGIN_R_SUBSTITUTE],
[
gl_PREREQ_GETLOGIN_R
- AC_LIBSOURCE([getlogin_r.h])
AC_LIBOBJ([getlogin_r])
])
Index: m4/hmac-md5.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/hmac-md5.m4,v
retrieving revision 1.1
diff -p -u -r1.1 hmac-md5.m4
--- m4/hmac-md5.m4 6 Oct 2005 15:58:27 -0000 1.1
+++ m4/hmac-md5.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# hmac-md5.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# hmac-md5.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_HMAC_MD5],
[
- AC_LIBSOURCES([hmac.h, hmac-md5.c])
AC_LIBOBJ([hmac-md5])
])
Index: m4/hmac-sha1.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/hmac-sha1.m4,v
retrieving revision 1.1
diff -p -u -r1.1 hmac-sha1.m4
--- m4/hmac-sha1.m4 12 Oct 2005 01:33:44 -0000 1.1
+++ m4/hmac-sha1.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# hmac-sha1.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# hmac-sha1.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_HMAC_SHA1],
[
- AC_LIBSOURCES([hmac.h, hmac-sha1.c])
AC_LIBOBJ([hmac-sha1])
])
Index: m4/md2.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/md2.m4,v
retrieving revision 1.1
diff -p -u -r1.1 md2.m4
--- m4/md2.m4 28 Oct 2005 12:09:33 -0000 1.1
+++ m4/md2.m4 22 Aug 2006 17:09:43 -0000
@@ -1,11 +1,10 @@
-# md2.m4 serial 1
-dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+# md2.m4 serial 2
+dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_MD2],
[
- AC_LIBSOURCES([md2.c, md2.h])
AC_LIBOBJ([md2])
])
Index: m4/md4.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/md4.m4,v
retrieving revision 1.1
diff -p -u -r1.1 md4.m4
--- m4/md4.m4 18 Oct 2005 22:59:17 -0000 1.1
+++ m4/md4.m4 22 Aug 2006 17:09:43 -0000
@@ -1,12 +1,11 @@
-# md4.m4 serial 1
-dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+# md4.m4 serial 2
+dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 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_MD4],
[
- AC_LIBSOURCES([md4.c, md4.h])
AC_LIBOBJ([md4])
dnl Prerequisites of lib/md4.c.
Index: m4/pagealign_alloc.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/pagealign_alloc.m4,v
retrieving revision 1.3
diff -p -u -r1.3 pagealign_alloc.m4
--- m4/pagealign_alloc.m4 2 Jul 2005 09:58:35 -0000 1.3
+++ m4/pagealign_alloc.m4 22 Aug 2006 17:09:43 -0000
@@ -1,5 +1,5 @@
-#serial 2
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+#serial 3
+dnl Copyright (C) 2005, 2006 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.
@@ -9,7 +9,6 @@ AC_DEFUN([gl_PAGEALIGN_ALLOC],
dnl Persuade glibc <sys/mman.h> to define MAP_ANONYMOUS.
AC_REQUIRE([AC_GNU_SOURCE])
- AC_LIBSOURCE([pagealign_alloc.h])
AC_LIBOBJ([pagealign_alloc])
gl_PREREQ_PAGEALIGN_ALLOC
])
Index: m4/read-file.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/read-file.m4,v
retrieving revision 1.1
diff -p -u -r1.1 read-file.m4
--- m4/read-file.m4 16 Jun 2006 19:40:12 -0000 1.1
+++ m4/read-file.m4 22 Aug 2006 17:09:43 -0000
@@ -1,4 +1,4 @@
-# read-file.m4 serial 1
+# read-file.m4 serial 2
dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -6,7 +6,6 @@ dnl with or without modifications, as lo
AC_DEFUN([gl_FUNC_READ_FILE],
[
- AC_LIBSOURCES([read-file.c, read-file.h])
AC_LIBOBJ([read-file])
gl_PREREQ_READ_FILE
])
Index: m4/readline.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/readline.m4,v
retrieving revision 1.5
diff -p -u -r1.5 readline.m4
--- m4/readline.m4 7 Mar 2006 13:20:11 -0000 1.5
+++ m4/readline.m4 22 Aug 2006 17:09:43 -0000
@@ -1,4 +1,4 @@
-# readline.m4 serial 4
+# readline.m4 serial 5
dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -9,8 +9,6 @@ dnl Liljeblad.
AC_DEFUN([gl_FUNC_READLINE],
[
- AC_LIBSOURCES([readline.c, readline.h])
-
dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
AC_REQUIRE([AC_LIB_RPATH])
Index: m4/rijndael.m4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/m4/rijndael.m4,v
retrieving revision 1.1
diff -p -u -r1.1 rijndael.m4
--- m4/rijndael.m4 15 Oct 2005 18:21:58 -0000 1.1
+++ m4/rijndael.m4 22 Aug 2006 17:09:43 -0000
@@ -1,13 +1,11 @@
-# rijndael.m4 serial 1
-dnl Copyright (C) 2005 Free Software Foundation, Inc.
+# rijndael.m4 serial 2
+dnl Copyright (C) 2005, 2006 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_RIJNDAEL],
[
- AC_LIBSOURCES([rijndael-alg-fst.c, rijndael-alg-fst.h])
AC_LIBOBJ([rijndael-alg-fst])
- AC_LIBSOURCES([rijndael-api-fst.c, rijndael-api-fst.h])
AC_LIBOBJ([rijndael-api-fst])
])
Index: modules/arcfour
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/arcfour,v
retrieving revision 1.2
diff -p -u -r1.2 arcfour
--- modules/arcfour 22 Oct 2005 16:45:57 -0000 1.2
+++ modules/arcfour 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_ARCFOUR
Makefile.am:
+EXTRA_DIST += arcfour.h
Include:
"arcfour.h"
Index: modules/arctwo
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/arctwo,v
retrieving revision 1.1
diff -p -u -r1.1 arctwo
--- modules/arctwo 21 Oct 2005 12:03:17 -0000 1.1
+++ modules/arctwo 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_ARCTWO
Makefile.am:
+EXTRA_DIST += arctwo.h
Include:
"arctwo.h"
Index: modules/check-version
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/check-version,v
retrieving revision 1.2
diff -p -u -r1.2 check-version
--- modules/check-version 28 Jun 2005 10:02:08 -0000 1.2
+++ modules/check-version 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_CHECK_VERSION
Makefile.am:
+EXTRA_DIST += check-version.h
Include:
"check-version.h"
Index: modules/crc
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/crc,v
retrieving revision 1.1
diff -p -u -r1.1 crc
--- modules/crc 11 Oct 2005 18:25:51 -0000 1.1
+++ modules/crc 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_CRC
Makefile.am:
+EXTRA_DIST += crc.h
Include:
"crc.h"
Index: modules/des
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/des,v
retrieving revision 1.1
diff -p -u -r1.1 des
--- modules/des 21 Oct 2005 12:28:18 -0000 1.1
+++ modules/des 22 Aug 2006 17:09:43 -0000
@@ -14,6 +14,7 @@ configure.ac:
gl_DES
Makefile.am:
+EXTRA_DIST += des.h
Include:
"des.h"
Index: modules/gc
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/gc,v
retrieving revision 1.4
diff -p -u -r1.4 gc
--- modules/gc 9 Aug 2006 22:52:40 -0000 1.4
+++ modules/gc 22 Aug 2006 17:09:43 -0000
@@ -14,6 +14,7 @@ configure.ac:
gl_GC
Makefile.am:
+EXTRA_DIST += gc.h
if GL_COND_LIBTOOL
lib_LIBADD += $(LTLIBGCRYPT)
else
Index: modules/getdelim
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/getdelim,v
retrieving revision 1.1
diff -p -u -r1.1 getdelim
--- modules/getdelim 2 Aug 2005 09:33:30 -0000 1.1
+++ modules/getdelim 22 Aug 2006 17:09:43 -0000
@@ -12,6 +12,7 @@ configure.ac:
gl_FUNC_GETDELIM
Makefile.am:
+EXTRA_DIST += getdelim.h
Include:
"getdelim.h"
Index: modules/getline
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/getline,v
retrieving revision 1.10
diff -p -u -r1.10 getline
--- modules/getline 2 Aug 2005 09:33:30 -0000 1.10
+++ modules/getline 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_FUNC_GETLINE
Makefile.am:
+EXTRA_DIST += getline.h
Include:
"getline.h"
Index: modules/getlogin_r
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/getlogin_r,v
retrieving revision 1.3
diff -p -u -r1.3 getlogin_r
--- modules/getlogin_r 8 Mar 2006 01:37:15 -0000 1.3
+++ modules/getlogin_r 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_GETLOGIN_R
Makefile.am:
+EXTRA_DIST += getlogin_r.h
Include:
"getlogin_r.h"
Index: modules/hmac-md5
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/hmac-md5,v
retrieving revision 1.1
diff -p -u -r1.1 hmac-md5
--- modules/hmac-md5 6 Oct 2005 15:58:27 -0000 1.1
+++ modules/hmac-md5 22 Aug 2006 17:09:43 -0000
@@ -14,6 +14,7 @@ configure.ac:
gl_HMAC_MD5
Makefile.am:
+EXTRA_DIST += hmac.h
Include:
"hmac.h"
Index: modules/hmac-sha1
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/hmac-sha1,v
retrieving revision 1.1
diff -p -u -r1.1 hmac-sha1
--- modules/hmac-sha1 12 Oct 2005 01:33:44 -0000 1.1
+++ modules/hmac-sha1 22 Aug 2006 17:09:43 -0000
@@ -14,6 +14,7 @@ configure.ac:
gl_HMAC_SHA1
Makefile.am:
+EXTRA_DIST += hmac.h
Include:
"hmac.h"
Index: modules/md2
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/md2,v
retrieving revision 1.1
diff -p -u -r1.1 md2
--- modules/md2 28 Oct 2005 12:09:32 -0000 1.1
+++ modules/md2 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_MD2
Makefile.am:
+EXTRA_DIST += md2.h
Include:
"md2.h"
Index: modules/md4
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/md4,v
retrieving revision 1.1
diff -p -u -r1.1 md4
--- modules/md4 18 Oct 2005 22:59:17 -0000 1.1
+++ modules/md4 22 Aug 2006 17:09:43 -0000
@@ -13,6 +13,7 @@ configure.ac:
gl_MD4
Makefile.am:
+EXTRA_DIST += md4.h
Include:
"md4.h"
Index: modules/pagealign_alloc
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/pagealign_alloc,v
retrieving revision 1.4
diff -p -u -r1.4 pagealign_alloc
--- modules/pagealign_alloc 8 Mar 2006 01:37:15 -0000 1.4
+++ modules/pagealign_alloc 22 Aug 2006 17:09:43 -0000
@@ -19,6 +19,7 @@ configure.ac:
gl_PAGEALIGN_ALLOC
Makefile.am:
+EXTRA_DIST += pagealign_alloc.h
Include:
#include "pagealign_alloc.h"
Index: modules/read-file
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/read-file,v
retrieving revision 1.1
diff -p -u -r1.1 read-file
--- modules/read-file 16 Jun 2006 19:40:12 -0000 1.1
+++ modules/read-file 22 Aug 2006 17:09:43 -0000
@@ -12,6 +12,7 @@ configure.ac:
gl_FUNC_READ_FILE
Makefile.am:
+EXTRA_DIST += read-file.h
Include:
"read-file.h"
Index: modules/readline
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/readline,v
retrieving revision 1.2
diff -p -u -r1.2 readline
--- modules/readline 2 Sep 2005 14:44:37 -0000 1.2
+++ modules/readline 22 Aug 2006 17:09:43 -0000
@@ -14,6 +14,7 @@ configure.ac:
gl_FUNC_READLINE
Makefile.am:
+EXTRA_DIST += readline.h
Include:
"readline.h"
Index: modules/rijndael
===================================================================
RCS file: /cvsroot/gnulib/gnulib/modules/rijndael,v
retrieving revision 1.1
diff -p -u -r1.1 rijndael
--- modules/rijndael 15 Oct 2005 18:21:59 -0000 1.1
+++ modules/rijndael 22 Aug 2006 17:09:43 -0000
@@ -15,6 +15,7 @@ configure.ac:
gl_RIJNDAEL
Makefile.am:
+EXTRA_DIST += rijndael-alg-fst.h rijndael-api-fst.h
Include:
"rijndael-alg-fst.h"
Re: [bug-gnulib] gnulib changes to make it easier for coreutils to use gnulib-tool, Bruno Haible, 2006/08/24