]> err.no Git - pkg-config/commitdiff
2002-10-24 Tor Lillqvist <tml@iki.fi>
authorArch Librarian <arch@canonical.com>
Thu, 14 Jul 2005 13:05:32 +0000 (13:05 +0000)
committerArch Librarian <arch@canonical.com>
Thu, 14 Jul 2005 13:05:32 +0000 (13:05 +0000)
Author: tml
Date: 2002-10-23 20:02:50 GMT
2002-10-24  Tor Lillqvist  <tml@iki.fi>

* configure.in: Move the check for Win32 (which tests the $host
variable) and dependent code later, as it turns out that $host
isn't normally yet set at that point... (I hadn't noticed as I by
habit always pass --host=i386-pc-mingw32 to the configure script,
which sets $host.)

ChangeLog
configure.in

index 614fc958ba0e361ca6bbda95ecdaf1a780c2a8ae..7a563a7ea57de9f191d0f2584fa8553dce4a9298 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2002-10-24  Tor Lillqvist  <tml@iki.fi>
+
+       * configure.in: Move the check for Win32 (which tests the $host
+       variable) and dependent code later, as it turns out that $host
+       isn't normally yet set at that point... (I hadn't noticed as I by
+       habit always pass --host=i386-pc-mingw32 to the configure script,
+       which sets $host.)
+
 2002-10-11  Havoc Pennington  <hp@redhat.com>
 
        * pkg.c (verify_package): fix to properly cast iter->data to char*
index 40a7c753e3fcc7259e3a00314365eb487b69dded..d0f55c94f86c0bd90b9fc566c0de99a56267e1a2 100644 (file)
@@ -6,6 +6,10 @@ AM_MAINTAINER_MODE
 
 AM_CONFIG_HEADER(config.h)
 
+AM_PROG_LIBTOOL
+
+AC_PROG_CC
+
 AC_MSG_CHECKING([for Win32])
 case "$host" in
   *-*-mingw*)
@@ -39,10 +43,6 @@ else
   AC_CONFIG_SUBDIRS(glib-1.2.8)
 fi # !native_win32
 
-AM_PROG_LIBTOOL
-
-AC_PROG_CC
-
 AC_FUNC_ALLOCA
 
 AC_CHECK_FUNCS(setresuid setreuid,break)