diff options
-rw-r--r-- | finance/xtrader/Makefile | 8 | ||||
-rw-r--r-- | x11-fm/xdiskusage/Makefile | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/finance/xtrader/Makefile b/finance/xtrader/Makefile index 3db87b7d8215..7db2e8e2bd3f 100644 --- a/finance/xtrader/Makefile +++ b/finance/xtrader/Makefile @@ -28,9 +28,15 @@ PLIST_FILES= bin/xtrader \ %%DATADIR%%/sample.xt PLIST_DIRS= %%DATADIR%% +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 && ${ARCH} == "amd64" +BROKEN= Does not compile +.endif + do-install: @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}/sample.xt ${DATADIR} ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}/xtrader ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/x11-fm/xdiskusage/Makefile b/x11-fm/xdiskusage/Makefile index c8d2232c77fd..1264fd8041ec 100644 --- a/x11-fm/xdiskusage/Makefile +++ b/x11-fm/xdiskusage/Makefile @@ -29,6 +29,10 @@ CXXFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS+= ${PTHREAD_LIBS} .endif +.if ${OSVERSION} >= 700042 && ${ARCH} == "amd64" +BROKEN= Does not compile +.endif + do-build: .for i in panels xdiskusage ${CXX} ${CXXFLAGS} -I${X11BASE}/include -c \ |