From e254df14d58746e1e09dca15f43e8a88c5c5218b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 2 Nov 1998 22:26:02 +0000 Subject: Update. * elf/Makefile (libdl-routines): Add dlopenold. * elf/Versions [libdl, GLIBC_2.1]: Add dlopen. * elf/dl-open.c (_dl_open): Check whether RTLD_LAZY or RTLD_GLOBAL is set and bounce otherwise. * elf/dlopen.c: Rename function to __dlopen_check and make version named dlopen. * elf/dlopenold.c: New file. 1998-11-02 Ulrich Drepper --- elf/dlopen.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'elf/dlopen.c') diff --git a/elf/dlopen.c b/elf/dlopen.c index d616e48..496fc7d 100644 --- a/elf/dlopen.c +++ b/elf/dlopen.c @@ -41,7 +41,7 @@ dlopen_doit (void *a) void * -dlopen (const char *file, int mode) +__dlopen_check (const char *file, int mode) { struct dlopen_args args; args.file = file; @@ -49,3 +49,8 @@ dlopen (const char *file, int mode) return _dlerror_run (dlopen_doit, &args) ? NULL : args.new; } +#if defined PIC && defined DO_VERSIONING +default_symbol_version (__dlopen_check, dlopen, GLIBC_2.1); +#else +weak_alias (__dlopen_check, dlopen) +#endif -- cgit v1.1