comparison configure.in @ 2416:c9414fdce59b

[project @ 1996-10-16 02:54:17 by jwe] ChangeLog
author jwe
date Wed, 16 Oct 1996 02:54:17 +0000
parents 57e6699c5b43
children d64502c62840
comparison
equal deleted inserted replaced
2415:57e6699c5b43 2416:c9414fdce59b
18 ### 18 ###
19 ### You should have received a copy of the GNU General Public License 19 ### You should have received a copy of the GNU General Public License
20 ### along with Octave; see the file COPYING. If not, write to the Free 20 ### along with Octave; see the file COPYING. If not, write to the Free
21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 22
23 AC_REVISION($Revision: 1.217 $) 23 AC_REVISION($Revision: 1.218 $)
24 AC_PREREQ(2.9) 24 AC_PREREQ(2.9)
25 AC_INIT(src/octave.cc) 25 AC_INIT(src/octave.cc)
26 AC_CONFIG_HEADER(config.h) 26 AC_CONFIG_HEADER(config.h)
27 27
28 AC_DEFINE(OCTAVE_SOURCE, 1) 28 AC_DEFINE(OCTAVE_SOURCE, 1)
211 ### Do special things for g++. 211 ### Do special things for g++.
212 212
213 ADD_CXX_WALL=false 213 ADD_CXX_WALL=false
214 NO_IMPLICIT_TEMPLATES= 214 NO_IMPLICIT_TEMPLATES=
215 gxx_version=`$CXX -v 2>&1 | grep "^.*g.. version" | \ 215 gxx_version=`$CXX -v 2>&1 | grep "^.*g.. version" | \
216 sed 's/^.*g.. version *\(cygnus-\)\?//'` 216 sed -e 's/^.*g.. version *//' -e 's/cygnus-//'`
217 case "$gxx_version" in 217 case "$gxx_version" in
218 changequote(,)dnl 218 changequote(,)dnl
219 2.[6789].*|2.[123456789][0123456789].*) 219 2.[6789].*|2.[123456789][0123456789].*)
220 changequote([,])dnl 220 changequote([,])dnl
221 if test -z "$EXTERN_CXXFLAGS"; then 221 if test -z "$EXTERN_CXXFLAGS"; then
265 265
266 ### Do special things for gcc. 266 ### Do special things for gcc.
267 267
268 ADD_CC_WALL=false 268 ADD_CC_WALL=false
269 gcc_version=`$CC -v 2>&1 | grep "^.*gcc version" | \ 269 gcc_version=`$CC -v 2>&1 | grep "^.*gcc version" | \
270 sed 's/^.*g.. version *\(cygnus-\)\?//'` 270 sed -e 's/^.*g.. version *//' -e 's/cygnus-//'`
271 case "$gcc_version" in 271 case "$gcc_version" in
272 2.*) 272 2.*)
273 if test -z "$EXTERN_CFLAGS"; then 273 if test -z "$EXTERN_CFLAGS"; then
274 ADD_CC_WALL=true 274 ADD_CC_WALL=true
275 fi 275 fi