diff options
author | marcus <marcus@FreeBSD.org> | 2005-10-16 06:45:04 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-10-16 06:45:04 +0000 |
commit | b51456f2e98d76d48dc68d52dbb0522696e2c887 (patch) | |
tree | df53e7bd5f78cebe251f25d71904bcb9decde5b8 /x11-toolkits | |
parent | 637663af837fe55237e39359c37bb2168a07bc56 (diff) | |
download | FreeBSD-ports-b51456f2e98d76d48dc68d52dbb0522696e2c887.zip FreeBSD-ports-b51456f2e98d76d48dc68d52dbb0522696e2c887.tar.gz |
Add -fPIC to CFLAGS to fix the build on amd64.
Reported by: Stefan 'Steve' Tell <stefan.tell@crashmail.de>
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/scintilla/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-toolkits/scintilla/Makefile b/x11-toolkits/scintilla/Makefile index bc78517..682b8c2 100644 --- a/x11-toolkits/scintilla/Makefile +++ b/x11-toolkits/scintilla/Makefile @@ -37,7 +37,7 @@ MAKE_ARGS+= GTK1=yes .if ${ARCH} == "sparc64" MAKE_ARGS+= PICFLAGS=-DPIC .else -MAKE_ARGS+= PICFLAGS="-DPIC -fpic" +MAKE_ARGS+= PICFLAGS="-DPIC -fPIC -fpic" .endif do-install: |