Re: Buildbot failures

2006-12-26 Thread Eric Blake
. My guess is that this patch, which I am applying, will solve the issue for all the regressions you saw (I only tested it on the acl module). 2006-12-26 Eric Blake [EMAIL PROTECTED] * modules/absolute-header: New module. * modules/fcntl (Depends-on): Depend

clean-temp and large files

2006-12-26 Thread Eric Blake
. As a result, there is a regression in M4 1.4.8 (1.4.7 used the mkstemp module, but 1.4.8 switched to clean-temp). -- Eric Blake

Re: proposed patches to mbchar, mbswidth, wcwidth to use new wctype module

2006-12-26 Thread Eric Blake
... no, but bare wctype.h does not work That looks fishy to me; I wonder if there is some broken logic in wctype.m4. -- Eric Blake

Re: coreutils 6.6 fails to compile on IRIX 5.3

2006-12-26 Thread Eric Blake
use in this function) fnmatch.c:291: warning: implicit declaration of function `mbsrtowcs' fnmatch.c:294: warning: implicit declaration of function `mbsinit' make[2]: *** [fnmatch.o] Error 1 -- Eric Blake

Re: coreutils 6.6 fails to compile on IRIX 5.3

2006-12-27 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 12/26/2006 5:17 PM: We could put this into every source file that includes wctype.h, but I think it's cleaner to have a wctype module that handles wctype gotchas like this. 2006-12-21 Paul Eggert eggert at cs.ucla.edu

Re: [PATCH] modules/error: depend on progname module

2006-12-27 Thread Eric Blake
! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFk0bJ84KuGfSFAYARAgO4AJ4mK6x5Vft6cjV5VEJJkAa3+ZZBQQCgxulc

Re: changing configure to default to gcc -g -O2 -fwrapv ...

2006-12-30 Thread Eric Blake
be made robust against overflow without having to rely on tedious code audits. In my opinion, the expectation of sane overflow semantics is just too pervasive in existing code to be able to audit without compiler assistance. - -- Don't work too hard, make some time for fun as well! Eric Blake

Re: coreutils bootstrapping issue on non-GNU platforms

2006-12-30 Thread Eric Blake
of thumb is to install the last stable released version before trying to bootstrap a CVS version. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net

It's 2007

2007-01-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 So I'm installing this... 2007-01-01 Eric Blake [EMAIL PROTECTED] * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year. Index: lib/version-etc.c === RCS file: /sources

Re: gnulib-tool: indicating the presence of gnulib modules

2007-01-02 Thread Eric Blake
, then using sed to convert GNULIB_ into the correct prefix while copying files into place? Is it worth this level of separation to allow cleaner use of competing gnulib libraries in the same config.h? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED

Re: Building m4 on BSDI 4.0.1

2007-01-03 Thread Eric Blake
gnulib's mbchar_.h so that it can work around your platform's broken wchar.h. Then things will just work out of the box for you, without you having to prime the cache. More in my followup to your other message. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL

Re: clean-temp and large files

2007-01-03 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 12/26/2006 2:34 PM: Is there any reason that using the clean-temp module does not AC_REQUIRE ([AC_SYS_LARGEFILE]) in the configure script? Without that, it is possible on some hosts that temporary files

Re: wctype simplification for IRIX 5.3

2007-01-06 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 1/6/2007 11:15 AM: This is causing other problems. Right now, on cygwin, I'm getting the following failures in both coreutils and m4: gcc -I. -I../../lib -g2 -Wall -Werror -MT mbchar.o -MD -MP -MF .deps

Re: wctype simplification for IRIX 5.3

2007-01-06 Thread Eric Blake
[2]: *** [mbchar.o] Error 1 I'm still trying to investigate this further. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg

Re: Building m4 on BSDI 4.0.1

2007-01-08 Thread Eric Blake
must be included before wchar.h. BSD/OS 4.1 has a bug: stdio.h and time.h must be included before wchar.h. BSDI 4.0.1 has a bug: stddef.h must be included before wchar.h. */ # include stddef.h # include stdio.h # include time.h # include wchar.h wchar_t w; 2007-01-08 Eric Blake

Re: Building m4 on BSDI 4.0.1

2007-01-09 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Paul Eggert on 1/9/2007 12:23 AM: Eric Blake [EMAIL PROTECTED] writes: BSD/OS 4.1 has a bug: stdio.h and time.h must be included before - wchar.h. */ + wchar.h. + BSDI 4.0.1 has a bug: stddef.h must be included before

Re: Building m4 on BSDI 4.0.1

2007-01-10 Thread Eric Blake
by configure is generally more useful than the captured output of configure (albeit longer, so it is often worth compressing it before sending it to a mailing list). I'm installing the following to gnulib, at which point I'll regenerate another M4 private snapshot for Chris to try. 2007-01-10 Eric Blake

Re: Building m4 on BSDI 4.0.1

2007-01-11 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 1/10/2007 11:24 AM: Still not enough; Chris reported another failure offlist. wctype.m4's AC_SUBST (HAVE_WINT_T) was resulting in an empty string, even though wint_t.m4's AC_DEFINE(HAVE_WINT_T, 1, ...) was now

Re: Building m4 on BSDI 4.0.1

2007-01-12 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Paul Eggert on 1/11/2007 10:39 AM: Eric Blake [EMAIL PROTECTED] writes: At this point, I really think it is easier to generate a replacement wchar.h that takes care of the intricacies, Yes, I'd like a wchar module that provides

Re: Building m4 on BSDI 4.0.1

2007-01-12 Thread Eric Blake
Bruno Haible bruno at clisp.org writes: 2007-01-12 Eric Blake ebb9 at byu.net Provide a robust wchar.h. Further simplifications are now possible in other modules, but not included here. Thanks. Looks fine, except 2 nits: OK, checked in with those nits fixed, along

Re: Building m4 on BSDI 4.0.1

2007-01-12 Thread Eric Blake
prerequisite headers. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http

Re: xreadlink.c initial buffer size guesstimate

2007-01-13 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Liyang HU on 1/13/2007 4:48 PM: On Fri, Jan 12, 2007 at 08:30:24AM -0700, Eric Blake wrote: why should you expect sane behavior from tools that assume POSIX? If xreadlink() assumed POSIX, it would allocate a fixed buffer of 256 bytes

assume wchar.h

2007-01-16 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 OK to apply this patch, which makes several modules depend on the recently added wchar module? 2007-01-16 Eric Blake [EMAIL PROTECTED] * modules/fnmatch (Depends-on): Depend on wchar. * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume

Re: assume wchar.h

2007-01-16 Thread Eric Blake
Bruno Haible bruno at clisp.org writes: 2007-01-16 Eric Blake ebb9 at byu.net * modules/fnmatch (Depends-on): Depend on wchar. * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume wchar.h. Looks good to me. (The 'stdint' part will make us notice quickly if there's still some

Re: Status of the win32 gettimeofday module

2007-01-18 Thread Eric Blake
Paul Eggert eggert at CS.UCLA.EDU writes: The main idea here is that we should try to avoid separate include files like gettimeofday.h for declarations that POSIX says should be in a standard file like sys/time.h. Instead, we should patch sys/time.h by wrapping it; that way the user code

Re: Status of the win32 gettimeofday module

2007-01-19 Thread Eric Blake
some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFsMw184KuGfSFAYARAhYKAJ4tVjrL8iLmR

Re: gnulib-tool: make --with-tests more useful

2007-01-27 Thread Eric Blake
when compiling where a cross-emulator is also available, can all run cross-compiled binaries. That said, your patch is still the correct thing to do. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG

Re: enforcing the use of string.h related modules

2007-01-31 Thread Eric Blake
. See the Autoconf documentation. make: *** [../configure] Error 1 Contrary to the Changelog entry, I don't see gl_STRING_MODULE_INDICATOR defined in string_h.m4. -- Eric Blake

Re: enforcing the use of string.h related modules

2007-01-31 Thread Eric Blake
Eric Blake ebb9 at byu.net writes: I see that while I was typing this, you checked in your original proposed change. But with your patch applied, I get the following: Another one: gcc -std=gnu99 -I. -I/usr/local/include -g2 -Wall -Werror -MT mountlist.o - MD -MP -MF .deps

Re: enforcing the use of string.h related modules

2007-02-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Paul Eggert on 2/1/2007 1:03 AM: Eric Blake [EMAIL PROTECTED] writes: * modules/regex (Depends-on): Add mempcpy. ... * modules/mountlist (Depends-on): Add strstr The other parts of your patch might be needed

Re: enforcing the use of string.h related modules

2007-02-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Paul Eggert on 2/1/2007 1:03 AM: Eric Blake [EMAIL PROTECTED] writes: * modules/regex (Depends-on): Add mempcpy. ... * modules/mountlist (Depends-on): Add strstr The other parts of your patch might be needed

Re: enforcing the use of string.h related modules

2007-02-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 1/31/2007 10:00 PM: Also, I noticed that the dependency of string.h: string_h is not strong enough - fixing your typo changed configure from declaring GNULIB_strcase to GNULIB_STRCASE, but did not regenerate string.h

Re: [bug-gnulib] enforcing the use of string.h related modules

2007-02-02 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Bruno Haible on 2/1/2007 10:39 AM: Eric Blake wrote: Does this look correct to apply? The MKDIR_P changes are ok but are not yet necessary, as there is only 1 module that creates the 'arpa' subdirectory and only 1 module

Re: enforcing the use of string.h related modules

2007-02-02 Thread Eric Blake
Paul Eggert eggert at CS.UCLA.EDU writes: Eric Blake ebb9 at byu.net writes: * modules/mountlist (Depends-on): Add strstr The other parts of your patch might be needed, but these aren't quite right. As far as I can tell, regex does not depend on mempcpy, nor does mountlist depend

Re: proposed 'string' module for gnulib

2007-02-02 Thread Eric Blake
, and caused a failure on cygwin compiling tar using gcc 3.4.4: In file included from strchrnul.c:19: ./string.h:96: error: parse error before __dst make[3]: *** [strchrnul.o] Error 1 Fixed thusly: 2007-02-02 Eric Blake [EMAIL PROTECTED] * lib/strchrnul.c: Always include config.h

Re: AIX 4.3.3 IBM C compiler patch for m4-1.4.8

2007-02-04 Thread Eric Blake
. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: AIX 4.3.3 IBM C compiler patch for m4-1.4.8

2007-02-04 Thread Eric Blake
will have to change m4 to avoid bool bitfields. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG

os/2 frexp [was: snapshot in preparation for m4 1.4.12]

2008-08-10 Thread Eric Blake
=0053 fs=150b gs= efl=00010206 eax=00010420 ebx=0011ff98 ecx=17d4d460 edx= edi= esi= Process dumping was disabled, use DUMPPROC / PROCDUMP to enable it. FAIL: test-signbit.exe - -- Don't work too hard, make some time for fun as well! Eric Blake

os/2 child process status [was: snapshot in preparation for m4 1.4.12]

2008-08-10 Thread Eric Blake
-*' exits with status 1, only that it exits non-zero. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG

test-c-stack and C89 [was: snapshot in preparation for m4 1.4.12]

2008-08-11 Thread Eric Blake
time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: os/2 child process status [was: snapshot in preparation for m4 1.4.12]

2008-08-11 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 8/10/2008 10:26 PM: | | Checking ./182.mkstemp | ... | | -1 | | +256 | | Testsuite bug; I'll have to patch doc/m4.texinfo. Basically, I cannot | assume that a failed 'test -f foo-*' exits with status 1, only

Re: os/2 c-stack [was: snapshot in preparation for m4 1.4.12]

2008-08-11 Thread Eric Blake
stack is: $ echo 'define(a,a(a))a' | u:/m4-1.4.11.34-9ecd/src/m4 \ ~-L0 -dtx --debugfile=trace $ tail trace - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key

Re: diversion failure [was: snapshot in preparation for m4 1.4.12]

2008-08-11 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [re-adding gnulib] According to Alain Guibert on 8/11/2008 3:16 PM: | Hello Eric, thanks for your support, | | On Monday, August 11, 2008 at 7:00:34 -0600, Eric Blake wrote: | | platforms where fopen(file,a+) opened at the end instead

Re: os/2 c-stack [was: snapshot in preparation for m4 1.4.12]

2008-08-11 Thread Eric Blake
an fflush prior to calling abort (or maybe your logs only captured stdout, and omitted stderr?) - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net

Re: snapshot in preparation for m4 1.4.12

2008-08-12 Thread Eric Blake
is this on? There are various older platforms with known ungetc() bugs when you unget a different character than was read. However, m4 is unaffected, as it does not use ungetc in this manner. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE

Re: gethostname

2008-08-13 Thread Eric Blake
. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: snapshot in preparation for m4 1.4.12

2008-08-13 Thread Eric Blake
hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

sa_sigaction [was: snapshot in preparation for m4 1.4.12]

2008-08-13 Thread Eric Blake
| yes | yes | 2.5 it looks like c-stack will work with libsigsegv, once we downgrade the compiler error on sa_sigaction to a warning. -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] signature.asc Description: OpenPGP digital signature

Re: sa_sigaction [was: snapshot in preparation for m4 1.4.12]

2008-08-15 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Tom G. Christensen on 8/14/2008 9:03 AM: On Wed, Aug 13, 2008 at 08:14:43PM -0600, Eric Blake wrote: According to Tom G. Christensen on 8/13/2008 2:45 PM: Weird. So Irix 5.3 has sigaction, but not sa_sigaction? What's sadder is we

Re: sa_sigaction [was: snapshot in preparation for m4 1.4.12]

2008-08-17 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 8/15/2008 10:15 PM: At any rate, I'm still working on a patch that makes lib/signal.in.h add the #define for sa_sigaction if HAVE_SIGACTION !HAVE_STRUCT_SIGACTION_SA_SIGACTION. I'll post a snapshot for you to try once

Re: sa_sigaction

2008-08-17 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Bruno Haible on 8/17/2008 9:43 AM: Eric Blake wrote: At any rate, I'm still working on a patch that makes lib/signal.in.h add the #define for sa_sigaction if HAVE_SIGACTION !HAVE_STRUCT_SIGACTION_SA_SIGACTION. I'll post a snapshot

Re: diversion failure [was: snapshot in preparation for m4 1.4.12]

2008-08-19 Thread Eric Blake
? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: snapshot in preparation for m4 1.4.12

2008-08-19 Thread Eric Blake
are skipped? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

strverscmp

2008-08-19 Thread Eric Blake
98dc152be970fe2a64d17f17850cac4fc69ab00d Mon Sep 17 00:00:00 2001 From: Eric Blake [EMAIL PROTECTED] Date: Tue, 19 Aug 2008 09:23:40 -0600 Subject: [PATCH] strverscmp: migrate from strverscmp.h to string.h * modules/string (Makefile.am): Add new hooks. * modules/strverscmp (Files): Remove strverscmp.h. (Depends

Re: strverscmp

2008-08-19 Thread Eric Blake
Eric Blake ebb9 at byu.net writes: Coreutils recently got bitten by the fact that developers on GNU/Linux machines often don't realize that they needed #include strverscmp.h. This fixes it, and adds a unit test. Jim, okay to apply? Also available at 'git pull git://repo.or.cz/gnulib

Re: strverscmp

2008-08-19 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Bruno Haible on 8/19/2008 5:03 PM: Eric Blake wrote: whether or not you buy my argument that gnulib should make Linux development easier by intentionally adding non-POSIX extensions into string.h glibc has strverscmp() declared

c-stack sys/resource.h [was: m4-1.4.11.34-9ecd build feedback]

2008-08-19 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [adding bug-gnulib] According to Eric Blake on 8/10/2008 9:46 PM: According to Nelson H. F. Beebe on 8/7/2008 11:20 AM: === Nelson reported a build failure on a FreeBSD 5.0 machine: [the report was off-list, because it included other

Re: git workflow

2008-08-21 Thread Eric Blake
you can use: PS1='...$(__git_ps1 (%s))...' - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG

Re: gl_FUNC_OBSTACK_PRINTF_POSIX

2008-08-22 Thread Eric Blake
as obvious. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: gl_FUNC_OBSTACK_PRINTF_POSIX

2008-08-22 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Andreas Schwab on 8/22/2008 1:29 PM: Eric Blake [EMAIL PROTECTED] writes: Please apply; that should count as obvious. Sorry, I don't have write access. OK, done. You've made quite a few gnulib contributions; it's time to think

Re: `count-one-bits' - LGPLv2+

2008-08-22 Thread Eric Blake
hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Updated INSTALL from Autoconf

2008-08-22 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karl, do you have a cron job for grabbing upstream changes from Autoconf to gnulib's doc/INSTALL? There were two recent patches in Autoconf that would be nice to have: - -- Don't work too hard, make some time for fun as well! Eric Blake

Re: snapshot in preparation for m4 1.4.12

2008-08-22 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 8/19/2008 6:50 AM: SKIP: test-lock SKIP: test-tls Expected; these tests are only run if you use ./configure --enable-threads (generally overkill for m4, since it does not need threading). Bruno, can I apply

Re: snapshot in preparation for m4 1.4.12

2008-08-23 Thread Eric Blake
to frexp), and stepping through that? Also, is rpl_frexp in use, or is gnulib deferring to your native frexp? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key

Re: Using gnulib with -pedantic, I get many warnings about #include_next

2008-08-24 Thread Eric Blake
, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: Using gnulib with -pedantic, I get many warnings about #include_next

2008-08-25 Thread Eric Blake
PROTECTED] Fortunately gnulib does not use __STDC__ in any of these header files any more. I agree that such a patch would be useful. Do you have one pending? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version

Re: os/2 c-stack [was: snapshot in preparation for m4 1.4.12]

2008-08-25 Thread Eric Blake
a new m4 snapshot with all the recent gnulib fixes later today. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using

Re: Updated INSTALL from Autoconf

2008-08-25 Thread Eric Blake
$(abs_srcdir)/INSTALL: $(top_srcdir)/doc/install.texi $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -o $@ \ $(top_srcdir)/doc/install.texi where MAKEINFOFLAGS is blank by default. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED

Re: GNUmakefile: git-version-gen, maintainer-check, install

2008-08-26 Thread Eric Blake
the message and Ctrl-C the build, while an unattended install eventually proceeds? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg

Re: GNUmakefile: git-version-gen, maintainer-check, install

2008-08-26 Thread Eric Blake
too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: quotes in INSTALL file

2008-08-26 Thread Eric Blake
. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: Updated INSTALL from Autoconf

2008-08-26 Thread Eric Blake
. the entire manual. I'm applying this; it resyncs to further changes that were made upstream in autoconf's install.texi today. From: Eric Blake [EMAIL PROTECTED] Date: Tue, 26 Aug 2008 15:42:04 -0600 Subject: [PATCH] doc/INSTALL: resync from autoconf * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8

Re: [PATCH] use unlocked io in getdelim

2008-08-27 Thread Eric Blake
freadptr to avoid getc? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http

Re: [PATCH] use unlocked io in getdelim

2008-08-27 Thread Eric Blake
hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: git-version-gen and 'make install'

2008-08-28 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Bruno Haible on 7/21/2008 5:05 PM: Eric Blake wrote on Friday: In the developer's sandbox, you should not care what the version is, therefore, development and incremental compiles should NOT be penalized by always keeping

Re: [PATCH] use new global, Version, rather than macro, VERSION

2008-08-28 Thread Eric Blake
. Is it worth calling git-version-gen directly? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla

Re: Typo in maint.mk

2008-08-28 Thread Eric Blake
for listing in the ChangeLog entry, before I apply this? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG

Re: findprog: don't exit = exit-free base_name, dir_name, etc

2008-08-29 Thread Eric Blake
that had been silently introduced by the rename. At this point, I'd much rather cause a hard compiler error, which forces the issue to be visited. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9

Re: Using gnulib with -pedantic, I get many warnings about #include_next

2008-08-30 Thread Eric Blake
://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=commitdiff;h=c2318e88#patch36 - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg

improve c-stack.m4

2008-09-01 Thread Eric Blake
, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: diversion failure [was: snapshot in preparation for m4 1.4.12]

2008-09-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 8/19/2008 6:29 AM: According to Alain Guibert on 8/19/2008 4:40 AM: Sure. There is a segfault on the test for large precisions, on %.4000d. On libc5 this format works well until %.1020d, but segfaults for %.1021d

Re: bitrotate

2008-09-02 Thread Eric Blake
UINT64_C although, as mentioned for C++, this is better written as: #ifdef UINT64_MAX +#endif Personally, I like to see a comment of what an #endif matches, when it is more than a screenful away. -- Eric Blake

Re: [PATCH] df: new option: --total (-c) to produce grand total (in the same way as du)

2008-09-03 Thread Eric Blake
; But your proposed patch did not correct any bugs in meeting the preconditions of bool. -- Eric Blake

Re: next snapshot in preparation for m4 1.4.12

2008-09-07 Thread Eric Blake
reason why m4's stack overflow test is passing, but test-c-stack is failing, on Irix 5.3. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake

Re: [PATCH] Use `AC_C_RESTRICT' in `time'

2008-09-11 Thread Eric Blake
the user simply attempted to build the package with a different compiler than with the one with which the configure script was run? This is not supported. Could it also be a case of not including config.h before system headers? - -- Don't work too hard, make some time for fun as well! Eric

Re: lib/regex_internal.h on 1.4.11

2008-09-12 Thread Eric Blake
? - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: snapshot in preparation for m4 1.4.12

2008-09-12 Thread Eric Blake
hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: [RFT] Wrap winsock functions for improved compatibility

2008-09-12 Thread Eric Blake
/gnulib/ericb.git +HEAD:mob (I love repo.or.cz's concept of anonymous write access to a staging repository) - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key

Re: [PATCH] testsuite for poll(2)

2008-09-12 Thread Eric Blake
of a mob branch is that you can't be sure how long your push will survive before the next guy uses it) - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key

Re: [RFT] Wrap winsock functions for improved compatibility

2008-09-12 Thread Eric Blake
-netinet_in.exe Unconnected socket test... passed Connected sockets test... passed General socket test with fork... passed Pipe test... failed (expecting POLLHUP after shutdown) FAIL: test-poll.exe - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED

Re: snapshot in preparation for m4 1.4.12

2008-09-13 Thread Eric Blake
for negative zero, or to add a new macro gl_PRINTF_ZERO_LONG_DOUBLE? I can probably do most of the work, since I can test it on the Irix box, but would like to make sure that I'm meeting your preferred style. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED

Re: new module 'errno'

2008-09-14 Thread Eric Blake
# define GNULIB_defined_ECANCELED 1 # endif Using this value is inappropriate, as well. Cygwin currently has errors up through EOVERFLOW 139. In particular, 136 is already tied to ENOSHARE. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN

Re: please add scandir, alphasort, versionsort

2008-09-15 Thread Eric Blake
than that, yes, contributions are welcome. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla

Re: new module 'errno'

2008-09-15 Thread Eric Blake
that error). On the other hand, POSIX 200x adds ENOTRECOVERABLE and EOWNERDEAD (in the context of newly mandated robust mutexes), which very few implementations are likely to provide yet. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP

tests cleanup

2008-09-15 Thread Eric Blake
I noticed some compiler warnings in the m4 testsuite, which were easy to avoid even though they didn't affect correctness. From a0dc688369a937a657cdf8d35f362c3068b0af9a Mon Sep 17 00:00:00 2001 From: Eric Blake [EMAIL PROTECTED] Date: Mon, 15 Sep 2008 14:31:03 -0600 Subject: [PATCH] tests: avoid

Re: [PATCH] posix-shell.m4: reject Solaris 11's /bin/sh (due to umask)

2008-09-16 Thread Eric Blake
document this in the autoconf manual. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http

vasnprintf(-0.0L) on Irix [was: snapshot in preparation for m4 1.4.12]

2008-09-16 Thread Eric Blake
, but does not require libm. */ Close, but without the rest of the patch, this triggered an abort in vasnprintf. However, with both pieces in place, I've tested that Irix 5.3 passes the testsuite. So here's what I'm pushing: From: Eric Blake [EMAIL PROTECTED] Date: Tue, 16 Sep 2008 09:36:24

c-stack and Irix

2008-09-16 Thread Eric Blake
://lists.gnu.org/archive/html/bug-m4/2008-09/msg00014.html -- Eric Blake

Re: vasnprintf(-0.0L) on Irix [was: snapshot in preparation for m4 1.4.12]

2008-09-20 Thread Eric Blake
hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: Problems with old GCC and #include_next

2008-09-20 Thread Eric Blake
- distributing what worked on your system is wrong, because the final generated file depends on configure results which are machine-specific. - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin) Comment

<    1   2   3   4   5   6   7   8   9   10   >