diff options
author | edwin <edwin@FreeBSD.org> | 2005-11-26 12:38:23 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-11-26 12:38:23 +0000 |
commit | b427afe373f582eab043e138188f10888c2603af (patch) | |
tree | 89c553f0cf0d2890d08c1ca29e849576c705a867 /editors/xemacs21-mule/Makefile | |
parent | 5922b39c0b7191f9ca3f06582a4a5d26a5de81b3 (diff) | |
download | FreeBSD-ports-b427afe373f582eab043e138188f10888c2603af.zip FreeBSD-ports-b427afe373f582eab043e138188f10888c2603af.tar.gz |
[MAINTAINER] editors/xemacs21-mule: fix work under amd64.
* Fix XEmacs working under amd64
PR: 89558
Submitted by: Andrey Slusar <anrays@gmail.com>
Diffstat (limited to 'editors/xemacs21-mule/Makefile')
-rw-r--r-- | editors/xemacs21-mule/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/editors/xemacs21-mule/Makefile b/editors/xemacs21-mule/Makefile index 1f9ff51..4bb494e 100644 --- a/editors/xemacs21-mule/Makefile +++ b/editors/xemacs21-mule/Makefile @@ -98,9 +98,12 @@ 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 +.if ${ARCH} == "amd64" +CONFIGURE_ARGS+=--with-system-malloc --pdump +PLIST_SUB+= PDUMP="" +.else +PLIST_SUB+= PDUMP="@comment " +.endif pre-fetch: .if !defined(WITH_GTK) @@ -198,7 +201,7 @@ post-install:: # Do what PLIST does for pkg_add. ${MKDIR} ${PREFIX}/lib/xemacs/site-lisp ${CHMOD} 755 ${PREFIX}/lib/xemacs/site-lisp - ${RM} -f ${PREFIX}/bin/send-pr ${PREFIX}/bin/xemacs-${XEMACS_VER}-*.dmp + ${RM} -f ${PREFIX}/bin/send-pr .if defined(WITH_GTK) @${ECHO_MSG} "Please be aware that GTK support is buggy. Do not report bugs to" @${ECHO_MSG} "the maintainer." |