fixed yesterdays fix for cross compiling: simply check the variable
authorMichael Natterer <mitch@gimp.org>
Wed, 8 May 2002 15:19:45 +0000 (15:19 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Wed, 8 May 2002 15:19:45 +0000 (15:19 +0000)
2002-05-08  Michael Natterer  <mitch@gimp.org>

* configure.in: fixed yesterdays fix for cross compiling: simply
check the variable "cross_compiling" which gets set by autoconf.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index b8afb0c..88af495 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index b8afb0c..88af495 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index b8afb0c..88af495 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index b8afb0c..88af495 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index b8afb0c..88af495 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index b8afb0c..88af495 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index b8afb0c..88af495 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 2002-05-07  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gmarkup.c (unescape_text): Report unfinished entity
index 36301b5..bde7089 100644 (file)
@@ -1586,9 +1586,9 @@ dnl ******************************************************************
 dnl *** Look for glib-genmarshal in PATH if we are cross-compiling ***
 dnl ******************************************************************
 
-AM_CONDITIONAL(CROSS_COMPILING, test $build != $host)
+AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
 
-if test $CROSS_COMPILING; then
+if test $cross_compiling = yes; then
   AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal, no)
   if test x$GLIB_GENMARSHAL = xno; then
     AC_MSG_ERROR(Could not find a glib-genmarshal in your PATH)