From owner-svn-ports-all@FreeBSD.ORG Wed Sep 18 18:39:15 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7F77DF5E; Wed, 18 Sep 2013 18:39:15 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6CB5E2DB1; Wed, 18 Sep 2013 18:39:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8IIdFUh076143; Wed, 18 Sep 2013 18:39:15 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8IIdFxj076141; Wed, 18 Sep 2013 18:39:15 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201309181839.r8IIdFxj076141@svn.freebsd.org> From: Boris Samorodov Date: Wed, 18 Sep 2013 18:39:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327572 - in head: textproc/sphinxsearch www/xapian-omega10 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: Wed, 18 Sep 2013 18:39:15 -0000 Author: bsam Date: Wed Sep 18 18:39:14 2013 New Revision: 327572 URL: http://svnweb.freebsd.org/changeset/ports/327572 Log: Add explicit LDFLAGS+=${ICONV_LIB} when iconv is used. Submitted by: marino (via e-mail) Approved by: portmgr (bapt, implicit) Modified: head/textproc/sphinxsearch/Makefile head/www/xapian-omega10/Makefile Modified: head/textproc/sphinxsearch/Makefile ============================================================================== --- head/textproc/sphinxsearch/Makefile Wed Sep 18 18:10:59 2013 (r327571) +++ head/textproc/sphinxsearch/Makefile Wed Sep 18 18:39:14 2013 (r327572) @@ -65,6 +65,7 @@ CONFIGURE_ARGS+= --without-pgsql .if ${PORT_OPTIONS:MICONV} CONFIGURE_ARGS+= --with-iconv USES+= iconv +LDFLAGS+= ${ICONV_LIB} .else CONFIGURE_ARGS+= --without-iconv .endif Modified: head/www/xapian-omega10/Makefile ============================================================================== --- head/www/xapian-omega10/Makefile Wed Sep 18 18:10:59 2013 (r327571) +++ head/www/xapian-omega10/Makefile Wed Sep 18 18:39:14 2013 (r327572) @@ -43,6 +43,7 @@ PORTSCOUT= limit:^1\.0\. .if ${PORT_OPTIONS:MICONV} USES+= iconv CONFIGURE_ARGS+= --with-iconv +LDFLAGS+= ${ICONV_LIB} .else CONFIGURE_ARGS+= --without-iconv .endif