diff options
author | kris <kris@FreeBSD.org> | 2002-12-02 00:29:12 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-12-02 00:29:12 +0000 |
commit | 17f65bc9804dd840988ae942aa62a472b0b1537f (patch) | |
tree | b3ffacc6f6347081b9dc6497b3491d26ae280dad /x11-toolkits/bakery | |
parent | a838eab2a7036de735729584a46d37fd164fb03b (diff) | |
download | FreeBSD-ports-17f65bc9804dd840988ae942aa62a472b0b1537f.zip FreeBSD-ports-17f65bc9804dd840988ae942aa62a472b0b1537f.tar.gz |
BROKEN On 5.0: does not compile
Diffstat (limited to 'x11-toolkits/bakery')
-rw-r--r-- | x11-toolkits/bakery/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-toolkits/bakery/Makefile b/x11-toolkits/bakery/Makefile index c952f49..f326f27 100644 --- a/x11-toolkits/bakery/Makefile +++ b/x11-toolkits/bakery/Makefile @@ -26,8 +26,14 @@ INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 500000 +BROKEN= "Does not compile" +.endif + pre-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |