comparison configure.in @ 1894:fb1e50c2cb44

[project @ 1996-02-08 16:45:47 by jwe]
author jwe
date Thu, 08 Feb 1996 16:48:17 +0000
parents 7a5f049849b2
children 527af71a8035
comparison
equal deleted inserted replaced
1893:9d6fc7e61d21 1894:fb1e50c2cb44
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.161 $) 23 AC_REVISION($Revision: 1.162 $)
24 AC_PREREQ(2.0) 24 AC_PREREQ(2.0)
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)
225 ;; 225 ;;
226 esac 226 esac
227 ;; 227 ;;
228 esac 228 esac
229 229
230 CXX_VERSION=
231 if test -n "$gxx_version"; then
232 CXX_VERSION="$gxx_version"
233 fi
234 AC_SUBST(CXX_VERSION)
235
230 AC_SUBST(HOST_CXXFLAGS) 236 AC_SUBST(HOST_CXXFLAGS)
231 AC_SUBST(NO_IMPLICIT_TEMPLATES) 237 AC_SUBST(NO_IMPLICIT_TEMPLATES)
232 238
233 ### See which C compiler to use (we expect to find gcc). 239 ### See which C compiler to use (we expect to find gcc).
234 240
257 ;; 263 ;;
258 *) 264 *)
259 AC_MSG_WARN([Octave has only been tested with gcc, and I can't find it]) 265 AC_MSG_WARN([Octave has only been tested with gcc, and I can't find it])
260 ;; 266 ;;
261 esac 267 esac
268
269 CC_VERSION=
270 if test -n "$gcc_version"; then
271 CC_VERSION="$gcc_version"
272 fi
273 AC_SUBST(CC_VERSION)
262 274
263 ### On Linux systems we need to compile with -mieee-fp to get full 275 ### On Linux systems we need to compile with -mieee-fp to get full
264 ### support for IEEE floating point. 276 ### support for IEEE floating point.
265 277
266 case "$canonical_host_type" in 278 case "$canonical_host_type" in