diff options
author | jseger <jseger@FreeBSD.org> | 1998-10-11 14:35:44 +0000 |
---|---|---|
committer | jseger <jseger@FreeBSD.org> | 1998-10-11 14:35:44 +0000 |
commit | b36c69149431f05230c5a8460dd512a2d383b0c5 (patch) | |
tree | 8ae32aad9d675a0bcfb873257731a6994b59eddb /cad | |
parent | 35853b663ccb22407bfe849e41c56d2a904dbdab (diff) | |
download | FreeBSD-ports-b36c69149431f05230c5a8460dd512a2d383b0c5.zip FreeBSD-ports-b36c69149431f05230c5a8460dd512a2d383b0c5.tar.gz |
Mark BROKEN for current:
gcc -O3 -I/usr/X11R6/include -I../../include -c xwd.c
In file included from xwd.c:27:
/usr/include/malloc.h:2: warning: #warning "this file includes <malloc.h> which
is deprecated, use <stdlib.h> instead"
xwd.c: In function `DumpWidget':
xwd.c:68: warning: passing arg 1 of `error' makes integer from pointer without a
cast
xwd.c:68: too few arguments to function `error'
xwd.c:75: warning: passing arg 1 of `error' makes integer from pointer without a
cast
xwd.c:75: too few arguments to function `error'
xwd.c:113: warning: passing arg 1 of `error' makes integer from pointer without
a cast
xwd.c:113: too few arguments to function `error'
xwd.c: In function `Get_XColors':
xwd.c:228: warning: passing arg 1 of `error' makes integer from pointer without
a cast
xwd.c:228: too few arguments to function `error'
*** Error code 1
Diffstat (limited to 'cad')
-rw-r--r-- | cad/felt/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cad/felt/Makefile b/cad/felt/Makefile index eb9745b..f8ee0cf 100644 --- a/cad/felt/Makefile +++ b/cad/felt/Makefile @@ -3,7 +3,7 @@ # Date created: 19 October 1996 # Whom: Pedro Giffuni # -# $Id: Makefile,v 1.5 1997/06/29 10:39:49 obrien Exp $ +# $Id: Makefile,v 1.6 1998/02/20 18:39:36 steve Exp $ # DISTNAME= felt-3.02 @@ -14,6 +14,11 @@ EXTRACT_SUFX= .src.tar.gz MAINTAINER= giffunip@asme.org +OSVERSION!= sysctl -n kern.osreldate +.if ${OSVERSION} >= 300000 +BROKEN= too few arguments to function error +.endif + WRKSRC= ${WRKDIR}/FElt-3.02 GNU_CONFIGURE= yes MAN1= burlap.1 corduroy.1 felt.1 patchwork.1 velvet.1 yardstick.1 |