diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:33:19 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:33:19 +0000 |
commit | 3371cd154ddc6af3a9a9dfcb4562675ef5c75aa1 (patch) | |
tree | 3065176caefebf9bcf8467fd07e11801c096770a /lang/q | |
parent | d01f79fbfcd1831886e75b178f4f0b3c40f661ed (diff) | |
download | ports-3371cd154ddc6af3a9a9dfcb4562675ef5c75aa1.tar.gz ports-3371cd154ddc6af3a9a9dfcb4562675ef5c75aa1.zip |
Notes
Diffstat (limited to 'lang/q')
-rw-r--r-- | lang/q/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/q/Makefile b/lang/q/Makefile index 23c6f9fc9897..bb6002a41070 100644 --- a/lang/q/Makefile +++ b/lang/q/Makefile @@ -69,6 +69,12 @@ CONFIGURE_ARGS+= --with-odbc=-liodbc MAN1= q.1 INFO= qdoc +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (shared libraries must be compiled with -fPIC)" +.endif + post-extract: @${RM} -f ${WRKSRC}/doc/*info* @@ -80,4 +86,4 @@ post-patch: ${GREP} -l "<malloc\.h>" | ${XARGS} ${REINPLACE_CMD} \ -e "s,<malloc\.h>,<stdlib.h>," -.include <bsd.port.mk> +.include <bsd.port.post.mk> |