diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2001-04-20 20:26:53 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2001-04-20 20:26:53 +0000 |
commit | 48dd14d15cf11e550529bcecfbf7e5570982fdad (patch) | |
tree | 4a9f9ef8df9ff342fdabad2d47bf847cfb86cbc0 /editors/emacs20-dl | |
parent | Update to 1.6.1. (diff) |
Add WITHOUT_XIM option.
Mule/Emacs does not maintain XIM clients perfectly.
This option disables XIM function in Mule/Emacs.
Reported by: Yuji Takano <takachan@running-dog.net>
Diffstat (limited to 'editors/emacs20-dl')
-rw-r--r-- | editors/emacs20-dl/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/emacs20-dl/Makefile b/editors/emacs20-dl/Makefile index c1261116d9a1..fa9d74f97871 100644 --- a/editors/emacs20-dl/Makefile +++ b/editors/emacs20-dl/Makefile @@ -35,6 +35,10 @@ USE_XLIB= yes CONFIGURE_ARGS= --with-x=no --with-pop .endif +.if defined(WITHOUT_XIM) && (${WITHOUT_XIM} == "yes") +MAKE_FLAGS= MYCPPFLAG="-DX_I18N_INHIBITED" +.endif + DOC_FILE= DOC-DL-${EMACS_VER}.1 PLIST_SUB= EMACS_VER=${EMACS_VER} EMACS_ARCH=${CONFIGURE_TARGET} \ |