diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 13 insertions, 1 deletions
@@ -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]]) |