fixed yesterdays fix for cross compiling: simply check the variable

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.
This commit is contained in:
Michael Natterer 2002-05-08 15:19:45 +00:00 committed by Michael Natterer
parent 6853c2b880
commit b97ecd1fb7
8 changed files with 37 additions and 2 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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)