On Sat, Sep 01, 2007 at 11:44:23PM +0000, Markus Gothe wrote: > CVSROOT: /sources/gnash > Module name: gnash > Changes by: Markus Gothe <nihilus> 07/09/01 23:44:23 > > Modified files: > . : ChangeLog > macros : boost.m4 libslist > > Log message: > push/pop flags > > CVSWeb URLs: > http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4184&r2=1.4185 > http://cvs.savannah.gnu.org/viewcvs/gnash/macros/boost.m4?cvsroot=gnash&r1=1.50&r2=1.51 > http://cvs.savannah.gnu.org/viewcvs/gnash/macros/libslist?cvsroot=gnash&r1=1.8&r2=1.9 > > Patches: > Index: ChangeLog > =================================================================== > RCS file: /sources/gnash/gnash/ChangeLog,v > retrieving revision 1.4184 > retrieving revision 1.4185 > diff -u -b -r1.4184 -r1.4185 > --- ChangeLog 1 Sep 2007 10:32:43 -0000 1.4184 > +++ ChangeLog 1 Sep 2007 23:44:22 -0000 1.4185 > @@ -1,3 +1,7 @@ > +2007-09-01 Markus Gothe <[EMAIL PROTECTED]> > + > + * macros/boost.m4: push/pop CXXFLAGS/CPPFLAGS. > + > 2007-09-01 Sandro Santilli <[EMAIL PROTECTED]> > > * server/asobj/Object.cpp (attachObjectInterface): remove > > Index: macros/boost.m4 > =================================================================== > RCS file: /sources/gnash/gnash/macros/boost.m4,v > retrieving revision 1.50 > retrieving revision 1.51 > diff -u -b -r1.50 -r1.51 > --- macros/boost.m4 31 Aug 2007 15:38:41 -0000 1.50 > +++ macros/boost.m4 1 Sep 2007 23:44:23 -0000 1.51 > @@ -14,7 +14,7 @@ > dnl along with this program; if not, write to the Free Software > dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 > USA > > -dnl $Id: boost.m4,v 1.50 2007/08/31 15:38:41 strk Exp $ > +dnl $Id: boost.m4,v 1.51 2007/09/01 23:44:23 nihilus Exp $ > > dnl Boost modules are: > dnl date-time, filesystem. graph. iostreams, program options, python, > @@ -142,16 +142,13 @@ > > if test x${cross_compiling} = xno; then > AC_LANG_PUSH(C++) > - dnl # Save value of current CXXFLAGS > save_CXXFLAGS="$CXXFLAGS" > - CXXFLAGS="$CFLAGS $BOOST_CFLAGS" dnl # SHOULDN'T WE INCLUDE $CXXFLAGS > TOO THEN ? > + save_CPPFLAGS="$CPPFLAGS" > + CXXFLAGS="$CFLAGS $BOOST_CFLAGS" > + CPPFLAGS="$CXXFLAGS" > AC_CHECK_HEADERS([boost/thread.hpp], [], [boost_thread=no]) > - dnl # Do not force setting CXXFLAGS if it wasn't set before > - if test x"$ac_env_CXXFLAGS_set" = "xset"; then > CXXFLAGS="$save_CXXFLAGS" > - else > - unset CXXFLAGS; > - fi > + CPPFLAGS="$save_CPPFLAGS" > AC_LANG_POP(C++) > fi # if not cross-compiling
1) You're not restoring the value of CXXFLAGS 2) SHOULDN'T WE INCLUDE $CXXFLAGS TOO THEN ? --strk; _______________________________________________ Gnash-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnash-commit
