From owner-svn-ports-head@FreeBSD.ORG Sat Nov 2 00:56:24 2013 Return-Path: Delivered-To: svn-ports-head@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 9029B650; Sat, 2 Nov 2013 00:56:24 +0000 (UTC) (envelope-from flo@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 7C69B2573; Sat, 2 Nov 2013 00:56:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA20uOVJ033871; Sat, 2 Nov 2013 00:56:24 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA20uOq6033870; Sat, 2 Nov 2013 00:56:24 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201311020056.rA20uOq6033870@svn.freebsd.org> From: Florian Smeets Date: Sat, 2 Nov 2013 00:56:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332437 - head/lang/php53 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 00:56:24 -0000 Author: flo Date: Sat Nov 2 00:56:23 2013 New Revision: 332437 URL: http://svnweb.freebsd.org/changeset/ports/332437 Log: Add LDFLAGS to the sqlite3 section, otherwise configure cannot properly detect whether sqlite3 was built with sqlite3_load_extension or not. PR: ports/182927 Submitted by: Birger Schacht Modified: head/lang/php53/Makefile.ext Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Sat Nov 2 00:51:49 2013 (r332436) +++ head/lang/php53/Makefile.ext Sat Nov 2 00:56:23 2013 (r332437) @@ -372,6 +372,7 @@ UTF8_DESC= UTF-8 support .if ${PHP_MODNAME} == "sqlite3" USE_SQLITE= yes CONFIGURE_ARGS+=--with-sqlite3=${LOCALBASE} +LDFLAGS+= -L${LOCALBASE}/lib .endif .if ${PHP_MODNAME} == "sybase_ct"