From bdc8eb03e39380b71bc2eaeb9e30f0059cce34b0 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Jul 1998 17:20:27 +0000 Subject: [PATCH] Update. 1998-07-21 Ulrich Drepper * configure.in: Move test for available port after machine variable is defined. --- ChangeLog | 5 +++++ configure.in | 48 ++++++++++++++++++++++++------------------------ 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index a741080f6d..3c0fb57064 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-07-21 Ulrich Drepper + + * configure.in: Move test for available port after machine + variable is defined. + 1998-07-21 16:08 -0400 Zack Weinberg * sysdeps/unix/sysv/linux/sendmsg.c: If passing a SCM_CREDS diff --git a/configure.in b/configure.in index 34ddcbd69c..432d7b980d 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 2.43.5