From 3919a7848e272e908617f4b66ddf94116f831047 Mon Sep 17 00:00:00 2001 From: obrien Date: Tue, 23 May 2000 16:36:59 +0000 Subject: Only configure for locales-fix if "WITH_LOCALES_FIX" is defined. ache reports that configuring for locales-fix breaks non-ja/zh locales badly. Submitted by: ache --- mail/mutt-devel/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'mail/mutt-devel') diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index fd79185626b0..6774cf902134 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -58,8 +58,10 @@ CONFIGURE_TARGET=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LDFLAGS=-L${LOCALBASE}/lib CONFIGURE_ARGS= --enable-pop --enable-imap --enable-flock --disable-fcntl \ --with-sharedir=${PREFIX}/share/mutt \ - --with-docdir=${PREFIX}/share/doc/mutt --with-charmaps \ - --enable-locales-fix + --with-docdir=${PREFIX}/share/doc/mutt --with-charmaps +.if defined(WITH_LOCALES_FIX) +CONFIGURE_ARGS+= --enable-locales-fix +.endif .if defined(BATCH) || defined(WITH_SLANG) CONFIGURE_ARGS+= --with-slang=${PREFIX} .elif defined(WITH_NCURSES_PORT) -- cgit