diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-16 02:51:06 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-16 02:51:06 +0000 |
commit | 2948fc64a6dd7aa23757daf2c5256dfe07f4c61a (patch) | |
tree | 972fdf14f283ebcd6f8fd3811c540ae3cf059a16 /configure | |
parent | 6cab5056c4b54a9bc92fe960e399b970ff2357ff (diff) | |
download | glibc-2948fc64a6dd7aa23757daf2c5256dfe07f4c61a.tar.gz glibc-2948fc64a6dd7aa23757daf2c5256dfe07f4c61a.tar.xz glibc-2948fc64a6dd7aa23757daf2c5256dfe07f4c61a.zip |
* hurd/hurd/lookup.h: New file.
* hurd/hurdlookup.c (__file_name_lookup_under): New function. (__hurd_file_name_lookup, __hurd_file_name_lookup_retry, __hurd_file_name_split): Rewritten to take callback functions for using any needed init or dtable port, instead of passing in crdir and cwdir ports. (__file_name_lookup, __file_name_split): Use new calling convention; pass _hurd_ports_use and __getdport as the callback functions. * sysdeps/mach/hurd/chroot.c: Use __file_name_lookup_under instead of __hurd_file_name_lookup. * sysdeps/mach/hurd/chdir.c: Likewise. * sysdeps/mach/hurd/fchdir.c: Likewise. * hurd/fchroot.c: Likewise.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/configure b/configure index e579acba63..724725bce2 100755 --- a/configure +++ b/configure @@ -707,22 +707,18 @@ os=$config_os # Expand the configuration machine name into a subdirectory by architecture # type and particular chip. case "$machine" in -i[345]86) - machine=i386/$machine ;; -sparc[6789]) - machine=sparc/$machine ;; -m68k) - machine=m68k/m68020 ;; -m680?0) - machine=m68k/$machine ;; -m88k) - machine=m88k/m88100 ;; -m88???) - machine=m88k/$machine ;; -mips64*) - machine=mips/mips64/$machine ;; -mips*) - machine=mips/$machine ;; +a29k | am29000) machine=a29k ;; +alpha*) machine=alpha/$machine ;; +hppa*) machine=hppa/$machine ;; +i[345]86) machine=i386/$machine ;; +m680?0) machine=m68k/$machine ;; +m68k) machine=m68k/m68020 ;; +m88???) machine=m88k/$machine ;; +m88k) machine=m88k/m88100 ;; +mips*) machine=mips/$machine ;; +mips64*) machine=mips/mips64/$machine ;; +sparc[6789]) machine=sparc/$machine ;; +supersparc) machine=sparc/sparc8 ;; esac # Make sco3.2v4 become sco3.2.4 and sunos4.1.1_U1 become sunos4.1.1.U1. @@ -1116,7 +1112,7 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext <<EOF -#line 1120 "configure" +#line 1116 "configure" #include "confdefs.h" #include <assert.h> Syntax Error @@ -1130,7 +1126,7 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext <<EOF -#line 1134 "configure" +#line 1130 "configure" #include "confdefs.h" #include <assert.h> Syntax Error @@ -1184,7 +1180,7 @@ if eval "test \"`echo '$''{'libc_cv_friendly_stddef'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&4 else cat > conftest.$ac_ext <<EOF -#line 1188 "configure" +#line 1184 "configure" #include "confdefs.h" #define __need_size_t #define __need_wchar_t @@ -1307,7 +1303,7 @@ if eval "test \"`echo '$''{'libc_cv_have_initfini'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&4 else cat > conftest.$ac_ext <<EOF -#line 1311 "configure" +#line 1307 "configure" #include "confdefs.h" int main() { return 0; } |