diff options
author | kris <kris@FreeBSD.org> | 2004-03-19 11:39:21 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-19 11:39:21 +0000 |
commit | c50ae2c6e830af152aff1e3e46105841bab0bb1e (patch) | |
tree | 23e70b5f9c4fef1f5ba6baa209da859865901b60 /editors/glimmer | |
parent | 577259f4c82be7ac5ea1c8f0da7b6239667ec4b6 (diff) | |
download | FreeBSD-ports-c50ae2c6e830af152aff1e3e46105841bab0bb1e.zip FreeBSD-ports-c50ae2c6e830af152aff1e3e46105841bab0bb1e.tar.gz |
BROKEN on 5.x: Does not compile due to ache's gnuregex changes
Diffstat (limited to 'editors/glimmer')
-rw-r--r-- | editors/glimmer/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/glimmer/Makefile b/editors/glimmer/Makefile index 92c955e..317d24d 100644 --- a/editors/glimmer/Makefile +++ b/editors/glimmer/Makefile @@ -35,7 +35,13 @@ PYTHON_LIBS= -lssl -lcrypto .endif PYTHON_LIBS+= -lutil -lreadline -lcrypt -lpython +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502104 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpython|${PYTHON_LIBS}|g' ${WRKSRC}/configure -.include <bsd.port.mk> +.include <bsd.port.post.mk> |