ellipt.lisp compile problems with the new make system
Subject: ellipt.lisp compile problems with the new make system
From: mak at ll
Date: Mon, 14 Jan 2002 16:06:38 -0500
> If you want a fix, I need some help. I think the problem is that gcl
> doesn't have destructuring-bind. At least when I type that form into
> gcl, it complains.
>
> I haven't been able to get a working maxima with gcl in ages....
I got GCL + MAXIMA-PRE59 running for the first time in ages this
weekend. I did...
1. Fresh CVS check out of gcl and maxima sources
2. Applied a patch to GCL's configure (See below.)
3. built GCL w/o incident
4. Replaced current ellipt.lisp with rev 1.1.1.1 ellipt.lisp
5. maxima builds w/o incident with gcl
6. For regression testing to pass... Removed first four lines of
rtest14.lisp (the j0 and jn functions don't seem to be in the
maxima core after the build..hmmm??? I don't understand this...
are j0 and jn new?)
GCL CONFIGURE PATCH (may already be in CVS)
*** /home/mak/src/gcl/configure Sat Jan 12 00:31:20 2002 <<=== THE ORIGINAL CONFIGURE FILE
--- ../configure.mak.2.4.0 Sat Jan 12 17:05:23 2002 <<=== MY HACK
***************
*** 2600,2606 ****
echo "configure:2601: checking emacs site lisp directory" >&5
#EMACS_SITE_LISP=unknown
if [ "$EMACS" != "" ] ; then
! EMACS_SITE_LISP=`$EMACS -q -batch --no-site-file -l conftest.el 2>&1 | sed -e /Loading/d `
else
EMACS_SITE_LISP=""
fi
--- 2600,2606 ----
echo "configure:2601: checking emacs site lisp directory" >&5
#EMACS_SITE_LISP=unknown
if [ "$EMACS" != "" ] ; then
! EMACS_SITE_LISP=`$EMACS -q -batch --no-site-file -l conftest.el 2>&1 | sed -e '/oading\|load others/d'`
else
EMACS_SITE_LISP=""
fi