diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-04 06:03:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-04 06:03:48 +0000 |
commit | 41aefe41b8e2d442a9eb0cf9e2352790350088d3 (patch) | |
tree | 2cbff21516ac308dd52792e06bf5680792149b5e /sysdeps/mach/hurd/mips | |
parent | 839be78401e0e0b31bfec02a7cc6a9ec2f03ebd1 (diff) | |
download | glibc-41aefe41b8e2d442a9eb0cf9e2352790350088d3.tar.gz glibc-41aefe41b8e2d442a9eb0cf9e2352790350088d3.tar.xz glibc-41aefe41b8e2d442a9eb0cf9e2352790350088d3.zip |
Update.
2000-04-01 Andreas Jaeger <aj@suse.de> * sysdeps/mach/hurd/mips/init-first.c: Use SHARED instead of PIC. * sysdeps/unix/mips/sysdep.h: Use __PIC__ instead of PIC. * sysdeps/mach/mips/thread_state.h: Likewise. * sysdeps/generic/fclrexcpt.c: Use shlib-compat macros. * sysdeps/generic/fegetenv.c: Likewise. * sysdeps/generic/fesetenv.c: Likewise. * sysdeps/generic/feupdateenv.c: Likewise. * sysdeps/generic/fraiseexcpt.c: Likewise. * sysdeps/generic/fsetexcptflg.c: Likewise. * sysdeps/unix/sysv/linux/alpha/glob.c: Likewise. * sysdeps/unix/sysv/linux/arm/errlist.c: Likewise. * sysdeps/unix/sysv/linux/errlist.c: Likewise. * sysdeps/unix/sysv/linux/i386/chown.c: Likewise. 2000-04-02 H.J. Lu <hjl@gnu.org> * elf/ldconfig.h (FLAG_IA64_LIB64): New. Defined.
Diffstat (limited to 'sysdeps/mach/hurd/mips')
-rw-r--r-- | sysdeps/mach/hurd/mips/init-first.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/mach/hurd/mips/init-first.c b/sysdeps/mach/hurd/mips/init-first.c index 825b063c62..72c7a61cb0 100644 --- a/sysdeps/mach/hurd/mips/init-first.c +++ b/sysdeps/mach/hurd/mips/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. For Mips/Hurd. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -109,7 +109,7 @@ init1 (int argc, char *arg0, ...) /* This is a hack to make the special getopt in GNU libc working. */ __getopt_clean_environment (envp); -#ifdef PIC +#ifdef SHARED __libc_global_ctors (); #endif @@ -175,7 +175,7 @@ __init (int *data) (void) &__init; } -#ifdef PIC +#ifdef SHARED /* This function is called to initialize the shared C library. It is called just before the user _start code from mips/elf/start.S, with the stack set up as that code gets it. */ @@ -274,7 +274,7 @@ void __libc_init_first (int argc, ...) } #endif -#ifndef PIC +#ifndef SHARED /* An assembler code wrapping c function __init. */ #ifdef __mips64 asm ("\ |