diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:25:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:25:33 +0000 |
commit | cdd6d192cbccb60ee4b50949a4a4c359e6438844 (patch) | |
tree | f76ea9ab79a949791125d0cbe1c6ade859f2b544 | |
parent | f55254e2a93e980d4465c2aafc6943ffb5ea755a (diff) |
revert debug "fix" since it isnt correct and previous version works
-rw-r--r-- | ldso/libdl/libdl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index 72e8f52dc..0da1882d7 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -69,6 +69,9 @@ extern char *_dl_debug; /* When libdl is linked as a static library, we need to replace all * the symbols that otherwise would have been loaded in from ldso... */ +#ifdef __SUPPORT_LD_DEBUG__ +char *_dl_debug = 0; +#endif const char *_dl_progname = ""; /* Program name */ char *_dl_library_path = 0; /* Where we look for libraries */ char *_dl_ldsopath = 0; /* Location of the shared lib loader */ @@ -85,9 +88,6 @@ struct r_debug *_dl_debug_addr = NULL; #endif /* SHARED */ #ifdef __SUPPORT_LD_DEBUG__ -char *_dl_debug = 0; -int _dl_debug_file = 2; - # define _dl_if_debug_print(fmt, args...) \ do { \ if (_dl_debug) \ |