From owner-svn-ports-head@freebsd.org Tue Oct 31 19:53:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2AC50E62335; Tue, 31 Oct 2017 19:53:56 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE6D92FCC; Tue, 31 Oct 2017 19:53:55 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9VJrtvo085229; Tue, 31 Oct 2017 19:53:55 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9VJrtbY085228; Tue, 31 Oct 2017 19:53:55 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201710311953.v9VJrtbY085228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 31 Oct 2017 19:53:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453249 - head/sysutils/pear-Log X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/sysutils/pear-Log X-SVN-Commit-Revision: 453249 X-SVN-Commit-Repository: ports 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.23 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: Tue, 31 Oct 2017 19:53:56 -0000 Author: joneum Date: Tue Oct 31 19:53:54 2017 New Revision: 453249 URL: https://svnweb.freebsd.org/changeset/ports/453249 Log: sysutils/pear-Log: fix wrong OPTIONS_DEFINDE Approved by: tcberner (mentor) MFH: 2017Q4 Differential Revision: https://reviews.freebsd.org/D12881 Modified: head/sysutils/pear-Log/Makefile Modified: head/sysutils/pear-Log/Makefile ============================================================================== --- head/sysutils/pear-Log/Makefile Tue Oct 31 19:08:52 2017 (r453248) +++ head/sysutils/pear-Log/Makefile Tue Oct 31 19:53:54 2017 (r453249) @@ -12,7 +12,7 @@ LICENSE= MIT USES= pear -OPTIONS_DEFINE= PEAR_DB PEAR_MDB2 PEAR_MAIL PEAR_SQLITE +OPTIONS_DEFINE= PEAR_DB PEAR_MDB2 PEAR_MAIL PHP_SQLITE PEAR_DB_DESC= PEAR::DB support PEAR_MDB2_DESC= PEAR::MDB2 support PEAR_MAIL_DESC= PEAR::Mail support @@ -21,6 +21,6 @@ PHP_SQLITE_DESC= PHP sqlite support (php5 only) PEAR_DB_BUILD_DEPENDS= ${PEARDIR}/DB.php:databases/pear-DB PEAR_MDB2_BUILD_DEPENDS= ${PEARDIR}/MDB2.php:databases/pear-MDB2 PEAR_MAIL_BUILD_DEPENDS= ${PEARDIR}/Mail.php:mail/pear-Mail -PHP_SQLITE_USE= PHP=sqlite +PHP_SQLITE_USE= PHP=sqlite3 .include