From owner-svn-ports-all@FreeBSD.ORG Thu May 9 12:06:39 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 25868D01; Thu, 9 May 2013 12:06:39 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1830F261; Thu, 9 May 2013 12:06:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r49C6cHt049764; Thu, 9 May 2013 12:06:38 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r49C6cv7049763; Thu, 9 May 2013 12:06:38 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201305091206.r49C6cv7049763@svn.freebsd.org> From: Bryan Drewery Date: Thu, 9 May 2013 12:06:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317736 - head/mail/bogofilter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 May 2013 12:06:39 -0000 Author: bdrewery Date: Thu May 9 12:06:38 2013 New Revision: 317736 URL: http://svnweb.freebsd.org/changeset/ports/317736 Log: - Fix build after USES=iconv conversion in r316662, USES must be defined before bsd.port.pre.mk Reported by: John Marino Modified: head/mail/bogofilter/Makefile Modified: head/mail/bogofilter/Makefile ============================================================================== --- head/mail/bogofilter/Makefile Thu May 9 11:44:36 2013 (r317735) +++ head/mail/bogofilter/Makefile Thu May 9 12:06:38 2013 (r317736) @@ -29,6 +29,12 @@ MAKE_JOBS_SAFE= yes USE_AUTOTOOLS= aclocal automake autoconf autoheader ACLOCAL_ARGS= -Im4 +.include + +.if ${PORT_OPTIONS:MUNICODE} +USES+= iconv +.endif + .include .if ${ARCH} == "sparc64" @@ -40,7 +46,6 @@ BF_CPPFLAGS?= -I${BDB_INCLUDE_DIR} -I${ CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc .if ${PORT_OPTIONS:MUNICODE} CONFIGURE_ARGS+= --enable-unicode -USES+= iconv BF_LIBS+= -liconv .endif .if ${PORT_OPTIONS:MGSL}