libgcrypt (ChangeLog README THANKS configure.ac)

cvs user wk cvs at cvs.gnupg.org
Fri Jun 10 16:51:01 CEST 2005


    Date: Friday, June 10, 2005 @ 17:13:00
  Author: wk
    Path: /cvs/libgcrypt/libgcrypt

Modified: ChangeLog README THANKS configure.ac

Move detection of basic stuff to the top.  For
example we need to know whether gcc is used before testing for it.
Reported by Ralf Fassel.


--------------+
 ChangeLog    |   14 ++++++++++----
 README       |    5 ++---
 THANKS       |    1 +
 configure.ac |   43 ++++++++++++++++++++++++-------------------
 4 files changed, 37 insertions(+), 26 deletions(-)


Index: libgcrypt/ChangeLog
diff -u libgcrypt/ChangeLog:1.167 libgcrypt/ChangeLog:1.168
--- libgcrypt/ChangeLog:1.167	Sat Apr 23 00:39:42 2005
+++ libgcrypt/ChangeLog	Fri Jun 10 17:13:00 2005
@@ -1,11 +1,17 @@
+2005-06-10  Werner Koch  <wk at g10code.com>
+
+	* configure.ac: Move detection of basic stuff to the top.  For
+	example we need to know whether gcc is used before testing for it.
+	Reported by Ralf Fassel.
+	
 2005-04-23  Moritz Schulte  <moritz at g10code.com>
 
 	* acinclude.m4 (TYPE_SOCKLEN_T): New type definition test;
 	provided by Albert Chin.
-	* configure.ac: Don't use $(CMD) as it's not portable; use `CMD` nstead.
-	Simpler -lnsl/-lsocket test.
-	Use TYPE_SOCKLEN_T test.
-	Don't forget to set `random_modules' correctly.
+	* configure.ac: Don't use $(CMD) as it's not portable; use CMD in
+	backticks instead.  Simpler -lnsl/-lsocket test.  Use
+	TYPE_SOCKLEN_T test.  Don't forget to set `random_modules'
+	correctly.
 
 2005-04-22  Moritz Schulte  <moritz at g10code.com>
 
Index: libgcrypt/README
diff -u libgcrypt/README:1.78 libgcrypt/README:1.79
--- libgcrypt/README:1.78	Thu Apr 15 11:46:37 2004
+++ libgcrypt/README	Fri Jun 10 17:13:00 2005
@@ -55,8 +55,7 @@
       rndunix - Entropy gatherer for Unices without a /dev/random
       rndw32  - Entropy gatherer for MS Windows
 
-    The documentation is available under the terms of the GNU Free
-    Documentation License; see the file COPYING.DOC for the terms.
+    The documentation is available under the terms of the GPL.
 
     This library used to be available under the GPL - this was changed
     with version 1.1.7 with the rationale that there are now many free
@@ -64,7 +63,7 @@
     similar to Libcrypt.  We decided that to foster the use of
     cryptography in Free Software an LGPLed library would make more
     sense because it avoids problems due to license incompatibilities
-    between some Free Software licenses and the GPL. 
+    between some Free Software licenses and the GPL.
 
     Please note that in many cases it is better for a library to be
     licensed under the GPL, so that it provides an advantage for free
Index: libgcrypt/THANKS
diff -u libgcrypt/THANKS:1.85 libgcrypt/THANKS:1.86
--- libgcrypt/THANKS:1.85	Tue Mar 22 22:30:17 2005
+++ libgcrypt/THANKS	Fri Jun 10 17:13:00 2005
@@ -90,6 +90,7 @@
 Peter Gutmann		   pgut001 at cs.auckland.ac.nz
 QingLong		   qinglong at bolizm.ihep.su
 Rafael Ávila de Espíndola  rafael.espindola at gmail.com
+Ralf Fassel                ralf at akutech.de
 Ralf Hildebrandt           Ralf.Hildebrandt at innominate.com 
 Ralf Schneider             ralf at tapfere-schneiderleins.de
 Ralph Gillen		   gillen at theochem.uni-duesseldorf.de
Index: libgcrypt/configure.ac
diff -u libgcrypt/configure.ac:1.75 libgcrypt/configure.ac:1.76
--- libgcrypt/configure.ac:1.75	Sat Apr 23 00:39:42 2005
+++ libgcrypt/configure.ac	Fri Jun 10 17:13:00 2005
@@ -19,7 +19,7 @@
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 #
 # (Process this file with autoconf to produce a configure script.)
-AC_REVISION($Revision: 1.75 $)
+AC_REVISION($Revision: 1.76 $)
 AC_PREREQ(2.59)
 min_automake_version="1.9.3"
 
@@ -70,6 +70,7 @@
 #endif
 ])
 
+
 AC_SUBST(LIBGCRYPT_LT_CURRENT)
 AC_SUBST(LIBGCRYPT_LT_AGE)
 AC_SUBST(LIBGCRYPT_LT_REVISION)
@@ -78,6 +79,28 @@
 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package])
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version of this package])
 
+
+######################
+##  Basic checks.  ### (we need some results later on (e.g. $GCC)
+######################
+
+AC_PROG_MAKE_SET
+missing_dir=`cd $ac_aux_dir && pwd`
+AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
+AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
+AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
+AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
+# AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
+AC_PROG_CC
+AC_PROG_CPP
+AM_PROG_AS
+AC_ISC_POSIX
+AC_PROG_INSTALL
+AC_PROG_AWK
+
+AM_PROG_LIBTOOL
+
+
 ##########################
 ## General definitions. ##
 ##########################
@@ -366,25 +389,7 @@
 [use_capabilities="$withval"],[use_capabilities=no])
 AC_MSG_RESULT($use_capabilities)
 
-##############################
-#### Checks for programs. ####
-##############################
 
-AC_PROG_MAKE_SET
-missing_dir=`cd $ac_aux_dir && pwd`
-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
-AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
-# AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
-AC_PROG_CC
-AC_PROG_CPP
-AM_PROG_AS
-AC_ISC_POSIX
-AC_PROG_INSTALL
-AC_PROG_AWK
-
-AM_PROG_LIBTOOL
 
 AC_DEFINE_UNQUOTED(PRINTABLE_OS_NAME, "$PRINTABLE_OS_NAME",
                    [A human readable text with the name of the OS])




More information about the Gnupg-commits mailing list