From owner-freebsd-hackers Tue Jun 13 8:31:47 2000 Delivered-To: freebsd-hackers@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 7839037BECC; Tue, 13 Jun 2000 08:31:36 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e5DFVKX03207; Tue, 13 Jun 2000 11:31:20 -0400 (EDT) Date: Tue, 13 Jun 2000 11:31:20 -0400 (EDT) From: Trevor Johnson To: Gerald Pfeifer Cc: freebsd-hackers@FreeBSD.ORG, ports@FreeBSD.ORG, "Jordan K. Hubbard" Subject: Re: -STABLE (was: ncurses.h and #define trace _nc_trace) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gerald Pfeifer wrote: > Is there a way to [...] > b) mark a port to notify users not to try using it on -STABLE and > -CURRENT? After a look at http://www.freebsd.org/porters-handbook/porting-versions.html and at src/sys/sys/param.h,v in the CVS tree, I made the appended patch. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt diff -ruN wine.orig/Makefile wine/Makefile --- wine.orig/Makefile Sat Jun 10 19:47:24 2000 +++ wine/Makefile Tue Jun 13 15:25:38 2000 @@ -24,6 +24,15 @@ MAN5= wine.conf.5 ONLY_FOR_ARCHS= i386 +.include + +# PR misc/19077 +.if !defined(IREADIT) +.if ${OSVERSION} > 400018 +BROKEN= "Your ncurses.h may be too new for this port. Please make sure it is from before 24 May 2000, then restart the build with IREADIT=yes" +.endif +.endif + .if !defined(NDEBUG) STRIP= CFLAGS+= -g @@ -102,4 +111,4 @@ ${ECHO} @${SED} s+%%PREFIX%%+${PREFIX}+g <${PKGMESSAGE} -.include +.include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message