diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-21 16:38:46 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-21 16:38:46 +0800 |
commit | f440947ff047db432176897082cccb2ef8ac6d40 (patch) | |
tree | e0b09040b3a3879f4fe06221cccc4ec82380d65b | |
parent | df782ccc4eb34aae382c2808d5d2752b85142c5e (diff) | |
download | gsoc2013-epiphany-f440947ff047db432176897082cccb2ef8ac6d40.tar.gz gsoc2013-epiphany-f440947ff047db432176897082cccb2ef8ac6d40.tar.zst gsoc2013-epiphany-f440947ff047db432176897082cccb2ef8ac6d40.zip |
Add autoconf check for dlopen, and add '-dlopen self' to LDFLAGS. Fixes
2004-08-21 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
* src/Makefile.am:
Add autoconf check for dlopen, and add '-dlopen self' to
LDFLAGS. Fixes bug #150673.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
3 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2004-08-21 Christian Persch <chpe@cvs.gnome.org> + + * configure.in: + * src/Makefile.am: + + Add autoconf check for dlopen, and add '-dlopen self' to + LDFLAGS. Fixes bug #150673. + 2004-08-20 Christian Persch <chpe@cvs.gnome.org> * data/default-prefs.js: diff --git a/configure.in b/configure.in index 1b1af8b83..1eab7a357 100644 --- a/configure.in +++ b/configure.in @@ -36,6 +36,7 @@ AC_SUBST(LIBGNOMEUI_REQUIRED) AC_ENABLE_SHARED(yes) AC_ENABLE_STATIC(no) +AC_LIBTOOL_DLOPEN AM_PROG_LIBTOOL AC_ISC_POSIX diff --git a/src/Makefile.am b/src/Makefile.am index 8c868fd75..656781d4c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -116,7 +116,7 @@ epiphany_LDADD = \ $(EPIPHANY_DEPENDENCY_LIBS) \ $(INTLLIBS) -epiphany_LDFLAGS = -R$(MOZILLA_HOME) +epiphany_LDFLAGS = -R$(MOZILLA_HOME) -dlopen self BUILT_SOURCES = $(CORBA_SOURCE) |