Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2007 00:23:15 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 131142 for review
Message-ID:  <200712180023.lBI0NFaP068989@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=131142

Change 131142 by kmacy@entropy_kmacy_xen31 on 2007/12/18 00:22:22

	Disable pointer sign warning, not sure why this is an issue
	now, but without this the kernel won't build

Affected files ...

.. //depot/projects/xen31/sys/conf/kern.mk#3 edit

Differences ...

==== //depot/projects/xen31/sys/conf/kern.mk#3 (text+ko) ====

@@ -13,6 +13,9 @@
 CWARNFLAGS?=	-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
 		-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
 		${_wundef} ${_Wno_pointer_sign} -fformat-extensions
+.if !defined(WITH_GCC3) 
+_Wno_pointer_sign=-Wno-pointer-sign 
+.endif
 .if !defined(NO_UNDEF)
 _wundef=	-Wundef
 .endif



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