diff options
author | pat <pat@FreeBSD.org> | 2004-03-06 07:50:35 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2004-03-06 07:50:35 +0000 |
commit | aceea08e07de4cd9205c9b4fd406c720bc47ea19 (patch) | |
tree | 13ddc5948d05a9d100f90163f898d4b481d3479f /misc/gkrellmlaunch | |
parent | fc47ac9885d604ead7515a4bc61bceb04c6770b4 (diff) | |
download | FreeBSD-ports-aceea08e07de4cd9205c9b4fd406c720bc47ea19.zip FreeBSD-ports-aceea08e07de4cd9205c9b4fd406c720bc47ea19.tar.gz |
Fix on amd64
PR: 63109
Submitted by: Hendrik Scholz <hendrik@scholz.net>
Diffstat (limited to 'misc/gkrellmlaunch')
-rw-r--r-- | misc/gkrellmlaunch/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/gkrellmlaunch/Makefile b/misc/gkrellmlaunch/Makefile index 1ed1fee..001d412 100644 --- a/misc/gkrellmlaunch/Makefile +++ b/misc/gkrellmlaunch/Makefile @@ -23,8 +23,13 @@ USE_X_PREFIX= yes USE_GNOME= imlib ALL_TARGET= ${PORTNAME}.so +.include <bsd.port.pre.mk> +.if ${ARCH} == "amd64" +CFLAGS= -fPIC +.endif + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.so \ ${PREFIX}/libexec/gkrellm/plugins -.include <bsd.port.mk> +.include <bsd.port.post.mk> |