mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 02:40:08 +00:00
Update.
1998-07-21 Ulrich Drepper <drepper@cygnus.com> * configure.in: Move test for available port after machine variable is defined.
This commit is contained in:
parent
c13de8877b
commit
bdc8eb03e3
@ -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
|
||||
|
48
configure.in
48
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
|
||||
|
Loading…
Reference in New Issue
Block a user