diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-04-12 01:33:04 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-04-12 01:33:04 +0000 |
commit | 107de5e5c4fab30655b124530be58e07a53a2a11 (patch) | |
tree | 14f4fed2ae0737218fb703afa7b885ed8e94e124 /www/cgiparse/Makefile | |
parent | ebcf9bfb8e1056a5b0b56132729fbcf19080a6a8 (diff) | |
download | ports-107de5e5c4fab30655b124530be58e07a53a2a11.tar.gz ports-107de5e5c4fab30655b124530be58e07a53a2a11.zip |
Notes
Diffstat (limited to 'www/cgiparse/Makefile')
-rw-r--r-- | www/cgiparse/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/cgiparse/Makefile b/www/cgiparse/Makefile index 914fbdd6e323..3cca1ca3230e 100644 --- a/www/cgiparse/Makefile +++ b/www/cgiparse/Makefile @@ -21,7 +21,13 @@ MAN3= cgiclose.3 cgigetvalue.3 cginewquerystr.3 INSTALLS_SHLIB= yes CFLAGS+= "-fPIC" +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not link on amd64 (mime port needs to provide libmime.so)" +.endif + post-install: ${LN} -sf libcgiparse.so.1 ${PREFIX}/lib/libcgiparse.so -.include <bsd.port.mk> +.include <bsd.port.post.mk> |