[Echempp-devel] Experiment/Experiment/test Makefile.am,1.16,1.17
Status: Beta
                
                Brought to you by:
                
                    berndspeiser
                    
                
            | 
     
      
      
      From: Bernd S. <ber...@us...> - 2009-04-30 20:30:47
      
     
   | 
Update of /cvsroot/echempp/Experiment/Experiment/test In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14560 Modified Files: Makefile.am Log Message: added gcc-4.3.x compatibility; LDFLAGS Index: Makefile.am =================================================================== RCS file: /cvsroot/echempp/Experiment/Experiment/test/Makefile.am,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Makefile.am 27 Mar 2008 13:04:27 -0000 1.16 --- Makefile.am 30 Apr 2009 20:30:41 -0000 1.17 *************** *** 16,19 **** --- 16,23 ---- -L$(LOKILIB) -lloki + # needed to find correct library if several versions are available in different + # directories + ExperimentTest_LDFLAGS = -L$(QUANTITIESLIB) + INCLUDES = -I../../../Experiment \ -I$(LOKISRC) \ *************** *** 22,24 **** -I$(BOOSTSRC) ! ExperimentTest_CXXFLAGS = -Wall -Werror -pedantic-errors -DTIXML_USE_STL=YES --- 26,34 ---- -I$(BOOSTSRC) ! # to be compiled with gcc-4.3: ! # -Wno-parentheses needed for boost 1.34 - in order to avoid warnings ! # -Wno-write-strings - same ! # -Wno-uninitialized - does not help, -Werror has been deleted instead ! # TIXML_USE_STL no longer needed ! ExperimentTest_CXXFLAGS = -Wall -pedantic-errors -Wno-uninitialized \ ! -Wno-parentheses -Wno-write-strings  |