Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Feb 2012 12:50:20 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r231678 - in head: include/rpc sys/dev/mpt/mpilib sys/net
Message-ID:  <201202141250.q1ECoKYQ099088@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Tue Feb 14 12:50:20 2012
New Revision: 231678
URL: http://svn.freebsd.org/changeset/base/231678

Log:
  Change some headers such that lang/gcc* ports no longer patch them.
  
  The lang/gcc* ports patch headers where they think something is
  non-standard. These patched headers override the system headers which means
  you have to rebuild these ports whenever you do installworld to make sure
  they contain the latest changes.

Modified:
  head/include/rpc/svc.h
  head/sys/dev/mpt/mpilib/mpi_type.h
  head/sys/net/zlib.h

Modified: head/include/rpc/svc.h
==============================================================================
--- head/include/rpc/svc.h	Tue Feb 14 12:47:57 2012	(r231677)
+++ head/include/rpc/svc.h	Tue Feb 14 12:50:20 2012	(r231678)
@@ -226,7 +226,7 @@ struct svc_req {
  *	const SVCXPRT *xprt;
  *	const rpcprog_t prog;
  *	const rpcvers_t vers;
- *	const void (*dispatch)();
+ *	const void (*dispatch)(struct svc_req *, SVCXPRT *);
  *	const struct netconfig *nconf;
  */
 
@@ -376,7 +376,7 @@ __BEGIN_DECLS
 extern int svc_create(void (*)(struct svc_req *, SVCXPRT *),
 			   const rpcprog_t, const rpcvers_t, const char *);
 /*
- *      void (*dispatch)();             -- dispatch routine
+ *      void (*dispatch)(struct svc_req *, SVCXPRT *);
  *      const rpcprog_t prognum;        -- program number
  *      const rpcvers_t versnum;        -- version number
  *      const char *nettype;            -- network type
@@ -392,7 +392,7 @@ extern SVCXPRT *svc_tp_create(void (*)(s
 				   const rpcprog_t, const rpcvers_t,
 				   const struct netconfig *);
         /*
-         * void (*dispatch)();            -- dispatch routine
+         * void (*dispatch)(struct svc_req *, SVCXPRT *);
          * const rpcprog_t prognum;       -- program number
          * const rpcvers_t versnum;       -- version number
          * const struct netconfig *nconf; -- netconfig structure

Modified: head/sys/dev/mpt/mpilib/mpi_type.h
==============================================================================
--- head/sys/dev/mpt/mpilib/mpi_type.h	Tue Feb 14 12:47:57 2012	(r231677)
+++ head/sys/dev/mpt/mpilib/mpi_type.h	Tue Feb 14 12:50:20 2012	(r231678)
@@ -84,7 +84,7 @@ typedef uint32_t U32;
 
 #else
 
-#if defined(unix) || defined(__arm) || defined(ALPHA) || defined(__PPC__) || defined(__ppc)
+#if defined(__unix__) || defined(__arm) || defined(ALPHA) || defined(__PPC__) || defined(__ppc)
 
     typedef signed   int   S32;
     typedef unsigned int   U32;

Modified: head/sys/net/zlib.h
==============================================================================
--- head/sys/net/zlib.h	Tue Feb 14 12:47:57 2012	(r231677)
+++ head/sys/net/zlib.h	Tue Feb 14 12:50:20 2012	(r231678)
@@ -109,7 +109,7 @@ extern "C" {
 #if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
 #  define WIN32
 #endif
-#if defined(__GNUC__) || defined(WIN32) || defined(__386__) || defined(i386)
+#if defined(__GNUC__) || defined(WIN32) || defined(__386__) || defined(__i386__)
 #  ifndef __32BIT__
 #    define __32BIT__
 #  endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202141250.q1ECoKYQ099088>