diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-11-27 22:18:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-27 22:18:42 +0800 |
commit | a7e1467e5987baf6ea4a1a2a359b8d87706870fc (patch) | |
tree | 5412de314fede00d81fefa51b99e8e838b9ba90d | |
parent | 6c86554eba317d7fcf518c02f3749cc727ec0ddd (diff) | |
download | gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.tar gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.tar.gz gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.tar.bz2 gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.tar.lz gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.tar.xz gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.tar.zst gsoc2013-epiphany-a7e1467e5987baf6ea4a1a2a359b8d87706870fc.zip |
Correctly save and restore CXXFLAGS.
2005-11-27 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Correctly save and restore CXXFLAGS.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2005-11-27 Christian Persch <chpe@cvs.gnome.org> + + * configure.ac: + + Correctly save and restore CXXFLAGS. + 2005-11-18 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyContentPolicy.cpp: diff --git a/configure.ac b/configure.ac index 0526657a4..21a5056d3 100644 --- a/configure.ac +++ b/configure.ac @@ -207,10 +207,10 @@ dnl ********************************** dnl FIXME find a m4/autoconf guru who can distill this into a nice macro AC_LANG_PUSH([C++]) -_SAVE_CFLAGS=$CXXFLAGS -_SAVE_CPPFLAGS=$CPPFLAGS +_SAVE_CXXFLAGS="$CXXFLAGS" +_SAVE_CPPFLAGS="$CPPFLAGS" 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`" +CXXFLAGS="$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 |