about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-07 19:09:48 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-07 19:09:48 +0000
commit51ac41a799b1e72b092436369bb332e13f689d18 (patch)
tree5181ccdcdffcd07e565434de42fddcc7a012c303
parentaf58d8a27350eac80504f83c091d79a08187d4bb (diff)
downloadglibc-51ac41a799b1e72b092436369bb332e13f689d18.tar.gz
glibc-51ac41a799b1e72b092436369bb332e13f689d18.tar.xz
glibc-51ac41a799b1e72b092436369bb332e13f689d18.zip
Update.
	* sysdeps/powerpc/elf/libc-start.c (__libc_start_main): Don't call
	_dl_aux_init for shared libraries.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/powerpc/elf/libc-start.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bb6c21cab7..e4a53653d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-01-07  Ulrich Drepper  <drepper@redhat.com>
 
+	* sysdeps/powerpc/elf/libc-start.c (__libc_start_main): Don't call
+	_dl_aux_init for shared libraries.
+
 	* sysdeps/unix/sysv/linux/glob64.c: Moved to ...
 	* sysdeps/gnu/glob64.c: ...here.  New file.
 
diff --git a/sysdeps/powerpc/elf/libc-start.c b/sysdeps/powerpc/elf/libc-start.c
index a05bda2219..fcd4a85551 100644
--- a/sysdeps/powerpc/elf/libc-start.c
+++ b/sysdeps/powerpc/elf/libc-start.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2000, 2001 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
@@ -76,7 +76,9 @@ BP_SYM (__libc_start_main) (int argc, char *__unbounded *__unbounded ubp_av,
       while (*(char *__unbounded *__unbounded) auxvec != NULL)
 	++auxvec;
       ++auxvec;
+#ifndef SHARED
       _dl_aux_init ((ElfW(auxv_t) *) auxvec);
+#endif
       rtld_fini = NULL;
     }