diff options
author | Philip Langdale <philipl@mail.utexas.edu> | 2005-10-17 03:01:35 +0800 |
---|---|---|
committer | Philip Langdale <philipl@src.gnome.org> | 2005-10-17 03:01:35 +0800 |
commit | 35b9deda1f37ac0cc81d926b5295983de6b55dcf (patch) | |
tree | 032ae41e48271e022f0dbc6f78e2eac33d6ae763 /configure.ac | |
parent | fdb745c1c9f97a2f60c84397e6e160912eec0430 (diff) | |
download | gsoc2013-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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
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]]) |