|
From: <cli...@li...> - 2010-09-29 18:18:35
|
Send clisp-cvs mailing list submissions to cli...@li... 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 cli...@li... You can reach the person managing the list at cli...@li... 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/modules/syscalls calls.c,1.316,1.317 (Sam Steingold) 2. clisp/src ChangeLog,1.7535,1.7536 (Sam Steingold) 3. clisp/modules/syscalls configure.in,1.93,1.94 (Sam Steingold) 4. clisp/src ChangeLog,1.7536,1.7537 (Sam Steingold) 5. clisp/modules/syscalls posix.lisp,1.98,1.99 (Sam Steingold) 6. clisp/modules/syscalls configure,1.119,1.120 (Sam Steingold) 7. clisp/src ChangeLog,1.7537,1.7538 makemake.in,1.949,1.950 (Sam Steingold) 8. clisp/modules/syscalls datemsk, NONE, 1.1 Makefile.in, 1.27, 1.28 calls.c, 1.317, 1.318 (Sam Steingold) 9. clisp/src ChangeLog,1.7538,1.7539 (Sam Steingold) 10. clisp/src ChangeLog,1.7539,1.7540 (Sam Steingold) 11. clisp/src ChangeLog,1.7540,1.7541 configure.in,1.190,1.191 (Sam Steingold) 12. clisp/modules/syscalls configure.in,1.94,1.95 (Sam Steingold) ---------------------------------------------------------------------- Message: 1 Date: Wed, 29 Sep 2010 13:45:24 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/modules/syscalls calls.c,1.316,1.317 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/modules/syscalls In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv10256/modules/syscalls Modified Files: calls.c Log Message: fix tm_to_lisp Index: calls.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/calls.c,v retrieving revision 1.316 retrieving revision 1.317 diff -u -d -r1.316 -r1.317 --- calls.c 29 Sep 2010 13:24:14 -0000 1.316 +++ calls.c 29 Sep 2010 13:45:22 -0000 1.317 @@ -549,12 +549,12 @@ /* ========================== time conversion ========================== */ /* call ENCODE-UNIVERSAL-TIME on struct tm and timezone */ static Values tm_to_lisp (struct tm *tm, object timezone) { - pushSTACK(fixnum(tm.tm_sec)); - pushSTACK(fixnum(tm.tm_min)); - pushSTACK(fixnum(tm.tm_hour)); - pushSTACK(fixnum(tm.tm_mday)); - pushSTACK(fixnum(1+tm.tm_mon)); - pushSTACK(fixnum(1900+tm.tm_year)); + pushSTACK(fixnum(tm->tm_sec)); + pushSTACK(fixnum(tm->tm_min)); + pushSTACK(fixnum(tm->tm_hour)); + pushSTACK(fixnum(tm->tm_mday)); + pushSTACK(fixnum(1+tm->tm_mon)); + pushSTACK(fixnum(1900+tm->tm_year)); pushSTACK(timezone); funcall(S(encode_universal_time),7); } ------------------------------ Message: 2 Date: Wed, 29 Sep 2010 13:53:12 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7535,1.7536 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv12562/src Modified Files: ChangeLog Log Message: call AC_PROG_YACC for getdate Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7535 retrieving revision 1.7536 diff -u -d -r1.7535 -r1.7536 --- ChangeLog 29 Sep 2010 13:39:41 -0000 1.7535 +++ ChangeLog 29 Sep 2010 13:53:10 -0000 1.7536 @@ -5,7 +5,7 @@ (build-aux-update): get ylwrap from automake * modules/syscalls/calls.c (tm_to_lisp): extract from STRING-TIME (POSIX:GETDATE, xalloc_die): implement - * modules/syscalls/configure.in: call gl_GETDATE + * modules/syscalls/configure.in: call gl_GETDATE & AC_PROG_YACC * modules/syscalls/gllib/c-ctype.c, modules/syscalls/gllib/c-ctype.h: * modules/syscalls/gllib/getdate.h, modules/syscalls/gllib/getdate.y: * modules/syscalls/gllib/gettext.h, modules/syscalls/gllib/gettime.c: ------------------------------ Message: 3 Date: Wed, 29 Sep 2010 13:53:12 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/modules/syscalls configure.in,1.93,1.94 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/modules/syscalls In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv12562/modules/syscalls Modified Files: configure.in Log Message: call AC_PROG_YACC for getdate Index: configure.in =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/configure.in,v retrieving revision 1.93 retrieving revision 1.94 diff -u -d -r1.93 -r1.94 --- configure.in 29 Sep 2010 13:24:14 -0000 1.93 +++ configure.in 29 Sep 2010 13:53:10 -0000 1.94 @@ -12,6 +12,7 @@ CL_MODULE_COMMON_CHECKS() AM_INIT_AUTOMAKE([no-define]) AC_PROG_RANLIB +AC_PROG_YACC sc_gl_EARLY sc_gl_INIT ------------------------------ Message: 4 Date: Wed, 29 Sep 2010 13:55:59 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7536,1.7537 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv13376/src Modified Files: ChangeLog Log Message: export GETDATE Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7536 retrieving revision 1.7537 diff -u -d -r1.7536 -r1.7537 --- ChangeLog 29 Sep 2010 13:53:10 -0000 1.7536 +++ ChangeLog 29 Sep 2010 13:55:57 -0000 1.7537 @@ -5,6 +5,7 @@ (build-aux-update): get ylwrap from automake * modules/syscalls/calls.c (tm_to_lisp): extract from STRING-TIME (POSIX:GETDATE, xalloc_die): implement + * modules/syscalls/posix.lisp: export GETDATE * modules/syscalls/configure.in: call gl_GETDATE & AC_PROG_YACC * modules/syscalls/gllib/c-ctype.c, modules/syscalls/gllib/c-ctype.h: * modules/syscalls/gllib/getdate.h, modules/syscalls/gllib/getdate.y: ------------------------------ Message: 5 Date: Wed, 29 Sep 2010 13:55:59 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/modules/syscalls posix.lisp,1.98,1.99 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/modules/syscalls In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv13376/modules/syscalls Modified Files: posix.lisp Log Message: export GETDATE Index: posix.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/posix.lisp,v retrieving revision 1.98 retrieving revision 1.99 diff -u -d -r1.98 -r1.99 --- posix.lisp 21 Sep 2010 16:09:48 -0000 1.98 +++ posix.lisp 29 Sep 2010 13:55:57 -0000 1.99 @@ -9,7 +9,7 @@ (:export #:resolve-host-ipaddr #:bogomips #:loadavg #:mkstemp #:mkdtemp #+unix #:wait #:stream-lock #:with-stream-lock #:duplicate-handle #:copy-file - #:file-owner #:physical-memory #:stream-options #:string-time + #:file-owner #:physical-memory #:stream-options #:string-time #:getdate #:version-compare #:version< #:version<= #:version> #:version>= #+(or :win32 :cygwin) #:file-properties #+unix #:make-xterm-io-stream #:priority #:openlog #:setlogmask #:syslog #:closelog #:process-id #:getppid ------------------------------ Message: 6 Date: Wed, 29 Sep 2010 13:56:38 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/modules/syscalls configure,1.119,1.120 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/modules/syscalls In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv13745/modules/syscalls Modified Files: configure Log Message: regenerate with C_PROG_YACC Index: configure =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/configure,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- configure 29 Sep 2010 13:40:09 -0000 1.119 +++ configure 29 Sep 2010 13:56:36 -0000 1.120 @@ -881,13 +881,13 @@ GNULIB_DUP2 GNULIB_CLOSE GNULIB_CHOWN -YFLAGS -YACC HAVE__BOOL STDBOOL_H LIB_CLOCK_GETTIME GL_COND_LIBTOOL_FALSE GL_COND_LIBTOOL_TRUE +YFLAGS +YACC RANLIB am__fastdepCC_FALSE am__fastdepCC_TRUE @@ -1642,12 +1642,10 @@ you have headers in a nonstandard directory <include dir> CPP C preprocessor YACC The `Yet Another C Compiler' implementation to use. Defaults to - `bison -y'. Values other than `bison -y' will most likely break - on most systems. - YFLAGS YFLAGS contains the list arguments that will be passed by - default to Bison. This script will default YFLAGS to the empty - string to avoid a default value of `-d' given by some make - applications. + the first program found out of: `bison -y', `byacc', `yacc'. + YFLAGS The list of arguments that will be passed by default to $YACC. + This script will default YFLAGS to the empty string to avoid a + default value of `-d' given by some make applications. Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -5130,6 +5128,49 @@ RANLIB="$ac_cv_prog_RANLIB" fi +for ac_prog in 'bison -y' byacc +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_YACC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$YACC"; then + ac_cv_prog_YACC="$YACC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_YACC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +YACC=$ac_cv_prog_YACC +if test -n "$YACC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 +$as_echo "$YACC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$YACC" && break +done +test -n "$YACC" || YACC="yacc" + # Code from module alignof: ------------------------------ Message: 7 Date: Wed, 29 Sep 2010 14:46:41 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7537,1.7538 makemake.in,1.949,1.950 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv24620/src Modified Files: ChangeLog makemake.in Log Message: * src/makemake.in (lisp${SHREXT}, lisp${LEXE}): put ${GLLIB_A} before $(OBJECTS) so that gllib is rebuilt before compiling charstrg.d Index: makemake.in =================================================================== RCS file: /cvsroot/clisp/clisp/src/makemake.in,v retrieving revision 1.949 retrieving revision 1.950 diff -u -d -r1.949 -r1.950 --- makemake.in 28 Sep 2010 20:40:40 -0000 1.949 +++ makemake.in 29 Sep 2010 14:46:39 -0000 1.950 @@ -2632,7 +2632,7 @@ # linker, and when creating lisp.dll, we must give $(LIBS) to it. # Some unixes (SHREXT=.so) need -fPIC when compiling clisp core for a DLL, # which loses performance; besides, we do not need lisp.so on unix anyway. - echol "lisp${SHREXT} : \$(OBJECTS) modules.o ${GLLIB_A}" + echol "lisp${SHREXT} : ${GLLIB_A} \$(OBJECTS) modules.o" CLISP_DEF=" lisp.def" XCC_CREATESHARED_=`echo ${XCC_CREATESHARED} | sed -e 's/\\${/\\\\$\\\\(/g' -e 's/}/\\\\)/g'` echotab "`eval \"lib=\$\@; libs=\$^\ \$\(LIBS\); echo ${XCC_CREATESHARED_}\"`" @@ -2698,7 +2698,7 @@ } fi -echol "lisp${LEXE} : \$(OBJECTS) ${GLLIB_A} modules${TOBJ} ${XCL_GETTEXTLIB} data" +echol "lisp${LEXE} : ${GLLIB_A} \$(OBJECTS) modules${TOBJ} ${XCL_GETTEXTLIB} data" if [ $HOS != win32 ] ; then if [ $XCC_GCC = true -a -n "$SOLARIS_LINKING" ] ; then # Dynamically linking on Solaris 2.[23] is a pain. Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7537 retrieving revision 1.7538 diff -u -d -r1.7537 -r1.7538 --- ChangeLog 29 Sep 2010 13:55:57 -0000 1.7537 +++ ChangeLog 29 Sep 2010 14:46:38 -0000 1.7538 @@ -1,3 +1,8 @@ +2010-09-29 Sam Steingold <sd...@gn...> + + * makemake.in (lisp${SHREXT}, lisp${LEXE}): put ${GLLIB_A} before + $(OBJECTS) so that gllib is rebuilt before compiling charstrg.d + 2010-09-28 Sam Steingold <sd...@gn...> implement POSIX:GETDATE using gnulib ------------------------------ Message: 8 Date: Wed, 29 Sep 2010 15:27:21 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/modules/syscalls datemsk, NONE, 1.1 Makefile.in, 1.27, 1.28 calls.c, 1.317, 1.318 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/modules/syscalls In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv2797/modules/syscalls Modified Files: Makefile.in calls.c Added Files: datemsk Log Message: * modules/syscalls/calls.c (module__syscalls__init_function_2): if DATEMSK is not set, point it to the inluded file ... * modules/syscalls/datemsk: add (based on http://www.opengroup.org/onlinepubs/009695399/functions/getdate.html) * modules/syscalls/Makefile.in (GENERATED): add datemsk (datemsk): new target Index: Makefile.in =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/Makefile.in,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- Makefile.in 10 Jun 2010 15:07:01 -0000 1.27 +++ Makefile.in 29 Sep 2010 15:27:18 -0000 1.28 @@ -17,7 +17,7 @@ SHELL = /bin/sh -GENERATED = calls.o bogomips.o posix.fas libgnu_sc.a preload.lisp +GENERATED = calls.o bogomips.o posix.fas libgnu_sc.a preload.lisp datemsk DISTRIBFILES = link.sh Makefile $(GENERATED) \ $(srcdir)/posix.lisp $(srcdir)/README distribdir = @@ -44,6 +44,9 @@ preload.lisp : $(srcdir)/preload.lisp $(LN_S) $(srcdir)/preload.lisp . +datemsk : $(srcdir)/datemsk + $(LN_S) $(srcdir)/datemsk . + am--refresh : # syscalls relies on src/gllib, so we must also include files in the build dir Index: calls.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/calls.c,v retrieving revision 1.317 retrieving revision 1.318 diff -u -d -r1.317 -r1.318 --- calls.c 29 Sep 2010 13:45:22 -0000 1.317 +++ calls.c 29 Sep 2010 15:27:18 -0000 1.318 @@ -5838,4 +5838,15 @@ #if defined(HAVE_FFI) init_stdio(); #endif + /* if DATEMSK is not set, set it to the clisp-supplied value */ + if (NULL == getenv("DATEMSK")) { + with_string_0(GLO(lib_dir), GLO(pathname_encoding), ldz, { + char datemsk[MAXPATHLEN]; + strcpy(datemsk,ldz); + if (ldz[ldz_len-1] == '/') + strcat(datemsk,"syscalls/datemsk"); + else strcat(datemsk,"/syscalls/datemsk"); + setenv("DATEMSK",datemsk); + }); + } } --- NEW FILE: datemsk --- %m %A %B %d, %Y, %H:%M:%S %A %B %m/%d/%y %I %p %d,%m,%Y %H:%M %m/%d/%y %d.%m.%y %y-%m-%d %A %H:%M:%S %a %b %a %b %a %Y %a %H %b %H:%S %H:%M ------------------------------ Message: 9 Date: Wed, 29 Sep 2010 15:27:21 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7538,1.7539 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv2797/src Modified Files: ChangeLog Log Message: * modules/syscalls/calls.c (module__syscalls__init_function_2): if DATEMSK is not set, point it to the inluded file ... * modules/syscalls/datemsk: add (based on http://www.opengroup.org/onlinepubs/009695399/functions/getdate.html) * modules/syscalls/Makefile.in (GENERATED): add datemsk (datemsk): new target Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7538 retrieving revision 1.7539 diff -u -d -r1.7538 -r1.7539 --- ChangeLog 29 Sep 2010 14:46:38 -0000 1.7538 +++ ChangeLog 29 Sep 2010 15:27:19 -0000 1.7539 @@ -1,5 +1,14 @@ 2010-09-29 Sam Steingold <sd...@gn...> + * modules/syscalls/calls.c (module__syscalls__init_function_2): if + DATEMSK is not set, point it to the inluded file ... + * modules/syscalls/datemsk: add (based on + http://www.opengroup.org/onlinepubs/009695399/functions/getdate.html) + * modules/syscalls/Makefile.in (GENERATED): add datemsk + (datemsk): new target + +2010-09-29 Sam Steingold <sd...@gn...> + * makemake.in (lisp${SHREXT}, lisp${LEXE}): put ${GLLIB_A} before $(OBJECTS) so that gllib is rebuilt before compiling charstrg.d ------------------------------ Message: 10 Date: Wed, 29 Sep 2010 15:27:40 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7539,1.7540 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv2901 Modified Files: ChangeLog Log Message: typo Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7539 retrieving revision 1.7540 diff -u -d -r1.7539 -r1.7540 --- ChangeLog 29 Sep 2010 15:27:19 -0000 1.7539 +++ ChangeLog 29 Sep 2010 15:27:37 -0000 1.7540 @@ -1,7 +1,7 @@ 2010-09-29 Sam Steingold <sd...@gn...> * modules/syscalls/calls.c (module__syscalls__init_function_2): if - DATEMSK is not set, point it to the inluded file ... + DATEMSK is not set, point it to the included file ... * modules/syscalls/datemsk: add (based on http://www.opengroup.org/onlinepubs/009695399/functions/getdate.html) * modules/syscalls/Makefile.in (GENERATED): add datemsk ------------------------------ Message: 11 Date: Wed, 29 Sep 2010 18:18:26 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7540,1.7541 configure.in,1.190,1.191 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv7780/src Modified Files: ChangeLog configure.in Log Message: do not call macros which are already called by gl_INIT Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7540 retrieving revision 1.7541 diff -u -d -r1.7540 -r1.7541 --- ChangeLog 29 Sep 2010 15:27:37 -0000 1.7540 +++ ChangeLog 29 Sep 2010 18:18:24 -0000 1.7541 @@ -1,5 +1,10 @@ 2010-09-29 Sam Steingold <sd...@gn...> + * configure.in, modules/syscalls/configure.in: + do not call macros which are already called by gl_INIT + +2010-09-29 Sam Steingold <sd...@gn...> + * modules/syscalls/calls.c (module__syscalls__init_function_2): if DATEMSK is not set, point it to the included file ... * modules/syscalls/datemsk: add (based on Index: configure.in =================================================================== RCS file: /cvsroot/clisp/clisp/src/configure.in,v retrieving revision 1.190 retrieving revision 1.191 diff -u -d -r1.190 -r1.191 --- configure.in 28 Sep 2010 19:26:44 -0000 1.190 +++ configure.in 29 Sep 2010 18:18:24 -0000 1.191 @@ -29,7 +29,6 @@ RSE_BOLD BOLD_MSG([check for host type]) AC_CANONICAL_HOST -gl_HOST_CPU_C_ABI CL_DECOLONIZE BOLD_MSG([checks for programs]) dnl @@ -55,7 +54,6 @@ CL_CC_CPLUSPLUS dnl sets variable CC_CPLUSPLUS CL_CC_NEED_DEEMA dnl sets variable CC_NEED_DEEMA CL_AS_UNDERSCORE dnl sets variable AS_UNDERSCORE, DEFS ASM_UNDERSCORE -gl_SOCKETS dnl sets LIBSOCKET CL_CC_WORKS dnl final CC check dnl BOLD_MSG([check for add-ons]) @@ -83,7 +81,6 @@ dnl BOLD_MSG([checks for typedefs]) CL_CADDR_T dnl DEFS CADDR_T -gl_TYPE_SOCKLEN_T dnl DEFS socklen_t AC_CHECK_SIZEOF([off_t]) AC_CHECK_SIZEOF(struct timeval,,[#include <stdio.h> #include <sys/time.h>]) @@ -111,7 +108,6 @@ CL_RLIMIT dnl DEFS HAVE_GETRLIMIT, HAVE_SETRLIMIT, RLIMIT_RESOURCE_T, SETRLIMIT_CONST AC_FUNC_VFORK dnl DEFS HAVE_VFORK_H, vfork CL_WAITPID dnl DEFS PID_T -gl_SYS_WAIT_H CL_RUSAGE dnl DEFS HAVE_SYS_RESOURCE_H, HAVE_GETRUSAGE, RUSAGE_WHO_T, HAVE_SYS_TIMES_H CL_STAT dnl DEFS HAVE_LSTAT etc CL_ELOOP dnl DEFS ELOOP_VALUE ------------------------------ Message: 12 Date: Wed, 29 Sep 2010 18:18:26 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/modules/syscalls configure.in,1.94,1.95 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/modules/syscalls In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv7780/modules/syscalls Modified Files: configure.in Log Message: do not call macros which are already called by gl_INIT Index: configure.in =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/configure.in,v retrieving revision 1.94 retrieving revision 1.95 diff -u -d -r1.94 -r1.95 --- configure.in 29 Sep 2010 13:53:10 -0000 1.94 +++ configure.in 29 Sep 2010 18:18:24 -0000 1.95 @@ -54,17 +54,6 @@ crypt encrypt setkey GlobalMemoryStatusEx dnl gethostid sethostid getdomainname setdomainname nftw) AC_FUNC_CHOWN -gl_FUNC_MKTIME -gl_FUNC_GNU_STRFTIME -gl_FUNC_STRPTIME -gl_TIME_MODULE_INDICATOR([strptime]) -gl_GETDATE -gl_FUNC_STRVERSCMP -gl_STRING_MODULE_INDICATOR([strverscmp]) -gl_FUNC_UNAME -gl_SYS_UTSNAME_MODULE_INDICATOR([uname]) -gl_FUNC_STRERROR -gl_STRING_MODULE_INDICATOR([strerror]) AC_CHECK_DECLS([signgam],,,[#include <math.h>]) CL_STAT if test "$ac_cv_header_sys_statvfs_h" = "yes"; then ------------------------------ ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev ------------------------------ _______________________________________________ clisp-cvs mailing list cli...@li... https://lists.sourceforge.net/lists/listinfo/clisp-cvs End of clisp-cvs Digest, Vol 53, Issue 35 ***************************************** |