# HG changeset patch # User jwe # Date 823798097 0 # Node ID fb1e50c2cb44d6c90cf80174f4780e0b6028f24c # Parent 9d6fc7e61d214b3a9c7226fd36a8c4b5de07019d [project @ 1996-02-08 16:45:47 by jwe] diff -r 9d6fc7e61d21 -r fb1e50c2cb44 Makefile.in --- a/Makefile.in Thu Feb 08 16:25:53 1996 +0000 +++ b/Makefile.in Thu Feb 08 16:48:17 1996 +0000 @@ -37,7 +37,8 @@ clean-dist-tar dist links-for-bin-dist bin-dist-tar \ clean-bin-dist-tar binary-dist doc-dist-tar clean-doc-dist-tar \ doc-dist local-dist-tar clean-local-dist-tar local-dist \ - split-dist split-local-dist snapshot-z snapshot snapshot-version + split-dist split-local-dist config-dist \ + snapshot-z snapshot snapshot-version NO_DEP_TARGETS = clean mostlyclean distclean maintainer-clean diff -r 9d6fc7e61d21 -r fb1e50c2cb44 configure.in --- a/configure.in Thu Feb 08 16:25:53 1996 +0000 +++ b/configure.in Thu Feb 08 16:48:17 1996 +0000 @@ -20,7 +20,7 @@ ### along with Octave; see the file COPYING. If not, write to the Free ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -AC_REVISION($Revision: 1.161 $) +AC_REVISION($Revision: 1.162 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -227,6 +227,12 @@ ;; esac +CXX_VERSION= +if test -n "$gxx_version"; then + CXX_VERSION="$gxx_version" +fi +AC_SUBST(CXX_VERSION) + AC_SUBST(HOST_CXXFLAGS) AC_SUBST(NO_IMPLICIT_TEMPLATES) @@ -260,6 +266,12 @@ ;; esac +CC_VERSION= +if test -n "$gcc_version"; then + CC_VERSION="$gcc_version" +fi +AC_SUBST(CC_VERSION) + ### On Linux systems we need to compile with -mieee-fp to get full ### support for IEEE floating point.