diff options
author | knu <knu@FreeBSD.org> | 2000-09-07 16:01:29 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-09-07 16:01:29 +0800 |
commit | 3d405552e2bca001c23e3fafcab8372189068df5 (patch) | |
tree | 747da644cceb6f7d7817c5e7c3e408cfc0cca541 /editors | |
parent | b46256607418be2d5ac353a9e879a0c115a0aa8d (diff) | |
download | freebsd-ports-gnome-3d405552e2bca001c23e3fafcab8372189068df5.tar.gz freebsd-ports-gnome-3d405552e2bca001c23e3fafcab8372189068df5.tar.zst freebsd-ports-gnome-3d405552e2bca001c23e3fafcab8372189068df5.zip |
Add a knob for XIM support. (WITH_XIM)
Approved by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp> (MAINTAINER)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs21-mule-common/Makefile | 1 | ||||
-rw-r--r-- | editors/xemacs21-mule/Makefile | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/editors/xemacs21-mule-common/Makefile b/editors/xemacs21-mule-common/Makefile index be3507a67dcb..41ebaba625a7 100644 --- a/editors/xemacs21-mule-common/Makefile +++ b/editors/xemacs21-mule-common/Makefile @@ -18,6 +18,7 @@ # WITH_INPUT_METHOD : input methods(configure arguments) # LIB_INPUT_METHOD : LIB_DEPENDS list of Input Methods # BUILD_INPUT_METHOD: BUILD_DEPENDS list of Input Methods +# WITH_XIM : X Input Method(configure arguments) XEMACS_MAJOR_VER= 21 diff --git a/editors/xemacs21-mule/Makefile b/editors/xemacs21-mule/Makefile index 81d11f33cc44..bb8189d5445a 100644 --- a/editors/xemacs21-mule/Makefile +++ b/editors/xemacs21-mule/Makefile @@ -17,6 +17,7 @@ # WITH_INPUT_METHOD : input methods(configure arguments) # LIB_INPUT_METHOD : LIB_DEPENDS list of Input Methods # BUILD_INPUT_METHOD: BUILD_DEPENDS list of Input Methods +# WITH_XIM : X Input Method(configure arguments) .if !defined(MULE_SLAVE) && !defined(MULE_COMMON) MULE_SLAVE= yes @@ -38,7 +39,7 @@ LIB_DEPENDS= compface.1:${PORTSDIR}/mail/faces \ CONFIGURE_ARGS?=${XEMACS_ARCH} \ --prefix=${PREFIX} \ --with-x11 \ - --with-xim=no \ + --with-xim=${WITH_XIM} \ --with-mule \ --x-includes=${X11BASE}/include \ --x-libraries=${X11BASE}/lib \ @@ -82,6 +83,7 @@ SITE_INCLUDES+= ${PREFIX}/include SITE_LIBRARIES+= ${PREFIX}/lib WITH_INPUT_METHOD?= --with-canna=no --with-wnn=no --with-wnn6=no .endif +WITH_XIM?= no .if defined(MULE_SLAVE) pre-build: |