diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-21 17:20:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-21 17:20:27 +0000 |
commit | bdc8eb03e39380b71bc2eaeb9e30f0059cce34b0 (patch) | |
tree | 87e356219bab613b8e97ec0893122dfe3e554780 /configure.in | |
parent | c13de8877bb60d2a7cc23e6c36e6ed1b25b3b624 (diff) | |
download | glibc-bdc8eb03e39380b71bc2eaeb9e30f0059cce34b0.tar glibc-bdc8eb03e39380b71bc2eaeb9e30f0059cce34b0.tar.gz glibc-bdc8eb03e39380b71bc2eaeb9e30f0059cce34b0.tar.bz2 glibc-bdc8eb03e39380b71bc2eaeb9e30f0059cce34b0.zip |
Update.
1998-07-21 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Move test for available port after machine
variable is defined.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 48 |
1 files changed, 24 insertions, 24 deletions
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 |