You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(22) |
Aug
(270) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(8) |
Feb
(24) |
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
(2) |
Dec
(2) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(25) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(3) |
Nov
(1) |
Dec
(14) |
2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
(31) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(90) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:20
|
Update of /cvsroot/foo/fooelk In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238 Modified Files: configure.ac Log Message: equiv to revision level r267 of original elk Index: configure.ac =================================================================== RCS file: /cvsroot/foo/fooelk/configure.ac,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** configure.ac 26 Apr 2010 15:06:49 -0000 1.12 --- configure.ac 26 Apr 2010 15:10:11 -0000 1.13 *************** *** 582,592 **** AC_PATH_X AC_CHECK_LIB(X11, XOpenDisplay, [ac_cv_my_have_x11=yes ! X_CFLAGS="-I${x_includes}" ! X_LIBS="-lX11 -L${x_libraries}"], [ac_cv_my_have_x11=no], ! [[-L${x_libraries}]]) AM_CONDITIONAL(HAVE_X11, test "${ac_cv_my_have_x11}" = "yes") AC_SUBST(X_CFLAGS) --- 582,594 ---- AC_PATH_X + if test -n "${x_includes}"; then x_cflags="-I${x_includes}"; fi + if test -n "${x_libraries}"; then x_libs="-I${x_libraries}"; fi AC_CHECK_LIB(X11, XOpenDisplay, [ac_cv_my_have_x11=yes ! X_CFLAGS="${x_cflags}" ! X_LIBS="${x_libs} -lX11"], [ac_cv_my_have_x11=no], ! [[${x_libs}]]) AM_CONDITIONAL(HAVE_X11, test "${ac_cv_my_have_x11}" = "yes") AC_SUBST(X_CFLAGS) *************** *** 597,607 **** [ac_cv_my_have_xt=yes AC_CHECK_LIB(Xmu, XmuDrawLogo, ! [XT_CFLAGS="-I${x_includes}" ! XT_LIBS="-L${x_libraries} -lXmu -lXt -lSM -lICE -lXext -lX11"], ! [XT_CFLAGS="-I${x_includes}" ! XT_LIBS="-L${x_libraries} -lXt -lSM -lICE -lXext -lX11"], ! [[-lXt -lSM -lICE -lXext -lX11 -L${x_libraries}]])], [ac_cv_my_have_xt=no], ! [[-lSM -lICE -lXext -lX11 -L${x_libraries}]]) else ac_cv_my_have_xt=no --- 599,609 ---- [ac_cv_my_have_xt=yes AC_CHECK_LIB(Xmu, XmuDrawLogo, ! [XT_CFLAGS="${x_cflags}" ! XT_LIBS="${x_libs} -lXmu -lXt -lSM -lICE -lXext -lX11"], ! [XT_CFLAGS="${x_cflags}" ! XT_LIBS="${x_libs} -lXt -lSM -lICE -lXext -lX11"], ! [[-lXt -lSM -lICE -lXext -lX11 ${x_libs}]])], [ac_cv_my_have_xt=no], ! [[-lSM -lICE -lXext -lX11 ${x_libs}]]) else ac_cv_my_have_xt=no *************** *** 614,619 **** AC_CHECK_LIB(Xaw, XawTextSearch, [ac_cv_my_have_xaw=yes ! XAW_CFLAGS="-I${x_includes}" ! XAW_LIBS="-L${x_libraries} -lXaw ${XT_LIBS}"], [ac_cv_my_have_xaw=no], [[${XT_LIBS}]]) --- 616,621 ---- AC_CHECK_LIB(Xaw, XawTextSearch, [ac_cv_my_have_xaw=yes ! XAW_CFLAGS="${x_cflags}" ! XAW_LIBS="${x_libs} -lXaw ${XT_LIBS}"], [ac_cv_my_have_xaw=no], [[${XT_LIBS}]]) *************** *** 635,640 **** AC_CHECK_LIB(Xm, XmStringConcat, [ac_cv_my_have_motif=yes ! MOTIF_CFLAGS="-I${x_includes} -I/usr/include/Xm" ! MOTIF_LIBS="-L${x_libraries} -lXm ${XT_LIBS}"], [ac_cv_my_have_motif=no], [[${XT_LIBS}]]) --- 637,642 ---- AC_CHECK_LIB(Xm, XmStringConcat, [ac_cv_my_have_motif=yes ! MOTIF_CFLAGS="${x_cflags} -I/usr/include/Xm" ! MOTIF_LIBS="${x_libs} -lXm ${XT_LIBS}"], [ac_cv_my_have_motif=no], [[${XT_LIBS}]]) *************** *** 677,681 **** AC_OUTPUT([ Makefile - debian/Makefile doc/Makefile doc/bitstring/Makefile --- 679,682 ---- |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:20
|
Update of /cvsroot/foo/fooelk/doc/bitstring In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/bitstring Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/bitstring/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:11 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = bitstring.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = bitstring.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:20
|
Update of /cvsroot/foo/fooelk/doc/xlib In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/xlib Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/xlib/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:12 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = xlib.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = xlib.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:20
|
Update of /cvsroot/foo/fooelk/doc/xt In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/xt Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/xt/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:12 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = xt.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = xt.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:19
|
Update of /cvsroot/foo/fooelk/doc/kernel In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/kernel Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/kernel/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:11 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = kernel.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = kernel.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:19
|
Update of /cvsroot/foo/fooelk/doc/oops In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/oops Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/oops/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:11 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = oops.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = oops.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:19
|
Update of /cvsroot/foo/fooelk/doc/man In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/man Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/man/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:11 -0000 1.2 *************** *** 5,10 **** if HAVE_GROFF ! doc_DATA = elk.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 5,10 ---- if HAVE_GROFF ! docs_DATA = elk.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:19
|
Update of /cvsroot/foo/fooelk/doc/record In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/record Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/record/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:11 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = record.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = record.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:10:19
|
Update of /cvsroot/foo/fooelk/doc/cprog In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3238/doc/cprog Modified Files: Makefile.am Log Message: equiv to revision level r267 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/doc/cprog/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:10:11 -0000 1.2 *************** *** 3,8 **** if HAVE_GROFF ! doc_DATA = cprog.ps ! docdir = $(datadir)/doc/@PACKAGE@/ps endif --- 3,8 ---- if HAVE_GROFF ! docs_DATA = cprog.ps ! docsdir = $(datadir)/doc/@PACKAGE@/ps endif |
From: Martin R. <ru...@us...> - 2010-04-26 15:06:57
|
Update of /cvsroot/foo/fooelk In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv2698 Modified Files: NEWS configure.ac Log Message: equiv to revision level r266 of original elk Index: NEWS =================================================================== RCS file: /cvsroot/foo/fooelk/NEWS,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** NEWS 6 Aug 2004 20:56:41 -0000 1.1.1.1 --- NEWS 26 Apr 2010 15:06:49 -0000 1.2 *************** *** 4,7 **** --- 4,10 ---- ---------------------------- + * New in 3.99.7 prerelease: + + Last known garbage collector bug was fixed. + * New in 3.99.6 prerelease: + Many portability checks added to the configure script. Index: configure.ac =================================================================== RCS file: /cvsroot/foo/fooelk/configure.ac,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** configure.ac 26 Apr 2010 14:31:24 -0000 1.11 --- configure.ac 26 Apr 2010 15:06:49 -0000 1.12 *************** *** 7,11 **** AC_CANONICAL_SYSTEM ! AM_INIT_AUTOMAKE(fooelk, 0.0.6) AM_CONFIG_HEADER(config.h) --- 7,12 ---- AC_CANONICAL_SYSTEM ! AM_INIT_AUTOMAKE(fooelk, 0.0.7) ! AM_MAINTAINER_MODE AM_CONFIG_HEADER(config.h) |
From: Martin R. <ru...@us...> - 2010-04-26 15:02:40
|
Update of /cvsroot/foo/fooelk/examples/tests In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1916 Modified Files: Makefile.am Added Files: gc-stress.scm Log Message: added gc stress test according to r265 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/examples/tests/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 15:02:31 -0000 1.2 *************** *** 2,6 **** CLEANFILES = $(allstamps) mytest.scm tmp1 tmp2 tmp3 ! allstamps = stamp-r4rs if NATIVE_BUILD --- 2,6 ---- CLEANFILES = $(allstamps) mytest.scm tmp1 tmp2 tmp3 ! allstamps = stamp-r4rs stamp-gc if NATIVE_BUILD *************** *** 10,19 **** stamp-r4rs: $(top_builddir)/src/fooelk rm -f $@ mytest.scm - sed -e 's/r4rstest/mytest/g' < $(srcdir)/r4rstest.scm > mytest.scm echo '(test-cont) (test-sc4) (test-delay)' >> mytest.scm - -$(top_builddir)/src/fooelk -p .:$(top_srcdir)/scm -l mytest.scm rm -f mytest.scm tmp1 tmp2 tmp3 printf "" > $@ --- 10,20 ---- stamp-r4rs: $(top_builddir)/src/fooelk rm -f $@ mytest.scm sed -e 's/r4rstest/mytest/g' < $(srcdir)/r4rstest.scm > mytest.scm echo '(test-cont) (test-sc4) (test-delay)' >> mytest.scm -$(top_builddir)/src/fooelk -p .:$(top_srcdir)/scm -l mytest.scm rm -f mytest.scm tmp1 tmp2 tmp3 printf "" > $@ + stamp-gc: $(top_builddir)/src/elk + -$(top_builddir)/src/elk -p .:$(top_srcdir)/scm -l gc-stress.scm + --- NEW FILE: gc-stress.scm --- ;; this test sometimes crashes the GC with the well-known ;; Panic: Visit: object not in prev space at 0x40210b2c ('pair') 8199 8201 (dumping core). (display "testing garbage collector integrity (1000 loops)\n") ;(set! garbage-collect-notify? #t) (define c 0) (define cb (lambda ignore (let ((s '())) (set! c (+ 1 c)) (call/cc (lambda (return) (do ((i 0 (+ i 1))) ((= i 100)) (let ((a (+ i 1))) (set! s (append s (list i)))) (if (= i 60) (return #t)))))))) (do ((i 0 (+ i 1))) ((= i 1000)) (cb)) (display "test passed.\n") ;; This test used to crash the GC, too. (display "testing deep calls (2000 calls)\n") (define crash (lambda (x) (begin (if (> x 0) (crash (- x 1))) (collect)))) (crash 2000) (display "test passed.\n") |
From: Martin R. <ru...@us...> - 2010-04-26 14:59:10
|
Update of /cvsroot/foo/fooelk/src In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1212/src Modified Files: libelk.c Log Message: equiv to revision level r264 of original elk Index: libelk.c =================================================================== RCS file: /cvsroot/foo/fooelk/src/libelk.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** libelk.c 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- libelk.c 26 Apr 2010 14:59:02 -0000 1.2 *************** *** 177,181 **** # define foo (av[0][0]) #else ! char foo; #endif --- 177,181 ---- # define foo (av[0][0]) #else ! volatile char foo; #endif |
From: Martin R. <ru...@us...> - 2010-04-26 14:57:47
|
Update of /cvsroot/foo/fooelk In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv983 Modified Files: Makefile.am Log Message: equiv to revision level r263 of original elk Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 26 Apr 2010 14:31:24 -0000 1.2 --- Makefile.am 26 Apr 2010 14:57:39 -0000 1.3 *************** *** 2,6 **** SUBDIRS = include src lib scm doc examples ! DIST_SUBDIRS = $(SUBDIRS) debian EXTRA_DIST = \ --- 2,6 ---- SUBDIRS = include src lib scm doc examples ! DIST_SUBDIRS = $(SUBDIRS) EXTRA_DIST = \ |
From: Martin R. <ru...@us...> - 2010-04-26 14:57:15
|
Update of /cvsroot/foo/fooelk/debian In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv914 Removed Files: Makefile.am changelog compat control copyright elk.docs elk.prerm elkdoc.dirs elkdoc.docs libelk0-dev.dirs libelk0.dirs menu rules Log Message: remove debian files according to r263 of original elk --- control DELETED --- --- libelk0-dev.dirs DELETED --- --- elk.docs DELETED --- --- copyright DELETED --- --- elkdoc.dirs DELETED --- --- rules DELETED --- --- menu DELETED --- --- compat DELETED --- --- elk.prerm DELETED --- --- libelk0.dirs DELETED --- --- Makefile.am DELETED --- --- elkdoc.docs DELETED --- --- changelog DELETED --- |
From: Martin R. <ru...@us...> - 2010-04-26 14:54:33
|
Update of /cvsroot/foo/fooelk/src In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv32755/src Modified Files: cont.c Log Message: equiv to revision level r262 of original elk Index: cont.c =================================================================== RCS file: /cvsroot/foo/fooelk/src/cont.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** cont.c 26 Apr 2010 14:38:04 -0000 1.4 --- cont.c 26 Apr 2010 14:54:24 -0000 1.5 *************** *** 114,125 **** */ unsigned int Stack_Size () { ! char foo; ! char *pfoo; ! return Stack_Grows_Down ? stkbase-pfoo : pfoo-stkbase; } void Grow_Stack (struct S_Control *cp, Object val) { ! char buf[100]; /* Prevent the optimizer from optimizing buf away: --- 114,125 ---- */ unsigned int Stack_Size () { ! volatile char foo; ! char *pfoo = &foo; ! return Stack_Grows_Down ? stkbase-pfoo : pfoo-stkbase; } void Grow_Stack (struct S_Control *cp, Object val) { ! volatile char buf[100]; /* Prevent the optimizer from optimizing buf away: *************** *** 134,138 **** static char *from, *to; /* Must not be allocated on stack */ static int i; /* Ditto */ ! char foo; /* Reinstall the saved stack contents; take stack direction --- 134,138 ---- static char *from, *to; /* Must not be allocated on stack */ static int i; /* Ditto */ ! volatile char foo; /* Reinstall the saved stack contents; take stack direction |
From: Martin R. <ru...@us...> - 2010-04-26 14:51:29
|
Update of /cvsroot/foo/fooelk/src In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv32231/src Modified Files: proc.c Log Message: equiv to revision level r261 of original elk Index: proc.c =================================================================== RCS file: /cvsroot/foo/fooelk/src/proc.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** proc.c 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- proc.c 26 Apr 2010 14:51:21 -0000 1.2 *************** *** 275,283 **** } if (prim->disc == VARARGS) { ! r = (prim->fun)(argc, argv); } else { switch (argc) { ! case 0: ! r = (prim->fun)(); break; case 1: TC_Disable; --- 275,289 ---- } if (prim->disc == VARARGS) { ! Object (*varfun) (int, Object *); ! varfun = (Object (*) (int, Object *))prim->fun; ! r = varfun(argc, argv); } else { switch (argc) { ! case 0: { ! Object (*myfun) (void); ! myfun = (Object (*) (void))prim->fun; ! r = myfun(); ! break; ! } case 1: TC_Disable; |
From: Martin R. <ru...@us...> - 2010-04-26 14:50:50
|
Update of /cvsroot/foo/fooelk/src In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv32021/src Modified Files: type.c Log Message: equiv to revision level r260 of original elk Index: type.c =================================================================== RCS file: /cvsroot/foo/fooelk/src/type.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** type.c 10 Aug 2004 01:05:06 -0000 1.3 --- type.c 26 Apr 2010 14:50:42 -0000 1.4 *************** *** 113,117 **** for (i = 0; (p = builtin_types[i]); i++) { Types[i].haspointer = *p != '0'; ! Types[i].name = ++p; } } --- 113,117 ---- for (i = 0; (p = builtin_types[i]); i++) { Types[i].haspointer = *p != '0'; ! Types[i].name = p + 1; /* Skip first character */ } } |
From: Martin R. <ru...@us...> - 2010-04-26 14:48:14
|
Update of /cvsroot/foo/fooelk In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31592 Modified Files: bootstrap Log Message: equiv to revision level r259 of original elk Index: bootstrap =================================================================== RCS file: /cvsroot/foo/fooelk/bootstrap,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bootstrap 9 Mar 2009 00:04:10 -0000 1.4 --- bootstrap 26 Apr 2010 14:48:05 -0000 1.5 *************** *** 1,31 **** #! /bin/sh - ## bootstrap file for Elk -- Sam Hocevar <sa...@zo...> ## $Id$ ! set -x set -e ! # Get a sane environment, just in case ! LANG=C ! export LANG ! CYGWIN=binmode ! export CYGWIN # Check for automake amvers="no" ! if automake-1.10 --version >/dev/null 2>&1; then ! amvers="-1.10" ! elif automake-1.9 --version >/dev/null 2>&1; then ! amvers="-1.9" ! elif automake-1.8 --version >/dev/null 2>&1; then ! amvers="-1.8" ! elif automake-1.7 --version >/dev/null 2>&1; then ! amvers="-1.7" ! elif automake-1.6 --version >/dev/null 2>&1; then ! amvers="-1.6" ! elif automake-1.5 --version >/dev/null 2>&1; then ! amvers="-1.5" ! elif automake --version > /dev/null 2>&1; then amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`" if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then --- 1,45 ---- #! /bin/sh ## $Id$ ! # bootstrap: the ultimate bootstrap/autogen.sh script for autotools projects ! # Copyright (c) 2002, 2003, 2004, 2005, 2006 Sam Hocevar <sa...@zo...> ! # ! # This program is free software; you can redistribute it and/or ! # modify it under the terms of the Do What The Fuck You Want To ! # Public License, Version 2, as published by Sam Hocevar. See ! # http://sam.zoy.org/wtfpl/COPYING for more details. ! # ! # The latest version of this script can be found at the following place: ! # http://sam.zoy.org/autotools/ ! ! # Die if an error occurs set -e ! # Guess whether we are using configure.ac or configure.in ! if test -f configure.ac; then ! conffile="configure.ac" ! elif test -f configure.in; then ! conffile="configure.in" ! else ! echo "$0: could not find configure.ac or configure.in" ! exit 1 ! fi ! ! # Check for needed features ! auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *( *\([^ )]*\).*/\1/p' $conffile`" ! libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile && echo yes || echo no`" ! header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile && echo yes || echo no`" # Check for automake amvers="no" ! for v in "-1.9" "19" "-1.8" "18" "-1.7" "17" "-1.6" "16" "-1.5" "15"; do ! if automake${v} --version >/dev/null 2>&1; then ! amvers="${v}" ! break ! fi ! done ! ! if test "${amvers}" = "no" && automake --version > /dev/null 2>&1; then amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`" if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then *************** *** 37,73 **** if test "$amvers" = "no"; then - set +x echo "$0: you need automake version 1.5 or later" exit 1 fi ! # Check for libtool ! libtoolize="no" ! if libtoolize --version >/dev/null 2>&1; then ! libtoolize="libtoolize" ! elif glibtoolize --version >/dev/null 2>&1; then ! libtoolize="glibtoolize" ! fi ! if test "$libtoolize" = "no"; then ! set +x ! echo "$0: you need libtool" exit 1 fi # Remove old cruft ! rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh INSTALL ! rm -Rf autom4te.cache autotools ! mkdir autotools ! ${libtoolize} --copy --force ! if test -f "ltmain.sh"; then ! echo "$0: working around a minor libtool issue" ! mv ltmain.sh autotools/ fi ! aclocal${amvers} ! autoconf ! autoheader ! automake${amvers} --add-missing --copy --- 51,123 ---- if test "$amvers" = "no"; then echo "$0: you need automake version 1.5 or later" exit 1 fi ! # Check for autoconf ! acvers="no" ! for v in "" "259" "253"; do ! if autoconf${v} --version >/dev/null 2>&1; then ! acvers="${v}" ! break ! fi ! done ! if test "$acvers" = "no"; then ! echo "$0: you need autoconf" exit 1 fi + # Check for libtool + if test "$libtool" = "yes"; then + libtoolize="no" + if glibtoolize --version >/dev/null 2>&1; then + libtoolize="glibtoolize" + else + for v in "16" "15" "" "14"; do + if libtoolize${v} --version >/dev/null 2>&1; then + libtoolize="libtoolize${v}" + break + fi + done + fi + + if test "$libtoolize" = "no"; then + echo "$0: you need libtool" + exit 1 + fi + fi + # Remove old cruft ! for x in aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh; do rm -f $x autotools/$x; if test -n "$auxdir"; then rm -f "$auxdir/$x"; fi; done ! rm -Rf autom4te.cache ! if test -n "$auxdir" -a ! -d "$auxdir"; then mkdir "$auxdir"; fi ! # Explain what we are doing from now ! set -x ! ! # Bootstrap package ! if test "$libtool" = "yes"; then ! ${libtoolize} --copy --force ! if test -n "$auxdir" -a -f "ltmain.sh"; then ! echo "$0: working around a minor libtool issue" ! mv ltmain.sh "$auxdir/" ! fi fi ! if test -n "$auxdir"; then ! aclocal${amvers} -I autotools ! else ! aclocal${amvers} ! fi ! autoconf${acvers} ! if test "$header" = "yes"; then ! autoheader${acvers} ! fi ! #add --include-deps if you want to bootstrap with any other compiler than gcc ! #automake${amvers} --add-missing --copy --include-deps ! automake${amvers} --foreign --add-missing --copy ! ! # Remove cruft that we no longer want ! rm -Rf autom4te.cache |
From: Martin R. <ru...@us...> - 2010-04-26 14:40:56
|
Update of /cvsroot/foo/fooelk/include In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30431/include Modified Files: object.h Log Message: incorporated revision level r258 from original elk-trunk Index: object.h =================================================================== RCS file: /cvsroot/foo/fooelk/include/object.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** object.h 10 Aug 2004 02:28:40 -0000 1.2 --- object.h 26 Apr 2010 14:40:48 -0000 1.3 *************** *** 39,43 **** #define FIXBITS (8 * (int)sizeof(int)) ! #define SIGNBIT ((unsigned)1 << (FIXBITS-1)) #define CONSTBIT 1 #define TYPEBITS (8 * (int)sizeof(int) - 1) --- 39,43 ---- #define FIXBITS (8 * (int)sizeof(int)) ! #define SIGNBIT ((unsigned int)1 << (FIXBITS-1)) #define CONSTBIT 1 #define TYPEBITS (8 * (int)sizeof(int) - 1) *************** *** 52,57 **** #define CHAR(x) ((int)(x).data) ! #define POINTER(x) ((void *)(intptr_t)(x).data) ! #define SETPOINTER(x,p) ((x).data = (intptr_t)(void *)(p)) #define SET(x,t,p) ((x).tag = (int)t << 1, (x).data = (p)) --- 52,57 ---- #define CHAR(x) ((int)(x).data) ! #define POINTER(x) ((void *)(uintptr_t)(x).data) ! #define SETPOINTER(x,p) ((x).data = (uintptr_t)(void *)(p)) #define SET(x,t,p) ((x).tag = (int)t << 1, (x).data = (p)) *************** *** 69,75 **** typedef int gcspace_t; /* type for space and type arrays */ ! typedef intptr_t gcptr_t; /* type for pointers */ ! typedef long int pageno_t; /* type for page numbers */ ! typedef intptr_t addrarith_t; /* type for address arithmetic */ extern gcspace_t *space; --- 69,75 ---- typedef int gcspace_t; /* type for space and type arrays */ ! typedef uintptr_t gcptr_t; /* type for pointers */ ! typedef uintptr_t pageno_t; /* type for page numbers */ ! typedef uintptr_t addrarith_t; /* type for address arithmetic */ extern gcspace_t *space; |
From: Martin R. <ru...@us...> - 2010-04-26 14:38:11
|
Update of /cvsroot/foo/fooelk/src In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30021/src Modified Files: cont.c Log Message: incorporated revision level r256 from original elk-trunk Index: cont.c =================================================================== RCS file: /cvsroot/foo/fooelk/src/cont.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cont.c 11 Dec 2005 10:35:42 -0000 1.3 --- cont.c 26 Apr 2010 14:38:04 -0000 1.4 *************** *** 115,120 **** unsigned int Stack_Size () { char foo; ! return Stack_Grows_Down ? stkbase-&foo : &foo-stkbase; } --- 115,121 ---- unsigned int Stack_Size () { char foo; + char *pfoo; ! return Stack_Grows_Down ? stkbase-pfoo : pfoo-stkbase; } |
From: Martin R. <ru...@us...> - 2010-04-26 14:31:33
|
Update of /cvsroot/foo/fooelk In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv29087 Modified Files: Makefile.am configure.ac Log Message: incorporated revision level r254 from original elk-trunk Index: configure.ac =================================================================== RCS file: /cvsroot/foo/fooelk/configure.ac,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** configure.ac 24 Mar 2009 18:44:22 -0000 1.10 --- configure.ac 26 Apr 2010 14:31:24 -0000 1.11 *************** *** 555,566 **** # Code qui fait des warnings == code de porc == deux baffes dans ta gueule ! dnl CFLAGS_warn="-Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare" ! dnl AC_CACHE_CHECK([if \$CC accepts ${CFLAGS_warn}], ! dnl [ac_cv_c_Wwarn], ! dnl [CFLAGS="${CFLAGS_warn} ${CFLAGS_save}" ! dnl AC_TRY_COMPILE([],,ac_cv_c_Wwarn=yes, ac_cv_c_Wwarn=no)]) ! dnl if test "x${ac_cv_c_Wwarn}" != "xno"; then ! dnl CFLAGS_save="${CFLAGS_warn} ${CFLAGS_save}" ! dnl fi dnl --- 555,566 ---- # Code qui fait des warnings == code de porc == deux baffes dans ta gueule ! CFLAGS_warn="-Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare" ! AC_CACHE_CHECK([if \$CC accepts ${CFLAGS_warn}], ! [ac_cv_c_Wwarn], ! [CFLAGS="${CFLAGS_warn} ${CFLAGS_save}" ! AC_TRY_COMPILE([],,ac_cv_c_Wwarn=yes, ac_cv_c_Wwarn=no)]) ! if test "x${ac_cv_c_Wwarn}" != "xno"; then ! CFLAGS_save="${CFLAGS_warn} ${CFLAGS_save}" ! fi dnl Index: Makefile.am =================================================================== RCS file: /cvsroot/foo/fooelk/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- Makefile.am 26 Apr 2010 14:31:24 -0000 1.2 *************** *** 2,6 **** SUBDIRS = include src lib scm doc examples ! DIST_SUBDIRS = $(SUBDIRS) autotools debian EXTRA_DIST = \ --- 2,6 ---- SUBDIRS = include src lib scm doc examples ! DIST_SUBDIRS = $(SUBDIRS) debian EXTRA_DIST = \ |
From: Martin R. <ru...@us...> - 2009-04-09 10:00:02
|
Update of /cvsroot/foo/foo/libfoo In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12373/libfoo Modified Files: ChangeLog Log Message: fix for snd-region/snd-extract nesting Index: ChangeLog =================================================================== RCS file: /cvsroot/foo/foo/libfoo/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ChangeLog 31 Jul 2004 04:09:18 -0000 1.2 --- ChangeLog 9 Apr 2009 09:59:43 -0000 1.3 *************** *** 3,4 **** --- 3,8 ---- 2004-07-29 rumori - autotools build system for ng foo + + 2009-04-10 rumori + - FooSoundStream: _channelNumber counts from zero now + |
From: Martin R. <ru...@us...> - 2009-04-09 09:59:50
|
Update of /cvsroot/foo/foo/elkfoo In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12373/elkfoo Modified Files: ChangeLog Log Message: fix for snd-region/snd-extract nesting Index: ChangeLog =================================================================== RCS file: /cvsroot/foo/foo/elkfoo/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ChangeLog 4 Aug 2004 07:13:08 -0000 1.1 --- ChangeLog 9 Apr 2009 09:59:43 -0000 1.2 *************** *** 3,4 **** --- 3,8 ---- 2004-07-29 rumori - autotools build system for ng foo + + 2009-04-09 rumori + - snd.m: adopt P_Make_Snd_Extract to channel counting from 0 in FOOSounsStream + |
From: Martin R. <ru...@us...> - 2009-04-09 09:58:40
|
Update of /cvsroot/foo/foo/elkfoo/src In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11866 Modified Files: snd.m Log Message: fix for snd-region/snd-extract nesting Index: snd.m =================================================================== RCS file: /cvsroot/foo/foo/elkfoo/src/snd.m,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** snd.m 4 Apr 2007 14:36:04 -0000 1.9 --- snd.m 9 Apr 2009 09:58:27 -0000 1.10 *************** *** 476,480 **** GC_Link(snd); region = A_Make_Snd([FOORegion class]); ! [IdOf(region) initWithSubstrate:p offset:o size:l rev:NO]; SND_T(region)->name = SND_T(snd)->name; SND_T(region)->filetype = SND_T(snd)->filetype; --- 476,480 ---- GC_Link(snd); region = A_Make_Snd([FOORegion class]); ! [IdOf(region) initWithSubstrate: p offset: o size: l rev: NO]; SND_T(region)->name = SND_T(snd)->name; SND_T(region)->filetype = SND_T(snd)->filetype; *************** *** 506,510 **** GC_Link(snd); region = A_Make_Snd([FOORegion class]); ! [IdOf(region) initWithSubstrate:p offset:0. size:l rev:YES]; SND_T(region)->name = SND_T(snd)->name; SND_T(region)->filetype = SND_T(snd)->filetype; --- 506,510 ---- GC_Link(snd); region = A_Make_Snd([FOORegion class]); ! [IdOf(region) initWithSubstrate: p offset: 0. size: l rev: YES]; SND_T(region)->name = SND_T(snd)->name; SND_T(region)->filetype = SND_T(snd)->filetype; *************** *** 543,547 **** GC_Link(snd); region = A_Make_Snd([FOOSoundStream class]); ! [IdOf(region) initWithSubstrate:p channel:c]; SND_T(region)->name = SND_T(snd)->name; SND_T(region)->filetype = SND_T(snd)->filetype; --- 543,547 ---- GC_Link(snd); region = A_Make_Snd([FOOSoundStream class]); ! [IdOf(region) initWithSubstrate: p channel: c - 1]; SND_T(region)->name = SND_T(snd)->name; SND_T(region)->filetype = SND_T(snd)->filetype; |
From: Martin R. <ru...@us...> - 2009-04-09 09:57:22
|
Update of /cvsroot/foo/foo/libfoo/FOO In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11484 Modified Files: FOORegion.h FOOSoundFile.h FOOSoundStream.h Log Message: minor cosmetic cleanups Index: FOOSoundFile.h =================================================================== RCS file: /cvsroot/foo/foo/libfoo/FOO/FOOSoundFile.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FOOSoundFile.h 30 Sep 2007 12:26:44 -0000 1.7 --- FOOSoundFile.h 9 Apr 2009 09:57:11 -0000 1.8 *************** *** 95,103 **** - (BOOL) getSamples: (sample_t *)buffer offset: (long)fromFrame size: (long)frames channel: (int)channel; - (BOOL) getSamples: (sample_t *)buffer offset: (long)fromFrame size: (long)frames rev: (BOOL)reversed; - /* to be removed - * no in FOOSubstrate.h - * - (BOOL) getSamples: (sample_t *)buffer offset: (long)fromFrame size: (long)frames; - */ - - (BOOL) putSamples: (sample_t *)buffer offset: (long)fromFrame size: (long)frames channel: (int)channel; --- 95,98 ---- *************** *** 109,113 **** - (double) getSamplingRate; - //- (int) getChannelCount; // moved to FOOSubstrate - (int) getDataFormat; - (int) getFileType; --- 104,107 ---- Index: FOOSoundStream.h =================================================================== RCS file: /cvsroot/foo/foo/libfoo/FOO/FOOSoundStream.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FOOSoundStream.h 30 Sep 2007 12:26:44 -0000 1.5 --- FOOSoundStream.h 9 Apr 2009 09:57:11 -0000 1.6 *************** *** 48,53 **** @interface FOOSoundStream : FOOSubstrate <NSCoding> { - // FOOSoundFile *_soundFile; - // generalized to FOOSubstrate FOOSubstrate *_substrate; int _channelNumber; --- 48,51 ---- *************** *** 55,64 **** - (FOOSoundStream *) initWithSubstrate: (FOOSubstrate *)substrate channel: (int) channel; - - /* to be removed - * now in FOOSubstrate.h - * - (BOOL) getSamples: (sample_t *)buffer offset: (long)off size: (long)size; - */ - - (long) size; - (double) getSamplingRate; --- 53,56 ---- Index: FOORegion.h =================================================================== RCS file: /cvsroot/foo/foo/libfoo/FOO/FOORegion.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FOORegion.h 28 Feb 2005 16:37:20 -0000 1.4 --- FOORegion.h 9 Apr 2009 09:57:11 -0000 1.5 *************** *** 45,49 **** @interface FOORegion : FOOSubstrate <NSCoding> { - /* Substrate *substrate; // statically typed */ FOOSubstrate *_substrate; long _offset; --- 45,48 ---- *************** *** 53,62 **** - (FOORegion *) initWithSubstrate: (FOOSubstrate *)substrate offset: (double)off size: (double)siz rev: (BOOL)rev; - - /* to be removed - * no in FOOSubstrate.h - * - (BOOL) getSamples: (sample_t *)buffer offset: (long)off size: (long)size; - */ - - (long) size; - (double) getSamplingRate; --- 52,55 ---- |