diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-19 06:41:14 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-19 06:41:14 +0000 |
commit | 0bf5c0507e1db5e551a9681533592c8829a12f9d (patch) | |
tree | 98a94b0992788213881ff276401df39d2895dd8e /sysdeps/unix | |
parent | c27af28ef2e5eeb23cf894dfd8b35de6cfa69a32 (diff) | |
download | glibc-0bf5c0507e1db5e551a9681533592c8829a12f9d.tar.gz glibc-0bf5c0507e1db5e551a9681533592c8829a12f9d.tar.xz glibc-0bf5c0507e1db5e551a9681533592c8829a12f9d.zip |
* sysdeps/hppa/fpu/libm-test-ulps: New file (generated).
* sysdeps/hppa/Makefile (CFLAGS-rtld.c): New variable. Set -mdisable-fpregs for this file. 2002-11-11 Carlos O'Donell <carlos@baldric.uwo.ca> * sysdeps/unix/sysv/linux/configure.in: Make 2.4.19 minimum linux kernel for hppa, and add unwind symbols from gcc-3.0 era for backwards compatibility. * sysdeps/unix/sysv/linux/configure: Regenerate. * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Define mcontext_t as a sigcontext. * dlfcn/dlerror.c (fini): New function, __attribute__ ((destructor)). Free memory in `last_result' if it was used. * resolv/nss_dns/dns-network.c (getanswer_r): In BYNAME case, search all aliases for one that matches the "<dotted-quad>.IN-ADDR.ARPA" form. Do the parsing inline instead of copying strings and calling inet_network, and properly skip all alias names not matching the form.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/configure | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/configure.in | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/sys/ucontext.h | 6 |
3 files changed, 5 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure index da72e6bb30..75e4073c0e 100644 --- a/sysdeps/unix/sysv/linux/configure +++ b/sysdeps/unix/sysv/linux/configure @@ -86,7 +86,8 @@ case "$machine" in arch_minimum_kernel=2.4.0 ;; hppa*) - arch_minimum_kernel=2.3.99 + libc_cv_gcc_unwind_find_fde=yes + arch_minimum_kernel=2.4.19 ;; m68k*) arch_minimum_kernel=2.0.10 diff --git a/sysdeps/unix/sysv/linux/configure.in b/sysdeps/unix/sysv/linux/configure.in index aae6541e46..30309c2948 100644 --- a/sysdeps/unix/sysv/linux/configure.in +++ b/sysdeps/unix/sysv/linux/configure.in @@ -64,7 +64,8 @@ case "$machine" in arch_minimum_kernel=2.4.0 ;; hppa*) - arch_minimum_kernel=2.3.99 + libc_cv_gcc_unwind_find_fde=yes + arch_minimum_kernel=2.4.19 ;; m68k*) arch_minimum_kernel=2.0.10 diff --git a/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h b/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h index 0f14b46adb..1431143849 100644 --- a/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h @@ -52,11 +52,7 @@ typedef struct fpregset } fpregset_t; /* Context to describe whole processor state. */ -typedef struct - { - gregset_t gregs; - fpregset_t fpregs; - } mcontext_t; +typedef struct sigcontext mcontext_t; /* Userlevel context. */ typedef struct ucontext |