diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2010-03-20 13:38:17 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2010-03-20 13:38:17 +0000 |
commit | 9d2eb43f70f5da1c57d0413f4d787195fb526a4e (patch) | |
tree | 21a08b4c933e05030e4a567840dc66aa38f054b7 | |
parent | ddb8804c0ffbf246685bcb9d810efeaae6dcd095 (diff) | |
download | ports-9d2eb43f70f5da1c57d0413f4d787195fb526a4e.tar.gz ports-9d2eb43f70f5da1c57d0413f4d787195fb526a4e.zip |
- Mark BROKEN on HEAD: fails to build with new utmpx
Reported by: pointyhat
Notes
Notes:
svn path=/head/; revision=251268
-rw-r--r-- | sysutils/lookupd/Makefile | 4 | ||||
-rw-r--r-- | sysutils/runit/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/sysutils/lookupd/Makefile b/sysutils/lookupd/Makefile index b7a11b490eb8..099b669d4747 100644 --- a/sysutils/lookupd/Makefile +++ b/sysutils/lookupd/Makefile @@ -31,4 +31,8 @@ post-install: CFLAGS+= -fPIC .endif +.if ${OSVERSION} > 900007 +BROKEN= fails to build with new utmpx +.endif + .include <bsd.port.post.mk> diff --git a/sysutils/runit/Makefile b/sysutils/runit/Makefile index 5090c7231ff8..6b56367a0f12 100644 --- a/sysutils/runit/Makefile +++ b/sysutils/runit/Makefile @@ -27,6 +27,12 @@ DOCS= package/CHANGES package/COPYING package/README \ CONFIG= etc/freebsd/1 etc/2 etc/freebsd/3 etc/freebsd/ctrlaltdel \ etc/freebsd/getty-ttyv4/run etc/freebsd/getty-ttyv4/finish +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 900007 +BROKEN= fails to build with new utmpx +.endif + do-configure: ${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/src/conf-cc @@ -52,4 +58,4 @@ do-install: cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |