diff options
author | asami <asami@FreeBSD.org> | 1998-11-28 09:48:32 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-28 09:48:32 +0800 |
commit | cb21602e5d5c1931edf714c9b29703fbf9e99eb2 (patch) | |
tree | 8e345448b825a89255df9b2609c91dde493328d2 | |
parent | f1eaa0aeb69fd976234fd3857e347d8e55ae8443 (diff) | |
download | freebsd-ports-gnome-cb21602e5d5c1931edf714c9b29703fbf9e99eb2.tar.gz freebsd-ports-gnome-cb21602e5d5c1931edf714c9b29703fbf9e99eb2.tar.zst freebsd-ports-gnome-cb21602e5d5c1931edf714c9b29703fbf9e99eb2.zip |
Mark this broken for 3.0:
-------
cc -c -g -I./splay -I/root/include -DHAVE_MMAP -DSTDHEADERS -DDEBUG -DTRACE -DPROFILESIZES _emalloc.c -o _emalloc.o
In file included from defs.h:51,
from _emalloc.c:5:
externs.h:110: conflicting types for `mmap'
/usr/include/stdio.h:282: previous declaration of `mmap'
*** Error code 1
Stop.
-rw-r--r-- | devel/libmalloc/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/devel/libmalloc/Makefile b/devel/libmalloc/Makefile index 965cdbb146a7..930be9a0cdd8 100644 --- a/devel/libmalloc/Makefile +++ b/devel/libmalloc/Makefile @@ -3,7 +3,7 @@ # Date created: 11 January 1995 # Whom: jkh # -# $Id: Makefile,v 1.12 1997/07/17 15:12:41 max Exp $ +# $Id: Makefile,v 1.13 1997/11/22 01:04:30 asami Exp $ # DISTNAME= malloc-1.18 @@ -13,6 +13,11 @@ MASTER_SITES= ftp://ftp.cs.toronto.edu/pub/moraes/ MAINTAINER= obrien@FreeBSD.org +.include <bsd.port.pre.mk> +.if ${OSVERSION} >= 300000 +BROKEN= mmap prototype mismatch +.endif + MANUAL_PACKAGE_BUILD= installs malloc.h post-install: @@ -24,4 +29,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/NOTE ${PREFIX}/share/doc/libmalloc .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |