From: <mk...@us...> - 2003-09-18 02:09:53
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv7999 Modified Files: Tag: b0_4_0 CHANGES.current Makefile Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.75.2.6 retrieving revision 1.75.2.7 diff -C2 -d -r1.75.2.6 -r1.75.2.7 *** CHANGES.current 18 Sep 2003 00:27:37 -0000 1.75.2.6 --- CHANGES.current 18 Sep 2003 02:09:48 -0000 1.75.2.7 *************** *** 11,14 **** --- 11,25 ---- Date.cpp. + Fixed numerous double->float conversions (mostly in LUT.cpp). + + Fixed numerous shadowed variables/methods in Quat, Matrix, + Vector, UTM, GeoPos, and others. + + Added additional warning flags for g++. + + ==========> NOTE changes to the ObjectInterface templates trigger a + regression in swig 1.3.19. Use either 1.3.16 or the most + recent cvs (pre 1.3.20). + ==========> NOTE that Quaternion.h/cpp are now Quat.h/cpp Index: Makefile =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Makefile,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -C2 -d -r1.20 -r1.20.2.1 *** Makefile 16 Aug 2003 07:56:39 -0000 1.20 --- Makefile 18 Sep 2003 02:09:48 -0000 1.20.2.1 *************** *** 3,12 **** export PYTHON_INCLUDE := $(shell python setup.py python_include_path) ! export GDEBUGF = -g -W -Wall -Werror -pedantic #-DSIMDATA_NOLOADCHECK export GCFLAGS = -fPIC -O2 # -march=athlon-tbird export GLDOPTS = -shared -lswigpy -ldl export GSWOPTS = -c -c++ -python -noexcept ! export CXX = g++ #-3.3 ! export SWIG = swig .PHONY: all clean clean-deps --- 3,12 ---- export PYTHON_INCLUDE := $(shell python setup.py python_include_path) ! export GDEBUGF = -g -W -Wall -Werror -pedantic -Wmissing-prototypes -Wconversion -Wshadow #-DSIMDATA_NOLOADCHECK export GCFLAGS = -fPIC -O2 # -march=athlon-tbird export GLDOPTS = -shared -lswigpy -ldl export GSWOPTS = -c -c++ -python -noexcept ! export CXX = g++-3.3 ! export SWIG = swig .PHONY: all clean clean-deps |