diff options
author | dos-reis <gdr@axiomatics.org> | 2009-10-14 00:44:41 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2009-10-14 00:44:41 +0000 |
commit | 6e828a6113b3a714f37de4e8d4f2a12c6d0bec5e (patch) | |
tree | 79e6c8d91a34735744a507c44f22fa7024a39c63 | |
parent | 86c3cb9a28330ed843940a327e0dfc41871339cd (diff) | |
download | open-axiom-6e828a6113b3a714f37de4e8d4f2a12c6d0bec5e.tar.gz |
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | configure | 20 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | configure.ac.pamphlet | 4 |
4 files changed, 18 insertions, 14 deletions
@@ -1,3 +1,7 @@ +2009-10-13 Gabriel Dos Reis <gdr@cs.tamu.edu> + + * configure.ac.pamphlet: Look for SBCL before GCL; look for ECL too. + 2009-09-21 Gabriel Dos Reis <gdr@cs.tamu.edu> * configure.ac.pamphlet: Don't unconditionally initialize CCF. @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.63 for OpenAxiom 1.4.0-2009-10-10. +# Generated by GNU Autoconf 2.63 for OpenAxiom 1.4.0-2009-10-13. # # Report bugs to <open-axiom-bugs@lists.sf.net>. # @@ -745,8 +745,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='OpenAxiom' PACKAGE_TARNAME='openaxiom' -PACKAGE_VERSION='1.4.0-2009-10-10' -PACKAGE_STRING='OpenAxiom 1.4.0-2009-10-10' +PACKAGE_VERSION='1.4.0-2009-10-13' +PACKAGE_STRING='OpenAxiom 1.4.0-2009-10-13' PACKAGE_BUGREPORT='open-axiom-bugs@lists.sf.net' ac_unique_file="src/Makefile.pamphlet" @@ -1499,7 +1499,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures OpenAxiom 1.4.0-2009-10-10 to adapt to many kinds of systems. +\`configure' configures OpenAxiom 1.4.0-2009-10-13 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1569,7 +1569,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of OpenAxiom 1.4.0-2009-10-10:";; + short | recursive ) echo "Configuration of OpenAxiom 1.4.0-2009-10-13:";; esac cat <<\_ACEOF @@ -1672,7 +1672,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -OpenAxiom configure 1.4.0-2009-10-10 +OpenAxiom configure 1.4.0-2009-10-13 generated by GNU Autoconf 2.63 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1686,7 +1686,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by OpenAxiom $as_me 1.4.0-2009-10-10, which was +It was created by OpenAxiom $as_me 1.4.0-2009-10-13, which was generated by GNU Autoconf 2.63. Invocation command line was $ $0 $@ @@ -11997,7 +11997,7 @@ fi fi ## We need to build our own GCL if none is avalaible. if test -z $axiom_lisp; then - for ac_prog in gcl sbcl clisp + for ac_prog in sbcl gcl ecl clisp do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -17100,7 +17100,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by OpenAxiom $as_me 1.4.0-2009-10-10, which was +This file was extended by OpenAxiom $as_me 1.4.0-2009-10-13, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17163,7 +17163,7 @@ Report bugs to <bug-autoconf@gnu.org>." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ -OpenAxiom config.status 1.4.0-2009-10-10 +OpenAxiom config.status 1.4.0-2009-10-13 configured by $0, generated by GNU Autoconf 2.63, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff --git a/configure.ac b/configure.ac index c8b62960..c2ca0a1b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ sinclude(config/open-axiom.m4) sinclude(config/aclocal.m4) -AC_INIT([OpenAxiom], [1.4.0-2009-10-10], +AC_INIT([OpenAxiom], [1.4.0-2009-10-13], [open-axiom-bugs@lists.sf.net]) AC_CONFIG_AUX_DIR(config) @@ -164,7 +164,7 @@ if test -z $axiom_lisp; then fi ## We need to build our own GCL if none is avalaible. if test -z $axiom_lisp; then - AC_CHECK_PROGS([AXIOM_LISP], [gcl sbcl clisp]) + AC_CHECK_PROGS([AXIOM_LISP], [sbcl gcl ecl clisp]) ## A lisp may not be available AND the GCL source may also ## be missing. Instruct user to either build one or get ## the dependencies from our website. diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet index 104d42af..a7aa67f1 100644 --- a/configure.ac.pamphlet +++ b/configure.ac.pamphlet @@ -811,7 +811,7 @@ Consequently, we need to check for \Tool{GCL} and its version: <<find lisp>>= ## We need to build our own GCL if none is avalaible. if test -z $axiom_lisp; then - AC_CHECK_PROGS([AXIOM_LISP], [gcl sbcl clisp]) + AC_CHECK_PROGS([AXIOM_LISP], [sbcl gcl ecl clisp]) ## A lisp may not be available AND the GCL source may also ## be missing. Instruct user to either build one or get ## the dependencies from our website. @@ -1149,7 +1149,7 @@ information: <<Autoconf init>>= sinclude(config/open-axiom.m4) sinclude(config/aclocal.m4) -AC_INIT([OpenAxiom], [1.4.0-2009-10-10], +AC_INIT([OpenAxiom], [1.4.0-2009-10-13], [open-axiom-bugs@lists.sf.net]) @ |