[svn] gpg-error - r195 - in trunk: . lang/cl
svn author marcus
cvs at cvs.gnupg.org
Fri Aug 3 10:29:01 CEST 2007
Author: marcus
Date: 2007-08-03 10:28:32 +0200 (Fri, 03 Aug 2007)
New Revision: 195
Modified:
trunk/ChangeLog
trunk/autogen.sh
trunk/configure.ac
trunk/lang/cl/Makefile.am
Log:
2007-08-03 Marcus Brinkmann <marcus at g10code.de>
* configure.ac: Call AM_PROG_CC_C_O.
* autogen.sh: Use = not == in test.
* lang/cl/Makefile.am: Do not use :=, but =.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-06-27 19:59:00 UTC (rev 194)
+++ trunk/ChangeLog 2007-08-03 08:28:32 UTC (rev 195)
@@ -1,3 +1,9 @@
+2007-08-03 Marcus Brinkmann <marcus at g10code.de>
+
+ * configure.ac: Call AM_PROG_CC_C_O.
+ * autogen.sh: Use = not == in test.
+ * lang/cl/Makefile.am: Do not use :=, but =.
+
2007-05-19 Marcus Brinkmann <marcus at g10code.de>
* lang/cl/gpg-error.lisp (gpg-err-source-t): Add
Modified: trunk/autogen.sh
===================================================================
--- trunk/autogen.sh 2007-06-27 19:59:00 UTC (rev 194)
+++ trunk/autogen.sh 2007-08-03 08:28:32 UTC (rev 195)
@@ -30,7 +30,7 @@
DIE=no
FORCE=
-if test "$1" == "--force"; then
+if test "$1" = "--force"; then
FORCE=" --force"
shift
fi
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2007-06-27 19:59:00 UTC (rev 194)
+++ trunk/configure.ac 2007-08-03 08:28:32 UTC (rev 195)
@@ -57,6 +57,7 @@
# Checks for programs.
AC_PROG_CC
+AM_PROG_CC_C_O
AC_PROG_CPP
AC_PROG_AWK
AC_CHECK_TOOL(AR, ar, :)
Modified: trunk/lang/cl/Makefile.am
===================================================================
--- trunk/lang/cl/Makefile.am 2007-06-27 19:59:00 UTC (rev 194)
+++ trunk/lang/cl/Makefile.am 2007-08-03 08:28:32 UTC (rev 195)
@@ -32,8 +32,8 @@
EXTRA_DIST = README mkerrcodes.awk
CLEANFILES = gpg-error-codes.lisp
-codes_file := $(top_srcdir)/src/err-codes.h.in
-errno_file := $(top_srcdir)/src/errnos.in
+codes_file = $(top_srcdir)/src/err-codes.h.in
+errno_file = $(top_srcdir)/src/errnos.in
gpg-error-codes.lisp: Makefile mkerrcodes.awk $(codes_file) $(errno_file)
echo '@errnos@' | cat $(codes_file) - $(errno_file) \
More information about the Gnupg-commits
mailing list