diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2015-08-10 06:24:04 +0800 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2015-08-10 06:24:04 +0800 |
commit | 605de447c0638d9459d506a094bc699cc9646220 (patch) | |
tree | b32e323db43990d5dd5010a12047aa5cf89ec396 /graphics/freeimage | |
parent | 683daeef9e1bc825bea458010fdbfce84e7ab116 (diff) | |
download | freebsd-ports-gnome-605de447c0638d9459d506a094bc699cc9646220.tar.gz freebsd-ports-gnome-605de447c0638d9459d506a094bc699cc9646220.tar.zst freebsd-ports-gnome-605de447c0638d9459d506a094bc699cc9646220.zip |
Adds -fPIC to CFLAGS_aarch64 to a number of ports that already have it
in the amd64 CFLAGS and are failing to build.
Approved by: bapt
Differential Revision: https://reviews.freebsd.org/D3321
Diffstat (limited to 'graphics/freeimage')
-rw-r--r-- | graphics/freeimage/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/freeimage/Makefile b/graphics/freeimage/Makefile index 7103c3e92297..9230406dab07 100644 --- a/graphics/freeimage/Makefile +++ b/graphics/freeimage/Makefile @@ -17,6 +17,7 @@ WRKSRC= ${WRKDIR}/FreeImage MAKE_ARGS= CC="${CC}" CPP="${CPP}" CXX="${CXX}" CFLAGS+= -fexceptions -fvisibility=hidden +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC PLIST_FILES= include/FreeImage.h \ |