]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 21 Jul 1998 17:20:27 +0000 (17:20 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 21 Jul 1998 17:20:27 +0000 (17:20 +0000)
1998-07-21  Ulrich Drepper  <drepper@cygnus.com>

* configure.in: Move test for available port after machine
variable is defined.

ChangeLog
configure.in

index a741080f6d4d2347f8c1119326acb0586a3c1c52..3c0fb57064834b5507e95c19f43a824171287646 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-07-21  Ulrich Drepper  <drepper@cygnus.com>
+
+       * configure.in: Move test for available port after machine
+       variable is defined.
+
 1998-07-21 16:08 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>
 
        * sysdeps/unix/sysv/linux/sendmsg.c: If passing a SCM_CREDS
index 34ddcbd69c4dc1600a67d22b5d1c7bb01682f789..432d7b980d4ccb9595de2fd22ae57dc6a29e56a8 100644 (file)
@@ -149,30 +149,6 @@ gnu*)
   ;;
 esac
 
-###
-### I put this here to prevent those annoying emails from people who cannot
-### read and try to compile glibc on unsupported platforms.  --drepper
-###
-### By using the undocumented --enable-hacker-mode option for configure
-### one can skip this test to make the configuration not fail for unsupported
-### platforms.
-###
-if test -z "$enable_hacker_mode"; then
-  case "$machine-$host_os" in
-  *-linux* | *-gnu* | arm*-none*)
-    ;;
-  *)
-    echo "*** The GNU C library is currently not available for this platform."
-    echo "*** So far nobody cared to port it and if there is no volunteer it"
-    echo "*** might never happen.  So, if you have interest to see glibc on"
-    echo "*** this platform visit"
-    echo "***  http://www.gnu.org/software/libc/porting.html"
-    echo "*** and join the group of porters"
-    exit 1
-    ;;
-  esac
-fi
-
 # We keep the original values in `$config_*' and never modify them, so we
 # can write them unchanged into config.make.  Everything else uses
 # $machine, $vendor, and $os, and changes them whenever convenient.
@@ -198,6 +174,30 @@ machine=$config_machine
 vendor=$config_vendor
 os=$config_os
 
+###
+### I put this here to prevent those annoying emails from people who cannot
+### read and try to compile glibc on unsupported platforms.  --drepper
+###
+### By using the undocumented --enable-hacker-mode option for configure
+### one can skip this test to make the configuration not fail for unsupported
+### platforms.
+###
+if test -z "$enable_hacker_mode"; then
+  case "$machine-$host_os" in
+  *-linux* | *-gnu* | arm*-none*)
+    ;;
+  *)
+    echo "*** The GNU C library is currently not available for this platform."
+    echo "*** So far nobody cared to port it and if there is no volunteer it"
+    echo "*** might never happen.  So, if you have interest to see glibc on"
+    echo "*** this platform visit"
+    echo "***  http://www.gnu.org/software/libc/porting.html"
+    echo "*** and join the group of porters"
+    exit 1
+    ;;
+  esac
+fi
+
 dnl We need to use [ and ] for other purposes for a while now.
 changequote(,)dnl
 # Expand the configuration machine name into a subdirectory by architecture
This page took 0.055216 seconds and 5 git commands to generate.