changeset 1894:fb1e50c2cb44

[project @ 1996-02-08 16:45:47 by jwe]
author jwe
date Thu, 08 Feb 1996 16:48:17 +0000
parents 9d6fc7e61d21
children a95b9ec79ec8
files Makefile.in configure.in
diffstat 2 files changed, 15 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in
+++ b/Makefile.in
@@ -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
 
--- a/configure.in
+++ b/configure.in
@@ -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.