Subject: Re: CVS commit: othersrc/bootstrap-pkgsrc/pax
To: grant beattie <grant@netbsd.org>
From: Jan Schaumann <jschauma@netbsd.org>
List: source-changes
Date: 12/27/2002 15:32:16
grant beattie <grant@netbsd.org> 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!