[svn] ksba - r313 - trunk
svn author marcus
cvs at cvs.gnupg.org
Tue Dec 8 16:30:22 CET 2009
Author: marcus
Date: 2009-12-08 16:30:22 +0100 (Tue, 08 Dec 2009)
New Revision: 313
Modified:
trunk/ChangeLog
trunk/configure.ac
Log:
2009-12-08 Marcus Brinkmann <marcus at g10code.de>
* configure.ac: Allow cross compiling to be "maybe".
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-07-03 11:41:12 UTC (rev 312)
+++ trunk/ChangeLog 2009-12-08 15:30:22 UTC (rev 313)
@@ -1,3 +1,7 @@
+2009-12-08 Marcus Brinkmann <marcus at g10code.de>
+
+ * configure.ac: Allow cross compiling to be "maybe".
+
2009-07-03 Werner Koch <wk at g10code.com>
* configure.ac: Bump LT version to C17/A9/R7. Unfortunately only
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-07-03 11:41:12 UTC (rev 312)
+++ trunk/configure.ac 2009-12-08 15:30:22 UTC (rev 313)
@@ -324,7 +324,7 @@
AC_SUBST(KSBA_CONFIG_API_VERSION)
# The Makefiles need to know about cross compiling
-AM_CONDITIONAL(CROSS_COMPILING, test x$cross_compiling = xyes)
+AM_CONDITIONAL(CROSS_COMPILING, test x$cross_compiling != xno)
# Generate extended version information for W32.
@@ -361,7 +361,7 @@
Platform: $host
"
-if test x$cross_compiling = xyes; then
+if test x$cross_compiling != xno; then
echo "Hint: If you encounter make problems like
\"No rule to make target 'asn1-tables.c'\"
you should first do a native build without installing
More information about the Gnupg-commits
mailing list