diff options
author | Simon Barner <barner@FreeBSD.org> | 2005-11-07 19:47:21 +0000 |
---|---|---|
committer | Simon Barner <barner@FreeBSD.org> | 2005-11-07 19:47:21 +0000 |
commit | b80fce117fe6751d6f6ca12d39726dbc4afa0ae3 (patch) | |
tree | 758aff751b2b8911c9b06b5d1794a86de9971270 /x11-toolkits | |
parent | 1ef7a5cb79c2ea65c2e2440a49ddca95889cc8fd (diff) |
Add -fPIC to CFLAGS (for ia64). Since `irrlicht' is a port that consists of
a shared library only (and a few header files, of course), it's ok to do it
in the ports Makefile.
Reported by: pointyhat via kris
Notes
Notes:
svn path=/head/; revision=147518
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/irrlicht/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-toolkits/irrlicht/Makefile b/x11-toolkits/irrlicht/Makefile index 6b074c4c24d5..306816cc1aa5 100644 --- a/x11-toolkits/irrlicht/Makefile +++ b/x11-toolkits/irrlicht/Makefile @@ -32,7 +32,7 @@ EXAMPLEDIRS= 01.HelloWorld 02.Quake3Map 03.CustomSceneNode 04.Movement 05.UserIn .include <bsd.port.pre.mk> -.if ${ARCH} == amd64 +.if (${ARCH} == amd64) || (${ARCH} == ia64) CFLAGS+= -fPIC .endif |