diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | embed/mozilla/Makefile.am | 4 |
3 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2005-08-27 Crispin Flowerday <gnome@flowerday.cx> + + * configure.ac: + * embed/mozilla/Makefile.am: + + Add another workaround for the Gentoo header layout, and + reference the gentoo bug in the configure script + 2005-08-27 Christian Persch <chpe@cvs.gnome.org> * configure.ac: diff --git a/configure.ac b/configure.ac index 28ec189f3..eee770350 100644 --- a/configure.ac +++ b/configure.ac @@ -268,6 +268,7 @@ CPPFLAGS="-I$MOZILLA_INCLUDE_ROOT -I$MOZILLA_INCLUDE_ROOT/pipnss `$PKG_CONFIG -- CXXFLAGS="$_SAVE_CXXFLAGS $AM_CXXFLAGS `$PKG_CONFIG --cflags-only-other $MOZILLA-xpcom`" 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" AC_MSG_CHECKING([[whether we have a gtk 2 mozilla build]]) diff --git a/embed/mozilla/Makefile.am b/embed/mozilla/Makefile.am index 385a39b81..6314ec3ee 100644 --- a/embed/mozilla/Makefile.am +++ b/embed/mozilla/Makefile.am @@ -105,6 +105,10 @@ mozilla_include_subdirs = \ xpcom \ xpconnect +# Grr, damn gentoo has a dodgy header layout +# http://bugs.gentoo.org/show_bug.cgi?id=100804 +mozilla_include_subdirs += find pref + libephymozillaembed_la_CPPFLAGS = \ -I$(top_srcdir)/lib \ -I$(top_srcdir)/embed \ |