aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@mail.utexas.edu>2005-10-17 03:01:35 +0800
committerPhilip Langdale <philipl@src.gnome.org>2005-10-17 03:01:35 +0800
commit35b9deda1f37ac0cc81d926b5295983de6b55dcf (patch)
tree032ae41e48271e022f0dbc6f78e2eac33d6ae763
parentfdb745c1c9f97a2f60c84397e6e160912eec0430 (diff)
downloadgsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.tar
gsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.tar.gz
gsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.tar.bz2
gsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.tar.lz
gsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.tar.xz
gsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.tar.zst
gsoc2013-epiphany-35b9deda1f37ac0cc81d926b5295983de6b55dcf.zip
Add another necessary mozilla include subdir to the includes for tests.BEFORE_HARVES18
2005-10-16 Philip Langdale <philipl@mail.utexas.edu> * configure.ac: Add another necessary mozilla include subdir to the includes for tests. This is necessary when compiling against an uninstalled mozilla build (header organisation is only done at make install time) or, apparently, against gentoo's mozilla packages.
-rw-r--r--ChangeLog8
-rw-r--r--configure.ac6
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bbdfdd293..16f121f93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2005-10-16 Philip Langdale <philipl@mail.utexas.edu>
+ * configure.ac: Add another necessary mozilla include subdir to
+ the includes for tests. This is necessary when compiling against
+ an uninstalled mozilla build (header organisation is only done
+ at make install time) or, apparently, against gentoo's mozilla
+ packages.
+
+2005-10-16 Philip Langdale <philipl@mail.utexas.edu>
+
* src/ephy-link-action.c:
(proxy_button_release_event_cb), (get_event_widget),
(ephy_link_action_connect_proxy), (ephy_link_action_disconnect_proxy),
diff --git a/configure.ac b/configure.ac
index 878fd209f..0e9064854 100644
--- a/configure.ac
+++ b/configure.ac
@@ -285,7 +285,11 @@ CXXFLAGS="$_SAVE_CXXFLAGS $AM_CXXFLAGS `$PKG_CONFIG --cflags-only-other $MOZILLA
dnl Sigh Gentoo has a rubbish header layout
dnl http://bugs.gentoo.org/show_bug.cgi?id=100804
-CPPFLAGS="$CPPFLAGS -I$MOZILLA_INCLUDE_ROOT/dom"
+dnl Mind you, it's useful to be able to test against uninstalled mozilla builds...
+TEST_MOZILLA_INCLUDE_DIRS="necko dom"
+for i in $TEST_MOZILLA_INCLUDE_DIRS ; do
+ CPPFLAGS="$CPPFLAGS -I$MOZILLA_INCLUDE_ROOT/$i"
+done
AC_MSG_CHECKING([[whether we have a gtk 2 mozilla build]])