diff options
author | garga <garga@FreeBSD.org> | 2006-03-24 05:08:27 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2006-03-24 05:08:27 +0800 |
commit | b5e7a9ae1ea64d835d649f8969e1461f4f20d3c8 (patch) | |
tree | f6916c95f29babb725dea22b52c89f1b8e64da80 /x11-wm | |
parent | d73b001a4bfec154e17bf8804e1b36aeca13215c (diff) | |
download | freebsd-ports-gnome-b5e7a9ae1ea64d835d649f8969e1461f4f20d3c8.tar.gz freebsd-ports-gnome-b5e7a9ae1ea64d835d649f8969e1461f4f20d3c8.tar.zst freebsd-ports-gnome-b5e7a9ae1ea64d835d649f8969e1461f4f20d3c8.zip |
- UNBREAK: Fix build on amd64 adding -fPIC -DPIC to CFLAGS [1]
- Add the same to ia64 to try to fix it too, since i don't have a box to
test, i'll wait pointyhat answer me if it's correct.
PR: ports/94862 [1]
Submitted by: Johan van Selst <johans@stack.nl> [1]
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/bbconf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/bbconf/Makefile b/x11-wm/bbconf/Makefile index 55672706aef6..08bdeb52452a 100644 --- a/x11-wm/bbconf/Makefile +++ b/x11-wm/bbconf/Makefile @@ -36,8 +36,8 @@ PLIST_DIRS= lib/bbconf/plugins lib/bbconf .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" -BROKEN= Does not compile on amd64 +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +CFLAGS+= -fPIC -DPIC .endif post-patch: |