From 340552894a23c792fdd5574da7f0957bb58a9d12 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 22 Jan 1999 06:37:26 +0000 Subject: [PATCH] * demo/configure.in, demo/Makefile.am (DLPREOPEN): reverted; it didn't make any difference. --- ChangeLog | 5 +++++ demo/Makefile.am | 2 +- demo/configure.in | 3 --- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 445c03c1..41b5134f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-01-22 Alexandre Oliva + + * demo/configure.in, demo/Makefile.am (DLPREOPEN): reverted; it + didn't make any difference. + 1999-01-21 Gary V. Vaughan * THANKS: Added Chris Laas diff --git a/demo/Makefile.am b/demo/Makefile.am index b561d9df..4c8cf4d7 100644 --- a/demo/Makefile.am +++ b/demo/Makefile.am @@ -35,7 +35,7 @@ if BINARY_HELLDL # Create a version of hell that does a preloaded dlopen. helldl_SOURCES = dlmain.c -helldl_LDFLAGS = -export-dynamic $(DLPREOPEN) libhello.la +helldl_LDFLAGS = -export-dynamic -dlpreopen libhello.la helldl_DEPENDENCIES = libhello.la else diff --git a/demo/configure.in b/demo/configure.in index 8f99a3eb..e0fac772 100644 --- a/demo/configure.in +++ b/demo/configure.in @@ -9,13 +9,10 @@ AM_PROG_LIBTOOL if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then STATIC=-static - DLPREOPEN=-dlpreopen else STATIC= - DLPREOPEN=-dlopen fi AC_SUBST(STATIC) -AC_SUBST(DLPREOPEN) AM_CONDITIONAL(BINARY_HELLDL, [dnl grep '^global_symbol_pipe=..*$' ./libtool >/dev/null])