diff options
author | Guido van Rossum <guido@python.org> | 1997-07-19 19:35:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-19 19:35:41 (GMT) |
commit | 642b67809e3e1c06d1d05ad544d7b25245487cda (patch) | |
tree | ff6679798753dd04b4c075253d1838eac1379688 /configure.in | |
parent | a847889607d3c0eac572fbd2e9003b58f332e357 (diff) | |
download | cpython-642b67809e3e1c06d1d05ad544d7b25245487cda.zip cpython-642b67809e3e1c06d1d05ad544d7b25245487cda.tar.gz cpython-642b67809e3e1c06d1d05ad544d7b25245487cda.tar.bz2 |
Set $VERSION here (fixed to 1.5).
Remove some unneeded AC_SUBST() calls.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index e91199b..df332ca 100644 --- a/configure.in +++ b/configure.in @@ -4,6 +4,10 @@ AC_PREREQ(2.0) AC_INIT(Include/object.h) AC_CONFIG_HEADER(config.h) +# Set VERSION so we only need to edit in one place (i.e., here) +AC_SUBST(VERSION) +VERSION=1.5 + # NEXTSTEP stuff if test -f /usr/lib/NextStep/software_version; then @@ -525,7 +529,6 @@ AC_MSG_RESULT($va_list_is_array) AC_CHECK_LIB(ieee, __fpu_control) # Check for --with-fpectl -AC_SUBST(WANT_SIGFPE_HANDLER) AC_MSG_CHECKING(for --with-fpectl) AC_ARG_WITH(fpectl, [--with-fpectl enable SIGFPE catching], [ if test "$withval" != no @@ -589,7 +592,6 @@ test $ac_cv_func_getopt = no && LIBOBJS="$LIBOBJS getopt.o" AC_SUBST(LIBOBJS)dnl # check whether malloc(0) returns NULL or not -AC_SUBST(MALLOC_ZERO_RETURNS_NULL) AC_MSG_CHECKING(what malloc(0) returns) AC_CACHE_VAL(ac_cv_malloc_zero, [AC_TRY_RUN([#include <stdio.h> |