diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-21 16:37:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-21 16:37:03 +0800 |
commit | 8e2865d677b81baf68970041855ac5e884324111 (patch) | |
tree | e42071ac0f2b1785b619a16b49d1f0b52f89ae9a | |
parent | 405143b3a7979e258069663bb44644d1ac6a7739 (diff) | |
download | gsoc2013-epiphany-8e2865d677b81baf68970041855ac5e884324111.tar.gz gsoc2013-epiphany-8e2865d677b81baf68970041855ac5e884324111.tar.zst gsoc2013-epiphany-8e2865d677b81baf68970041855ac5e884324111.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 | 4 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
3 files changed, 13 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 e4e33cc7c..00f991a48 100644 --- a/configure.in +++ b/configure.in @@ -38,6 +38,7 @@ AC_SUBST(LIBGNOMEUI_REQUIRED) AC_ENABLE_SHARED(yes) AC_ENABLE_STATIC(no) +AC_LIBTOOL_DLOPEN AM_PROG_LIBTOOL AC_ISC_POSIX @@ -209,6 +210,7 @@ branch1.7) MOZILLA_SNAPSHOT=17 ;; 1.8a1) MOZILLA_SNAPSHOT=18 ;; 1.8a2) MOZILLA_SNAPSHOT=19 ;; 1.8a3) MOZILLA_SNAPSHOT=20 ;; +1.8a4) MOZILLA_SNAPSHOT=20 ;; 1.8b) MOZILLA_SNAPSHOT=20 ;; 1.8rc1) MOZILLA_SNAPSHOT=20 ;; 1.8) MOZILLA_SNAPSHOT=20 ;; @@ -217,7 +219,7 @@ trunk) MOZILLA_SNAPSHOT=20 ;; *) AC_ERROR([ ***************************************************************************** Epiphany can be built using Mozilla 1.4, 1.4.1, 1.4.2, 1.5, 1.5.1, 1.6, 1.7, -1.7.1, 1.7.2, 1.8a2 or trunk, but the version available is $MOZILLA_VERSION. +1.7.1, 1.7.2, 1.8a2, 1.8a3, or trunk, but the version available is $MOZILLA_VERSION. *****************************************************************************]) esac diff --git a/src/Makefile.am b/src/Makefile.am index b4df30330..d2177c2f1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -120,6 +120,8 @@ libephymain_la_SOURCES = \ epiphany_bin_SOURCES = ephy-main.c +epiphany_bin_LDFLAGS = -dlopen self + epiphany_bin_LDADD = \ $(top_builddir)/src/libephymain.la \ $(top_builddir)/src/bookmarks/libephybookmarks.la \ |