|
[beports]
||
[Date Prev]
[05-2008 Date Index]
[Date Next]
||
[Thread Prev]
[05-2008 Thread Index]
[Thread Next]
[beports] [RFC] diff file for gzip 1.3.12
- From: "scott mc" <scottmc2@xxxxxxxxx>
- To: beports@xxxxxxxxxxxxx
- Date: Wed, 14 May 2008 13:44:06 -0700
Here's a diff for gzip that fixes a BeOS workaround ( i used 'diff
stdbool_h-haiku stdbool_.h > stdbool_.h' to create it, is that the
correct way?).
Are we submitting these types of fixes, where we put in " if defined
(__BEOS__) && !defined (__HAIKU__) " in place of ifdef __BEOS__ ?
What about the config.guess when sending updates?
-scottmc
61c61
< #if defined (__BEOS__) && !defined (__HAIKU__)
---
> #ifdef __BEOS__
76c76
< #if defined __cplusplus || ( defined (__BEOS__) && !defined (__HAIKU__) )
---
> #if defined __cplusplus || defined __BEOS__
|