From commits-return-14675-archive-asf-public=cust-asf.ponee.io@apr.apache.org Fri Oct 26 15:54:28 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 450D4180647 for ; Fri, 26 Oct 2018 15:54:28 +0200 (CEST) Received: (qmail 109 invoked by uid 500); 26 Oct 2018 13:54:27 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 100 invoked by uid 99); 26 Oct 2018 13:54:27 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2018 13:54:27 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 843863A028E for ; Fri, 26 Oct 2018 13:54:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1844905 - in /apr/tools/buildbot/macosx: aprbuild.sh aprutilbuild.sh Date: Fri, 26 Oct 2018 13:54:26 -0000 To: commits@apr.apache.org From: brane@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20181026135426.843863A028E@svn01-us-west.apache.org> Author: brane Date: Fri Oct 26 13:54:25 2018 New Revision: 1844905 URL: http://svn.apache.org/viewvc?rev=1844905&view=rev Log: Ignore SQLite3 on macOS, for some reaseon the DSO is not loaded by the tests. Modified: apr/tools/buildbot/macosx/aprbuild.sh apr/tools/buildbot/macosx/aprutilbuild.sh Modified: apr/tools/buildbot/macosx/aprbuild.sh URL: http://svn.apache.org/viewvc/apr/tools/buildbot/macosx/aprbuild.sh?rev=1844905&r1=1844904&r2=1844905&view=diff ============================================================================== --- apr/tools/buildbot/macosx/aprbuild.sh (original) +++ apr/tools/buildbot/macosx/aprbuild.sh Fri Oct 26 13:54:25 2018 @@ -52,7 +52,8 @@ env CC=clang CXX=clang++ \ ${abssrc}/configure \ --prefix="${absbld}/.install-prefix" \ --enable-threads \ - --with-devrandom=/dev/urandom + --with-devrandom=/dev/urandom \ + --without-sqlite3 test -f config.log && mv config.log "${abssrc}/.test-logs/config.log" Modified: apr/tools/buildbot/macosx/aprutilbuild.sh URL: http://svn.apache.org/viewvc/apr/tools/buildbot/macosx/aprutilbuild.sh?rev=1844905&r1=1844904&r2=1844905&view=diff ============================================================================== --- apr/tools/buildbot/macosx/aprutilbuild.sh (original) +++ apr/tools/buildbot/macosx/aprutilbuild.sh Fri Oct 26 13:54:25 2018 @@ -72,6 +72,7 @@ env CC=clang CXX=clang++ \ ${abssrc}/configure \ --prefix="${absbld}/.install-prefix" \ --with-apr="${absbld}/.apr-prefix/bin/apr-1-config" \ + --without-sqlite3 test -f config.log && mv config.log "${abssrc}/.test-logs/apr-util-config.log"