Bruno Haible <[EMAIL PROTECTED]> writes:
>> Anyway, for example,
>> libtasn1 is used by GnuTLS, Shishi, and probably some other projects as
>> well, and I have thought about proposing parts of it as gnulib modules.
>> Probably the only reason I haven't done so already is because the code
>> is qui
Joel E. Denny wrote:
> On Tue, 4 Nov 2008, Paolo Bonzini wrote:
>
>>> - my $re_prefix = qr/\* (?:Noteworthy|Major) change/;
>>> + my $re_prefix = qr/\* (?:Noteworthy|Major) change|Changes/;
>> What about
>> qr/(?:\* )?(?:Noteworthy c|Major c|C)(?i:hanges)/
>
> I assume the trailing "s" isn't im
Ben Pfaff wrote:
> > close.c:30:21: w32sock.h: No such file or directory
> [...]
> > The file w32sock.h should be supplied by the pspp package, or by mingw?
>
> By gnulib. It looks like the "close" module has a missing
> dependency on lib/w32sock.h.
Yes. I can reproduce it through "./gnulib-tool
Howdy,
here comes a short Haiku related patch series.
CU, Ingo
Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]>
---
lib/binary-io.h |5 +++--
lib/fcntl.in.h |4 ++--
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/lib/binary-io.h b/lib/binary-io.h
index 9bfddf1..518e464 100644
--- a/lib/binary-io.h
+++ b/lib/binary-io.h
@@ -30,8 +30,9
If SA_ONSTACK exists, use it even if SA_SIGINFO doesn't. This does at least
allow for a somewhat controlled program termination on stack overflow. E.g.
in Haiku this prevents the debug server dialog box from popping up.
Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]>
---
lib/c-stack.c |6 +++
Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]>
---
lib/config.charset |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/config.charset b/lib/config.charset
index 62b4e94..83434bf 100755
--- a/lib/config.charset
+++ b/lib/config.charset
@@ -478,8 +478,8 @@ case "$os
Use the glibc 1 implementation in Haiku too. Haiku actually uses a newer
glibc version, but the libio interface has been butchered to be binary
compatible with the glibc 1 used by BeOS.
Signed-off-by: Ingo Weinhold <[EMAIL PROTECTED]>
---
lib/freadahead.c |3 ++-
1 files changed, 2 insertions
Bruce Korb wrote:
> > But it should be documented.
>
> In the new .h file.
Good!
The documentation should also mention the return value convention of the
function: how does the caller distinguish
- a successful parse,
- an out-of-range time_t result,
- a syntactically invalid input?
Can y
Ingo Weinhold gmx.de> writes:
>
> If SA_ONSTACK exists, use it even if SA_SIGINFO doesn't. This does at least
> allow for a somewhat controlled program termination on stack overflow. E.g.
> in Haiku this prevents the debug server dialog box from popping up.
In my mind, it would be cleaner if we
On Wed, 5 Nov 2008, Paolo Bonzini wrote:
> Joel E. Denny wrote:
> > On Tue, 4 Nov 2008, Paolo Bonzini wrote:
> >
> >>> - my $re_prefix = qr/\* (?:Noteworthy|Major) change/;
> >>> + my $re_prefix = qr/\* (?:Noteworthy|Major) change|Changes/;
> >> What about
> >> qr/(?:\* )?(?:Noteworthy c|Major
Could you add this fix to the next snapshot Ben? I'm still have
problems trying to compile a git version of pspp using mingw :(
Eric Blake wrote:
> Ingo Weinhold gmx.de> writes:
>
>> If SA_ONSTACK exists, use it even if SA_SIGINFO doesn't. This does at least
>> allow for a somewhat controlled program termination on stack overflow. E.g.
>> in Haiku this prevents the debug server dialog box from popping up.
>
> In my mind,
I've just noticed for the first time that these files (or at least
.gitignore, assuming that .cvsignore works the same way) have rather odd
contents.
There seem to be basically two classes of user when it comes to what is
ignored:
1. gnulib is considered as a build dependency, so no files pr
Bruno Haible <[EMAIL PROTECTED]> writes:
> Ben Pfaff wrote:
>> diff --git a/modules/close b/modules/close
>> index e526487..bb852d4 100644
>> --- a/modules/close
>> +++ b/modules/close
>> @@ -3,6 +3,7 @@ close() function: close a file or socket.
>>
>> Files:
>> lib/close.c
>> +lib/w32sock.h
>>
"Michel Boaventura" <[EMAIL PROTECTED]> writes:
> Could you add this fix to the next snapshot Ben? I'm still have
> problems trying to compile a git version of pspp using mingw :(
What are these snapshots?
Would a daily build of gnulib in *.tar.gz format be useful? I suppose
it could make testi
Hi Bruno,
On Wed, Nov 5, 2008 at 3:06 AM, Bruno Haible <[EMAIL PROTECTED]> wrote:
> Bruce Korb wrote:
>> > But it should be documented.
>>
>> In the new .h file.
>
> Good!
>
> The documentation should also mention the return value convention of the
> function: how does the caller distinguish
> -
Simon Josefsson <[EMAIL PROTECTED]> writes:
> "Michel Boaventura" <[EMAIL PROTECTED]> writes:
>
>> Could you add this fix to the next snapshot Ben? I'm still have
>> problems trying to compile a git version of pspp using mingw :(
>
> What are these snapshots?
Michel is referring to a snapshot of
Eric Blake wrote:
> Ingo Weinhold gmx.de> writes:
> >
> > If SA_ONSTACK exists, use it even if SA_SIGINFO doesn't. This does at
least
> > allow for a somewhat controlled program termination on stack overflow.
E.g.
> > in Haiku this prevents the debug server dialog box from popping up.
>
> In m
Hi,
Reuben Thomas wrote:
> There seem to be basically two classes of user when it comes to what is
> ignored:
>
> 1. gnulib is considered as a build dependency, so no files provided or
> generated by gnulib are put in CVS/git.
>
> 2. gnulib is not considered as a build dependency, so files pro
Here is a patch to allow proper linking of rpl_lstat in C++ programs.
diff --git a/lib/sys_stat.in.h b/lib/sys_stat.in.h
index 234b527..50fb524 100644
--- a/lib/sys_stat.in.h
+++ b/lib/sys_stat.in.h
@@ -41,6 +41,10 @@
#ifndef _GL_SYS_STAT_H
#define _GL_SYS_STAT_H
+#ifdef __cplusplus
+extern "C"
Ben Pfaff <[EMAIL PROTECTED]> writes:
> Simon Josefsson <[EMAIL PROTECTED]> writes:
>
>> "Michel Boaventura" <[EMAIL PROTECTED]> writes:
>>
>>> Could you add this fix to the next snapshot Ben? I'm still have
>>> problems trying to compile a git version of pspp using mingw :(
>>
>> What are these s
22 matches
Mail list logo