stumpwm-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[STUMP] [PATCH 3/4] Updating the build scripts for CCL


From: Adlai Chandrasekhar
Subject: [STUMP] [PATCH 3/4] Updating the build scripts for CCL
Date: Sat, 26 Dec 2009 15:35:43 +0200

---
 Makefile.in  |    6 +++---
 configure.ac |   28 ++++++++++++++--------------
 2 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index c7c122a..7c38e6b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,12 +2,12 @@ address@hidden@
 
 clisp_BUILDOPTS=-K full -on-error exit ./make-image.lisp
 sbcl_BUILDOPTS=--load ./make-image.lisp
-openmcl_BUILDOPTS=--load ./make-image.lisp
+ccl_BUILDOPTS=--load ./make-image.lisp
 ecl_BUILDOPTS=-norc -shell ./make-image.lisp
 
 clisp_INFOOPTS=-K full -on-error exit -x "(require 'asdf '(\"asdf.lisp\")) 
(load \"stumpwm.asd\") (load \"@PPCRE_PATH@/cl-ppcre.asd\") (asdf:operate 
'asdf:load-op :stumpwm) (load (compile-file \"manual.lisp\")) 
(stumpwm::generate-manual) (ext:exit)"
 sbcl_INFOOPTS=--eval "(progn (require 'asdf) (require 'stumpwm) (load 
\"manual.lisp\"))" --eval "(progn (stumpwm::generate-manual) (sb-ext:quit))"
-openmcl_INFOOPTS=--eval "(require 'asdf) (require 'stumpwm) (load 
(compile-file \"manual.lisp\")) (stumpwm::generate-manual) (quit)"
+ccl_INFOOPTS=--eval "(progn (require 'asdf) (require 'stumpwm))" --load 
manual.lisp --eval "(progn (stumpwm::generate-manual) (quit))"
 ecl_INFOOPTS=-eval "(progn (require 'asdf) (load 
\"@PPCRE_PATH@/cl-ppcre.asd\") (require 'stumpwm) (load \"manual.lisp\"))" 
-eval "(progn (stumpwm::generate-manual) (ext:quit))"
 datarootdir = @datarootdir@
 address@hidden@
@@ -32,7 +32,7 @@ all: stumpwm stumpwm.info
 stumpwm.info: stumpwm.texi
        makeinfo stumpwm.texi
 
-# FIXME: This rule is too hardcoded 
+# FIXME: This rule is too hardcoded
 stumpwm.texi: stumpwm.texi.in
        $(LISP) $(@address@hidden)
 
diff --git a/configure.ac b/configure.ac
index c3d6363..a9d1be8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,12 +9,12 @@ AC_SUBST(LISP)
 AC_SUBST(PPCRE_PATH)
 
 # Checks for programs.
-AC_ARG_WITH(lisp, [ --with-lisp=IMPL      use the specified lisp (sbcl, clisp, 
openmcl or ecl)], LISP=$withval, LISP="sbcl")
-AC_ARG_WITH(sbcl, [ --with-sbcl=PATH      specify location of sbcl], 
SBCL_PATH=$withval, SBCL_PATH="")
-AC_ARG_WITH(clisp, [ --with-clisp=PATH     specify location of clisp], 
CLISP_PATH=$withval, CLISP_PATH="")
-AC_ARG_WITH(openmcl, [ --with-openmcl=PATH     specify location of openmcl], 
OPENMCL_PATH=$withval, OPENMCL_PATH="")
-AC_ARG_WITH(ecl, [ --with-ecl=PATH      specify location of ecl], 
ECL_PATH=$withval, ECL_PATH="")
-AC_ARG_WITH(ppcre, [ --with-ppcre=PATH     specify location of cl-ppcre], 
PPCRE_PATH=$withval, PPCRE_PATH="`pwd`/cl-ppcre")
+AC_ARG_WITH(lisp,    [  --with-lisp=IMPL        use the specified lisp (sbcl, 
clisp, ccl or ecl)], LISP=$withval, LISP="sbcl")
+AC_ARG_WITH(sbcl,    [  --with-sbcl=PATH        specify location of sbcl], 
SBCL_PATH=$withval, SBCL_PATH="")
+AC_ARG_WITH(clisp,   [  --with-clisp=PATH       specify location of clisp], 
CLISP_PATH=$withval, CLISP_PATH="")
+AC_ARG_WITH(ccl,     [  --with-ccl=PATH         specify location of ccl], 
CCL_PATH=$withval, CCL_PATH="")
+AC_ARG_WITH(ecl,     [  --with-ecl=PATH         specify location of ecl], 
ECL_PATH=$withval, ECL_PATH="")
+AC_ARG_WITH(ppcre,   [  --with-ppcre=PATH       specify location of cl-ppcre], 
PPCRE_PATH=$withval, PPCRE_PATH="`pwd`/cl-ppcre")
 
 if test -x "$SBCL_PATH"; then
    SBCL=$SBCL_PATH
@@ -32,12 +32,12 @@ else
    AC_PATH_PROG([CLISP],clisp,"")
 fi
 
-if test -x "$OPENMCL_PATH"; then
-   OPENMCL=$OPENMCL_PATH
-   AC_MSG_CHECKING([for openmcl])
-   AC_MSG_RESULT($OPENMCL)
+if test -x "$CCL_PATH"; then
+   CCL=$CCL_PATH
+   AC_MSG_CHECKING([for ccl])
+   AC_MSG_RESULT($CCL)
 else
-   AC_PATH_PROG([OPENMCL],openmcl,"")
+   AC_PATH_PROG([CCL],ccl,"")
 fi
 
 if test -x "$ECL_PATH"; then
@@ -62,12 +62,12 @@ elif test "x$LISP" = "xsbcl"; then
    else
       LISP_PROGRAM=$SBCL
    fi
-elif test "x$LISP" = "xopenmcl"; then
-   if test "x$OPENMCL" = "x"; then
+elif test "x$LISP" = "xccl"; then
+   if test "x$CCL" = "x"; then
       LISP=sbcl
       LISP_PROGRAM=$SBCL
    else
-      LISP_PROGRAM=$OPENMCL
+      LISP_PROGRAM=$CCL
    fi
 elif test "x$LISP" = "xecl"; then
    if test "x$ECL" = "x"; then
-- 
1.6.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]