diff options
author | kris <kris@FreeBSD.org> | 2004-06-19 17:31:33 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-06-19 17:31:33 +0800 |
commit | 77d77dcf159c01fcf9eea188ebd781f902564c72 (patch) | |
tree | 499aec15cc9aefd3f6d501be18f6d8171b4cab1f | |
parent | f3ef9c3f04bf14bfdebaa1ebb64df1e1ef564fa6 (diff) | |
download | freebsd-ports-gnome-77d77dcf159c01fcf9eea188ebd781f902564c72.tar.gz freebsd-ports-gnome-77d77dcf159c01fcf9eea188ebd781f902564c72.tar.zst freebsd-ports-gnome-77d77dcf159c01fcf9eea188ebd781f902564c72.zip |
BROKEN on amd64: Shared libraries must be compiled with -fPIC)
-rw-r--r-- | irc/anope/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/irc/anope/Makefile b/irc/anope/Makefile index 37ea521867c5..802fefa0b86c 100644 --- a/irc/anope/Makefile +++ b/irc/anope/Makefile @@ -49,6 +49,10 @@ ANOPEUMASK?= 077 .include <bsd.port.pre.mk> +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (shared libraries must be compiled with -fPIC)" +.endif + .if defined(WITH_MYSQL) USE_MYSQL= yes .endif |