]> sjero.net Git - wget/commitdiff
[svn] Apply configure.in fixes by Maciej W. Rozycki, at least those
authorhniksic <devnull@localhost>
Mon, 28 May 2001 22:02:47 +0000 (15:02 -0700)
committerhniksic <devnull@localhost>
Mon, 28 May 2001 22:02:47 +0000 (15:02 -0700)
that work with Autoconf 2.13.

ChangeLog
configure.in

index a7727b4473d735475a8a81efa1d4a74c7763827a..dc0ae9d3af339ab97bf6eb5c7b063534a0d04fc9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-05-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
+
+       * configure.in: Use $host_os instead of non-existent "$opsys" when
+       deciding based on host type.
+
+       * configure.in: Print "cross" when cross-compiling.
+
 2001-05-26  Hrvoje Niksic  <hniksic@arsdigita.com>
 
        * po/hr.po: Updated.
index 27c0d535603fddf07510e0f0ab5353d3ccb793f9..e2bf7b45deb529a86eb5f1e78f18f44361001b2b 100644 (file)
@@ -1,5 +1,5 @@
 dnl Template file for GNU Autoconf
-dnl Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+dnl Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc.
 
 dnl This program is free software; you can redistribute it and/or modify
 dnl it under the terms of the GNU General Public License as published by
@@ -203,7 +203,7 @@ dnl merely for the configure test below.  The actual linking is
 dnl performed by libtool.  Wouldn't it be nice if libtool also
 dnl provided "querying" that we need in configure?
 AC_MSG_CHECKING("for runtime libraries flag")
-case "$opsys" in
+case "$host_os" in
   sol2 ) dash_r="-R" ;;
   decosf* | linux* | irix*) dash_r="-rpath " ;;
   *)
@@ -299,12 +299,15 @@ if test x"$with_ssl" != x -a x"$with_ssl" != x"no"; then
 
     if test x"$ssl_link_failure" = xno; then
       dnl Now try to run the thing.
-      AC_MSG_CHECKING("whether runtime linking works")
+      AC_MSG_CHECKING("whether SSL libs are resolved at runtime")
       AC_TRY_RUN([
-char RSA_new();
-char SSL_new();
+int RSA_new();
+int SSL_new();
 main(){return 0;}
-], AC_MSG_RESULT("yes"), AC_MSG_RESULT("no"); ssl_link_failure=yes, true)
+],
+       AC_MSG_RESULT("yes"),
+       AC_MSG_RESULT("no"); ssl_link_failure=yes,
+       AC_MSG_RESULT("cross"))
     fi
 
     if test x"$ssl_link_failure" = xno; then