Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: othersrc/bootstrap-pkgsrc/pax



grant beattie <grant%netbsd.org@localhost> wrote:
> 
> Module Name:  othersrc
> Committed By: grant
> Date:         Fri Dec 27 20:22:34 UTC 2002
> 
> Modified Files:
>       othersrc/bootstrap-pkgsrc/pax: config.h.in configure configure.ac
>           gen_subs.c
> 
> Log Message:
> test for tzfile.h instead of defining some constants for SGI.
> helps linux.

Yes, I noticed that today, too.  But it's not quite that easy:  Irix
_has_ tzfile.h, but not the necessary definitions.

> cvs rdiff -r1.4 -r1.5 othersrc/bootstrap-pkgsrc/pax/gen_subs.c

This should be

#ifdef HAVE_TZFILE_H
#include <tzfile.h>
#endif

#if defined(__sgi__) || !defined(HAVE_TZFILE_H)
#define ...
...
#endif

-Jan

-- 
I'm not even supposed to be here today!



Home | Main Index | Thread Index | Old Index