* demo/configure.in, demo/Makefile.am (DLPREOPEN): reverted; it

didn't make any difference.
This commit is contained in:
Alexandre Oliva 1999-01-22 06:37:26 +00:00 committed by Alexandre Oliva
parent 336436d264
commit 340552894a
3 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
1999-01-22 Alexandre Oliva <oliva@dcc.unicamp.br>
* demo/configure.in, demo/Makefile.am (DLPREOPEN): reverted; it
didn't make any difference.
1999-01-21 Gary V. Vaughan <garyv@oranda.demon.co.uk>
* THANKS: Added Chris Laas <golem@MIT.EDU>

View File

@ -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

View File

@ -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])