diff options
author | kris <kris@FreeBSD.org> | 2004-03-25 18:59:14 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-25 18:59:14 +0800 |
commit | 3739c04dc9307c957a0a137173b04d8115437246 (patch) | |
tree | a57ab7b595a59a05bd7d7b7b2b3993eabc99888f /editors/xemacs-devel/Makefile | |
parent | 4081c67395332165fba512dc01cb202ab492ac8f (diff) | |
download | freebsd-ports-gnome-3739c04dc9307c957a0a137173b04d8115437246.tar.gz freebsd-ports-gnome-3739c04dc9307c957a0a137173b04d8115437246.tar.zst freebsd-ports-gnome-3739c04dc9307c957a0a137173b04d8115437246.zip |
Port to amd64.
Submitted by: James Van Artsdalen <james-freebsd-amd64 at jrv.org>, gallatin, kan
Diffstat (limited to 'editors/xemacs-devel/Makefile')
-rw-r--r-- | editors/xemacs-devel/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/xemacs-devel/Makefile b/editors/xemacs-devel/Makefile index 68a26e9cab3a..318b04d7a075 100644 --- a/editors/xemacs-devel/Makefile +++ b/editors/xemacs-devel/Makefile @@ -55,6 +55,13 @@ ALL_TARGET= all dist PLIST_SUB= XEMACS_VER=${XEMACS_VER} XEMACS_ARCH=${XEMACS_ARCH} +.include <bsd.port.pre.mk> + +# Undump and malloc do not behave on amd64 at the moment +.if ${ARCH} == "amd64" +CONFIGURE_ARGS+= --with-system-malloc --pdump +.endif + pre-fetch: #.if !defined(WANT_GTK) # @${ECHO_MSG} "If you want to use GTK, please set the environment variable WANT_GTK " @@ -122,4 +129,4 @@ post-install:: # @${ECHO_MSG} "to ${PORTNAME}${PKGNAMESUFFIX}-${XEMACS_VER}." #.endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |