Source-Changes-HG archive

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

[src/netbsd-2-0]: src/usr.sbin/config Pull up revision 1.36 (requested by jmc...



details:   https://anonhg.NetBSD.org/src/rev/594005bafae0
branches:  netbsd-2-0
changeset: 561526:594005bafae0
user:      tron <tron%NetBSD.org@localhost>
date:      Tue Jun 22 07:23:47 2004 +0000

description:
Pull up revision 1.36 (requested by jmc in ticket #527):
Completely rework how tools/compat is done. Purge all uses/references to
_NETBSD_SOURCE as this makes cross building from older/newer versions of
NetBSD harder, not easier (and also makes the resulting tools 'different')
Wrap all required code with the inclusion of nbtool_config.h, attempt to
only use POSIX code in all places (or when reasonable test w. configure and
provide definitions: ala u_int, etc).
Reviewed by lukem. Tested on FreeBSD 4.9, Redhat Linux ES3, NetBSD 1.6.2 x86
NetBSD current (x86 and amd64) and Solaris 9.
Fixes PR's: PR#17762 PR#25944

diffstat:

 usr.sbin/config/mkheaders.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 6d62514e601f -r 594005bafae0 usr.sbin/config/mkheaders.c
--- a/usr.sbin/config/mkheaders.c       Tue Jun 22 07:23:25 2004 +0000
+++ b/usr.sbin/config/mkheaders.c       Tue Jun 22 07:23:47 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mkheaders.c,v 1.35 2003/08/07 11:25:16 agc Exp $       */
+/*     $NetBSD: mkheaders.c,v 1.35.2.1 2004/06/22 07:23:47 tron Exp $  */
 
 /*
  * Copyright (c) 1992, 1993
@@ -40,6 +40,10 @@
  *     from: @(#)mkheaders.c   8.1 (Berkeley) 6/6/93
  */
 
+#if HAVE_NBTOOL_CONFIG_H
+#include "nbtool_config.h"
+#endif
+
 #include <sys/param.h>
 #include <ctype.h>
 #include <errno.h>



Home | Main Index | Thread Index | Old Index