Avoid the need for AC_LIBSOURCES in m4 macros.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Aug 2006 17:15:28 +0000 (17:15 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Aug 2006 17:15:28 +0000 (17:15 +0000)
* 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.

37 files changed:
ChangeLog
m4/ChangeLog
m4/arcfour.m4
m4/arctwo.m4
m4/check-version.m4
m4/crc.m4
m4/des.m4
m4/gc-pbkdf2-sha1.m4
m4/gc.m4
m4/getdelim.m4
m4/getline.m4
m4/getlogin_r.m4
m4/hmac-md5.m4
m4/hmac-sha1.m4
m4/md2.m4
m4/md4.m4
m4/pagealign_alloc.m4
m4/read-file.m4
m4/readline.m4
m4/rijndael.m4
modules/arcfour
modules/arctwo
modules/check-version
modules/crc
modules/des
modules/gc
modules/getdelim
modules/getline
modules/getlogin_r
modules/hmac-md5
modules/hmac-sha1
modules/md2
modules/md4
modules/pagealign_alloc
modules/read-file
modules/readline
modules/rijndael

index d67c44107a3b22577f246d5ea82d21381edfe327..8ed60d716a01e9671249f6bf4dcb4dc64691fc26 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       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.
+
 2006-08-22  Simon Josefsson  <jas@extundo.com>
 
        * MODULES.html.sh: Add "Support for maintaining and release
index 41d7152bdb38535c249d0ef9cf4c8337909a51cc..f3adfbbcf630de4753cac39537b5d22daa64a531 100644 (file)
@@ -1,3 +1,26 @@
+2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * rijndael.m4 (gl_ARCFOUR):
+       * arctwo.m4 (gl_ARCTWO):
+       * check-version.m4 (gl_CHECK_VERSION):
+       * crc.m4 (gl_CRC):
+       * des.m4 (gl_DES):
+       * gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
+       * gc.m4 (gl_GC):
+       * getdelim.m4 (gl_FUNC_GETDELIM):
+       * getline.m4 (gl_FUNC_GETLINE):
+       * getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
+       * hmac-md5.m4 (gl_HMAC_MD5):
+       * hmac-sha1.m4 (gl_HMAC_SHA1):
+       * md2.m4 (gl_MD2):
+       * md4.m4 (gl_MD4):
+       * pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
+       * read-file.m4 (gl_FUNC_READ_FILE):
+       * readline.m4 (gl_FUNC_READLINE):
+       * rijndael.m4 (gl_RIJNDAEL):
+       Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
+       to get the necessary .h files and whatnot.
+
 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
 
        * mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
index 17150e616bf12808becafd4731dd4d8cad9722ac..905251a77783d8b13c2ac58ab34c1231de76f071 100644 (file)
@@ -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 a4dcc628029c4b17991514f707a5beacddf52349..7ea189f899314fe2177d42926c8105d0fdd7ec6c 100644 (file)
@@ -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 42b23a484d33fca3582a0b667a2f8ddf070b8763..8c6cf932110fd1a0128c5bee443412b0c6ec07e2 100644 (file)
@@ -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 84441e06b4bb3f8ff3603061a1e01167559af8df..757fad7578dbba2343c0481b52a11852ab1ca33e 100644 (file)
--- a/m4/crc.m4
+++ b/m4/crc.m4
@@ -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 1a3bd508858b6f00799fbddd836ece580e349b99..dc71132e33ab023a339a3d566dd784a22ba5f01c 100644 (file)
--- a/m4/des.m4
+++ b/m4/des.m4
@@ -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 674f7396770ccde76c0c878b44af33cebb7afba5..05fc881c29d24381229ae729631aa6b3c3bc1efd 100644 (file)
@@ -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 359b9f12ad54884e8cd72d24d7f801040000877b..1d6b37919ce5562411b4e81b5032658a56d1574c 100644 (file)
--- a/m4/gc.m4
+++ b/m4/gc.m4
@@ -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 long as this notice is preserved.
 
 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 340bb7126d877b3521c45505a1fcea0b2c090fd1..2a738f680a1e68e3c58b1c0efe442f5dde45b7c0 100644 (file)
@@ -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 f49c50eed809956db0f8d61d3f53ca2f26ed3b4a..5b55c3045bb16936d6efd0dd38694b9bb030a8e6 100644 (file)
@@ -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 -linet that doesn't have anything
 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 2e99c9630306253f8eb98a2a735745305803ddc3..589d626a229169ab06191f1fa75b5983f610617e 100644 (file)
@@ -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 71cb9a6e8ce8804beaa8a23013d1be322c35ce36..729c6bf827b79c806c6141ea1692b68a1b694743 100644 (file)
@@ -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 1e95822f4af3a3989db2d7087f6d30941b096150..74c936697de9a7cc93dadcbe72c8e3e5e2233597 100644 (file)
@@ -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 81612c8f3d9fbc30ae638a1bacd3a69b89d4e6f5..03e1ea37c9a5a86c3b35d9b38309affdf6820d63 100644 (file)
--- a/m4/md2.m4
+++ b/m4/md2.m4
@@ -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 1df2e3e82b60bae0eb06ced237568a4169c87101..22a7bdee3e49c8def072103e8ded80e025063eb4 100644 (file)
--- a/m4/md4.m4
+++ b/m4/md4.m4
@@ -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 b8cdfa96c107aa28441b0c8dc813624c5a409af5..6fafef2099fe54ddb5f9c82a8ae9f43412b4e281 100644 (file)
@@ -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 15bcad98b4468b208709db7449249ffb4df2caed..8d1b8f3c5f1ad8d18e799a7522e046045ad74d7d 100644 (file)
@@ -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 long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_READ_FILE],
 [
-  AC_LIBSOURCES([read-file.c, read-file.h])
   AC_LIBOBJ([read-file])
   gl_PREREQ_READ_FILE
 ])
index 58300884daa8a119a02626cb645d0829abf25059..4c82a7fafef57329bfcb3a782602915eb5459cbf 100644 (file)
@@ -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 ba5c933d0c11e9bac99ac4ce774c80565d09006a..f7bb8d37d16bc12f4005bc442c538ec0e694b147 100644 (file)
@@ -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 a37ec0b7f7f9558bc50fc3bfb37c973462e26205..8751385b7fd6b599ee7f8579a6c3988a5bbd31ad 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_ARCFOUR
 
 Makefile.am:
+EXTRA_DIST += arcfour.h
 
 Include:
 "arcfour.h"
index 558922278fb8ea13e80c962fcefba68d033d60c2..fbb653aa2ac36daab6cc39b0b2dfbd18597cc9d8 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_ARCTWO
 
 Makefile.am:
+EXTRA_DIST += arctwo.h
 
 Include:
 "arctwo.h"
index bbde4f9e59170fd7186ebc7dfb94e8cdf4c74440..fdeec09e105fd43b1248bed8efaf818481a774c6 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_CHECK_VERSION
 
 Makefile.am:
+EXTRA_DIST += check-version.h
 
 Include:
 "check-version.h"
index d2dccbb1ae0e36724045487d99d791b744da330b..5a56aad7bc68e9a7f32d813c4cf7561aa2a66a77 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_CRC
 
 Makefile.am:
+EXTRA_DIST += crc.h
 
 Include:
 "crc.h"
index 107796c0fa3b908352a86d0b7f5bece6c94bfab5..5a9555adc8f29d361333f175f769de4f21d2f52a 100644 (file)
@@ -14,6 +14,7 @@ configure.ac:
 gl_DES
 
 Makefile.am:
+EXTRA_DIST += des.h
 
 Include:
 "des.h"
index f084b8f0dc7572355ea4db7eb01a3c6350326e32..fee4e77ca97881fff94dadc46edc6455fa59df03 100644 (file)
@@ -14,6 +14,7 @@ configure.ac:
 gl_GC
 
 Makefile.am:
+EXTRA_DIST += gc.h
 if GL_COND_LIBTOOL
 lib_LIBADD += $(LTLIBGCRYPT)
 else
index a635ccb6d3238a5e4675ca17c371b28ae7609cf2..41d49175748d73631cfdbd2193bd94ef6eff2fe1 100644 (file)
@@ -12,6 +12,7 @@ configure.ac:
 gl_FUNC_GETDELIM
 
 Makefile.am:
+EXTRA_DIST += getdelim.h
 
 Include:
 "getdelim.h"
index 0f2f43f5fed8d029ef10e820f9295e356d288152..13b9046357d36d87a2917c9f3a28d055f7b27054 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_FUNC_GETLINE
 
 Makefile.am:
+EXTRA_DIST += getline.h
 
 Include:
 "getline.h"
index fc21faf7358ad0a14c6347a85f4fdabed654a7be..dd626e9fb1da15b0be22590d3924f74776253828 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_GETLOGIN_R
 
 Makefile.am:
+EXTRA_DIST += getlogin_r.h
 
 Include:
 "getlogin_r.h"
index acfce4b4bd6f45ae433586238be6c836859256aa..34ea579f227bd62d284376fe7a3e90e5934ed099 100644 (file)
@@ -14,6 +14,7 @@ configure.ac:
 gl_HMAC_MD5
 
 Makefile.am:
+EXTRA_DIST += hmac.h
 
 Include:
 "hmac.h"
index 9b630c5aea80fd5174c6ca84d55a62ed4bee375e..cb1e517be372b7781ca7a20c9da31dd0c95f7097 100644 (file)
@@ -14,6 +14,7 @@ configure.ac:
 gl_HMAC_SHA1
 
 Makefile.am:
+EXTRA_DIST += hmac.h
 
 Include:
 "hmac.h"
index f3fa344e01ca8ba12233edb3c8e6ba5685c7ce35..5495344ae68fdd460a179d2a070288e7a23ea8ef 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_MD2
 
 Makefile.am:
+EXTRA_DIST += md2.h
 
 Include:
 "md2.h"
index 9ecfd616d657987963e1a1e190b3f007596b8e0d..bb479114ca81dbb74833a36fc2993b41d6e611ae 100644 (file)
@@ -13,6 +13,7 @@ configure.ac:
 gl_MD4
 
 Makefile.am:
+EXTRA_DIST += md4.h
 
 Include:
 "md4.h"
index 78e6d708cb74684a7318c287c51552ab49737aa3..6a819493de870063291243903ab177b8d55faf84 100644 (file)
@@ -19,6 +19,7 @@ configure.ac:
 gl_PAGEALIGN_ALLOC
 
 Makefile.am:
+EXTRA_DIST += pagealign_alloc.h
 
 Include:
 #include "pagealign_alloc.h"
index 1b7263eb323e01d0c8e8ca43f03728809d8675e3..f75f758efe2a8dce7c7ac399bd2878888f744ec4 100644 (file)
@@ -12,6 +12,7 @@ configure.ac:
 gl_FUNC_READ_FILE
 
 Makefile.am:
+EXTRA_DIST += read-file.h
 
 Include:
 "read-file.h"
index 24bbec92d8a091f8f84c106d1e8192fa2f5f7384..325d13535dd218bd3b7f2ca051893ee69fad418e 100644 (file)
@@ -14,6 +14,7 @@ configure.ac:
 gl_FUNC_READLINE
 
 Makefile.am:
+EXTRA_DIST += readline.h
 
 Include:
 "readline.h"
index 21579bfc0399d7c6b974a6aff27c492c8abd6854..121871205ca6c5cc445a2a109a73d087c4b3d307 100644 (file)
@@ -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"