From: <cli...@li...> - 2011-07-28 12:04:22
|
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: * src/spvw_ctype.d (init_ctype): add "#ifdef LC_MESSAGES"... (cli...@li...) 2. clisp: * modules/syscalls/calls.c: when the portability is ensur... (cli...@li...) 3. clisp: (NO_CXX): removed unused variable (cli...@li...) 4. clisp: fix mingw compilation (cli...@li...) 5. clisp: * Makefile.devel (GNULIB_CORE): fix a typo: setsockopt was (cli...@li...) 6. clisp: regenerate for getsockopt, recvfrom, sendto (cli...@li...) 7. clisp: update from gnulib (cli...@li...) 8. clisp: typo (cli...@li...) 9. clisp: * src/lispbibl.d (ANSIC_error): export to clisp.h (cli...@li...) ---------------------------------------------------------------------- Message: 1 Date: Wed, 27 Jul 2011 15:01:18 +0000 From: cli...@li... Subject: clisp: * src/spvw_ctype.d (init_ctype): add "#ifdef LC_MESSAGES"... To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/6a379ca4df73 changeset: 15481:6a379ca4df736693e2b81c6de8aba30425471285 user: Sam Steingold <sd...@po...> date: 2011-07-27 10:29:42 -0400 description: * src/spvw_ctype.d (init_ctype): add "#ifdef LC_MESSAGES" for mingw diffstat: src/ChangeLog | 4 ++++ src/spvw_ctype.d | 2 ++ 2 files changed, 6 insertions(+), 0 deletions(-) ------------------------------ Message: 2 Date: Wed, 27 Jul 2011 18:40:48 +0000 From: cli...@li... Subject: clisp: * modules/syscalls/calls.c: when the portability is ensur... To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/bae4b39bbb40 changeset: 15482:bae4b39bbb4013ca6dbe2257787285faa489f7a9 user: Sam Steingold <sd...@po...> date: 2011-07-27 12:58:56 -0400 description: * modules/syscalls/calls.c: when the portability is ensured by gnulib, use ANSIC_error; when we use WIN32_NATIVE functions directly, use OS_error (POSIX:MKSTEMP) [WIN32_NATIVE]: use _get_osfhandle to convert the return value of gnulib mkstemp() to a windows file handle Include <shldisp.h> & <shlguid.h> for CLSID_ShellLink & IID_IShellLink diffstat: modules/syscalls/calls.c | 96 ++++++++++++++++++++++++++---------------------- modules/syscalls/test.tst | 36 ++++++++++-------- src/ChangeLog | 10 +++++ 3 files changed, 82 insertions(+), 60 deletions(-) ------------------------------ Message: 3 Date: Wed, 27 Jul 2011 18:40:50 +0000 From: cli...@li... Subject: clisp: (NO_CXX): removed unused variable To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/7c32ef52394b changeset: 15483:7c32ef52394bbef6bb3ac4bf9c9e9eaa53009404 user: Sam Steingold <sd...@po...> date: 2011-07-27 13:00:34 -0400 description: (NO_CXX): removed unused variable diffstat: modules/regexp/Makefile.in | 3 --- src/ChangeLog | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) ------------------------------ Message: 4 Date: Wed, 27 Jul 2011 18:40:52 +0000 From: cli...@li... Subject: clisp: fix mingw compilation To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/df8f717e809a changeset: 15484:df8f717e809a78c35949ecd25ba702c3074186de user: Sam Steingold <sd...@po...> date: 2011-07-27 13:09:20 -0400 description: fix mingw compilation * src/lispbibl.d (setjmp) [__MINGW32__]: do not define Include <winsock2.h> before <windows.h> to avoid a warning * src/stream.d (QueryInformationFile) [WIN32_NATIVE]: do not include <ddk/ntifs.h> here, instead ... * src/win32.d: include <winternl.h> & <ntstatus.h> (_exit): remove prototype (get it from gnulib) (lseek): undef before redefining (CoGetCurrentProcess): remove prototype, rely on above headers diffstat: src/ChangeLog | 11 +++++++++++ src/lispbibl.d | 13 +------------ src/stream.d | 1 - src/win32.d | 20 ++++---------------- 4 files changed, 16 insertions(+), 29 deletions(-) ------------------------------ Message: 5 Date: Wed, 27 Jul 2011 18:51:11 +0000 From: cli...@li... Subject: clisp: * Makefile.devel (GNULIB_CORE): fix a typo: setsockopt was To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/38ab4c17af81 changeset: 15485:38ab4c17af81924b23b91216142ece0417177b02 user: Sam Steingold <sd...@po...> date: 2011-07-27 14:48:34 -0400 description: * Makefile.devel (GNULIB_CORE): fix a typo: setsockopt was requested twice while getsockopt was not requested at all (GNULIB_IMPORTS): add recvfrom & sendto for rawsock * modules/rawsock/rawsock.c: use ANSIC_error instead of OS_error diffstat: Makefile.devel | 4 ++-- modules/rawsock/rawsock.c | 12 +++++++----- src/ChangeLog | 7 +++++++ 3 files changed, 16 insertions(+), 7 deletions(-) ------------------------------ Message: 6 Date: Wed, 27 Jul 2011 18:51:13 +0000 From: cli...@li... Subject: clisp: regenerate for getsockopt, recvfrom, sendto To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/0020927a1a74 changeset: 15486:0020927a1a742ac86e851d742fae723393d12864 user: Sam Steingold <sd...@po...> date: 2011-07-27 14:50:30 -0400 description: regenerate for getsockopt, recvfrom, sendto diffstat: src/aclocal.m4 | 39 ++++++++++++++++--- src/config.h.in | 9 ++++ src/configure | 89 ++++++++++++++++++++++++++++++++++++++++++++- src/gllib/Makefile.am | 29 ++++++++++++++- src/gllib/Makefile.in | 32 +++++++++------- src/gllib/getsockopt.c | 68 ++++++++++++++++++++++++++++++++++ src/gllib/recvfrom.c | 48 ++++++++++++++++++++++++ src/gllib/sendto.c | 41 ++++++++++++++++++++ src/glm4/gnulib-cache.m4 | 5 ++- src/glm4/gnulib-comp.m4 | 21 ++++++++++ 10 files changed, 357 insertions(+), 24 deletions(-) ------------------------------ Message: 7 Date: Wed, 27 Jul 2011 18:51:14 +0000 From: cli...@li... Subject: clisp: update from gnulib To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/83bd8b1179b4 changeset: 15487:83bd8b1179b4273edadcdc0c6577f99fbdce1e37 user: Sam Steingold <sd...@po...> date: 2011-07-27 14:50:43 -0400 description: update from gnulib diffstat: src/glm4/include_next.m4 | 14 ++++++++------ src/glm4/warn-on-use.m4 | 4 +++- 2 files changed, 11 insertions(+), 7 deletions(-) ------------------------------ Message: 8 Date: Wed, 27 Jul 2011 22:06:16 +0000 From: cli...@li... Subject: clisp: typo To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/218eebe37fae changeset: 15488:218eebe37fae146ae14e5c411c59b1b2f1416719 user: Sam Steingold <sd...@po...> date: 2011-07-27 17:55:31 -0400 description: typo diffstat: modules/syscalls/calls.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ------------------------------ Message: 9 Date: Wed, 27 Jul 2011 22:06:18 +0000 From: cli...@li... Subject: clisp: * src/lispbibl.d (ANSIC_error): export to clisp.h To: cli...@li... Message-ID: <hg....@vz...> Content-Type: text/plain; charset="us-ascii" details: http://clisp.hg.sourceforge.net/hgweb/clisp/clisp/clisp/rev/d4808e0ffc2a changeset: 15489:d4808e0ffc2a5b079bd7b1798ff3b03fc4cd83a4 user: Sam Steingold <sd...@po...> date: 2011-07-27 17:56:24 -0400 description: * src/lispbibl.d (ANSIC_error): export to clisp.h diffstat: src/ChangeLog | 4 ++++ src/lispbibl.d | 2 ++ 2 files changed, 6 insertions(+), 0 deletions(-) ------------------------------ ------------------------------------------------------------------------------ Got Input? Slashdot Needs You. Take our quick survey online. Come on, we don't ask for help often. Plus, you'll get a chance to win $100 to spend on ThinkGeek. http://p.sf.net/sfu/slashdot-survey ------------------------------ _______________________________________________ clisp-cvs mailing list cli...@li... https://lists.sourceforge.net/lists/listinfo/clisp-cvs End of clisp-cvs Digest, Vol 62, Issue 10 ***************************************** |