|
View:
New views
1 Messages
—
Rating Filter:
Alert me
|
|
|
clisp-cvs Digest, Vol 43, Issue 7Send clisp-cvs mailing list submissions to
clisp-cvs@... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/clisp-cvs or, via email, send a message with subject or body 'help' to clisp-cvs-request@... You can reach the person managing the list at clisp-cvs-owner@... When replying, please edit your Subject line so it is more specific than "Re: Contents of clisp-cvs digest..." CLISP CVS commits for today Today's Topics: 1. clisp/doc impnotes.dsl,1.11,NONE (Sam Steingold) 2. clisp/src ChangeLog,1.7193,1.7194 makemake.in,1.890,1.891 (Sam Steingold) 3. clisp/src ChangeLog,1.7194,1.7195 (Sam Steingold) 4. clisp configure,1.146,1.147 (Sam Steingold) ---------------------------------------------------------------------- Message: 1 Date: Tue, 10 Nov 2009 15:23:39 +0000 From: Sam Steingold <sds@...> Subject: clisp/doc impnotes.dsl,1.11,NONE To: clisp-cvs@... Message-ID: <E1N7sZH-0006bH-RB@...> Update of /cvsroot/clisp/clisp/doc In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25369/doc Removed Files: impnotes.dsl Log Message: DSSSL is not used anymore --- impnotes.dsl DELETED --- ------------------------------ Message: 2 Date: Tue, 10 Nov 2009 19:27:44 +0000 From: Sam Steingold <sds@...> Subject: clisp/src ChangeLog,1.7193,1.7194 makemake.in,1.890,1.891 To: clisp-cvs@... Message-ID: <E1N7wNU-0006BX-KV@...> Update of /cvsroot/clisp/clisp/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23773/src Modified Files: ChangeLog makemake.in Log Message: (distrib): use FULLTOPDIR for build-aux Index: makemake.in =================================================================== RCS file: /cvsroot/clisp/clisp/src/makemake.in,v retrieving revision 1.890 retrieving revision 1.891 diff -u -d -r1.890 -r1.891 --- makemake.in 1 Nov 2009 03:32:30 -0000 1.890 +++ makemake.in 10 Nov 2009 19:27:42 -0000 1.891 @@ -3966,7 +3966,7 @@ echotab "mkdir \$(TOPDIR)/linkkit" echotab "${HLN} ${LINKKIT} \$(TOPDIR)/linkkit/" echotab "mkdir \$(TOPDIR)/build-aux" -echotab "cd build-aux && ${HLN} ${BUILD_AUX} \$(TOPDIR)/build-aux" +echotab "cd build-aux && ${HLN} ${BUILD_AUX} \$(FULLTOPDIR)/build-aux" echo_dist_modules "\$(FULLTOPDIR)" ${HLN} "" # For building the `clisp' executable. if test -z "$BINARY_DISTRIB"; then Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7193 retrieving revision 1.7194 diff -u -d -r1.7193 -r1.7194 --- ChangeLog 5 Nov 2009 17:19:51 -0000 1.7193 +++ ChangeLog 10 Nov 2009 19:27:42 -0000 1.7194 @@ -1,3 +1,7 @@ +2009-11-10 Sam Steingold <sds@...> + + * makemake.in (distrib): use FULLTOPDIR for build-aux + 2009-11-05 Sam Steingold <sds@...> * compiler.lisp (note-function-used): use STYLE-WARNING for ------------------------------ Message: 3 Date: Tue, 10 Nov 2009 22:43:21 +0000 From: Sam Steingold <sds@...> Subject: clisp/src ChangeLog,1.7194,1.7195 To: clisp-cvs@... Message-ID: <E1N7zQn-0004bs-C7@...> Update of /cvsroot/clisp/clisp/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17703/src Modified Files: ChangeLog Log Message: (ffi_modules): fix the configure.in test for module requiring FFI Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7194 retrieving revision 1.7195 diff -u -d -r1.7194 -r1.7195 --- ChangeLog 10 Nov 2009 19:27:42 -0000 1.7194 +++ ChangeLog 10 Nov 2009 22:43:18 -0000 1.7195 @@ -1,5 +1,10 @@ 2009-11-10 Sam Steingold <sds@...> + * configure (ffi_modules): fix the configure.in test for module + requiring FFI + +2009-11-10 Sam Steingold <sds@...> + * makemake.in (distrib): use FULLTOPDIR for build-aux 2009-11-05 Sam Steingold <sds@...> ------------------------------ Message: 4 Date: Tue, 10 Nov 2009 22:43:20 +0000 From: Sam Steingold <sds@...> Subject: clisp configure,1.146,1.147 To: clisp-cvs@... Message-ID: <E1N7zQm-0004bo-TG@...> Update of /cvsroot/clisp/clisp In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17703 Modified Files: configure Log Message: (ffi_modules): fix the configure.in test for module requiring FFI Index: configure =================================================================== RCS file: /cvsroot/clisp/clisp/configure,v retrieving revision 1.146 retrieving revision 1.147 diff -u -d -r1.146 -r1.147 --- configure 2 Oct 2009 10:22:20 -0000 1.146 +++ configure 10 Nov 2009 22:43:18 -0000 1.147 @@ -658,7 +658,7 @@ mdir=${ABS_SRCDIR}/modules/${module} test -d ${mdir} || fail "$0: ${mdir} is not an exisiting directory" if test -r ${mdir}/configure.in; then - grep cl_cv_have_ffcall ${mdir}/configure.in > /dev/null 2>&1 && \ + grep 'CL_MODULE_COMMON_CHECKS.*ffi' ${mdir}/configure.in > /dev/null 2>&1 && \ ffi_modules=${ffi_modules}" ${module}" elif grep '.*\.c.*\.fas.*:\|.*\.fas.*\.c.*:' ${mdir}/Makefile > /dev/null 2>&1 ; then ffi_modules=${ffi_modules}" ${module}" ------------------------------ ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july ------------------------------ _______________________________________________ clisp-cvs mailing list clisp-cvs@... https://lists.sourceforge.net/lists/listinfo/clisp-cvs End of clisp-cvs Digest, Vol 43, Issue 7 **************************************** ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ clisp-devel mailing list clisp-devel@... https://lists.sourceforge.net/lists/listinfo/clisp-devel |
| Free embeddable forum powered by Nabble | Forum Help |