diff options
author | Satoshi Taoka <taoka@FreeBSD.org> | 2001-11-29 04:30:39 +0000 |
---|---|---|
committer | Satoshi Taoka <taoka@FreeBSD.org> | 2001-11-29 04:30:39 +0000 |
commit | 8883dc8d46d8b8ea23d4a4c16b99a37ace1bd854 (patch) | |
tree | 5273bd51ffa661d816cde65e94917e9705c117ea /japanese/jvim3/Makefile | |
parent | I'm not using MHonArc anymore and Max has graciously agreed to (diff) |
On WITHOUT_X11=yes, compiling jvim3-* fails.
This fix is to succeed in it.
Submitted by: Tsukada <nob@him.ne.jp>
Reviewd by: Norikatsu Shigemura <nork@cityfujisawa.ne.jp>
Diffstat (limited to 'japanese/jvim3/Makefile')
-rw-r--r-- | japanese/jvim3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/jvim3/Makefile b/japanese/jvim3/Makefile index f4a1b3a4181f..2eff169563cc 100644 --- a/japanese/jvim3/Makefile +++ b/japanese/jvim3/Makefile @@ -33,13 +33,13 @@ PORT_DOCDIR= ${PREFIX}/share/doc/ja-jvim-${PORTVERSION} # -DUSE_X11 is the cause of a problem treating Japanese MACHINE= -DBSD_UNIX -DUSE_LOCALE CC= cc ${CFLAGS} -Wall -traditional -Dconst= -LIBS= -ltermlib -lxpg4 +LIBS= -ltermlib -lxpg4 -L${PREFIX}/lib .if !defined(WITHOUT_X11) USE_XLIB= yes MACHINE+= -DUSE_X11 CC+= -I${X11BASE}/include -LIBS+= -L${PREFIX}/lib -L${X11BASE}/lib -lX11 +LIBS+= -L${X11BASE}/lib -lX11 .endif # Specifying a velue INPUT_METHOD, and seting values BUILD_DEPENDS, |