diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-08-27 17:49:38 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2005-08-27 17:49:38 +0800 |
commit | 7ad2d178cf391207e36069b36a310d9391fd3eb6 (patch) | |
tree | b970ddc8a34a62554eb71ff9aab075991f1be1cb | |
parent | e1f5dac135d7bc21e5157254ca84d00df286fb38 (diff) | |
download | gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.tar gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.tar.gz gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.tar.bz2 gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.tar.lz gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.tar.xz gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.tar.zst gsoc2013-epiphany-7ad2d178cf391207e36069b36a310d9391fd3eb6.zip |
Add in the dom directory to the includes used for the configure checks.
2005-08-27 Crispin Flowerday <gnome@flowerday.cx>
* configure.ac:
Add in the dom directory to the includes used for
the configure checks. This is to help Gentoo, which
uses an odd header layout.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2005-08-27 Crispin Flowerday <gnome@flowerday.cx> + + * configure.ac: + + Add in the dom directory to the includes used for + the configure checks. This is to help Gentoo, which + uses an odd header layout. + 2005-08-26 Christian Persch <chpe@cvs.gnome.org> * src/ephy-window.c: (ephy_window_delete_event): diff --git a/configure.ac b/configure.ac index 68764ff32..6f7c5a6c8 100644 --- a/configure.ac +++ b/configure.ac @@ -267,6 +267,9 @@ dnl FIXME find a m4/autoconf guru who can distill this into a nice macro CPPFLAGS="-I$MOZILLA_INCLUDE_ROOT -I$MOZILLA_INCLUDE_ROOT/pipnss `$PKG_CONFIG --cflags-only-I $MOZILLA-xpcom`" CXXFLAGS="$_SAVE_CXXFLAGS $AM_CXXFLAGS `$PKG_CONFIG --cflags-only-other $MOZILLA-xpcom`" +dnl Sigh Gentoo has a rubbish header layout +CPPFLAGS="$CPPFLAGS -I$MOZILLA_INCLUDE_ROOT/dom" + AC_MSG_CHECKING([[whether we have a gtk 2 mozilla build]]) AC_RUN_IFELSE( |