From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5B9A815ACB3 for ; Thu, 6 Apr 2023 14:09:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32D50E0885; Thu, 6 Apr 2023 14:09:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F793E0885 for ; Thu, 6 Apr 2023 14:09:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 341DB340F42 for ; Thu, 6 Apr 2023 14:09:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72C29A20 for ; Thu, 6 Apr 2023 14:09:18 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1680789576.64d25327b6b2e1986fb31d61b938101f06623eba.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/boinc.eclass X-VCS-Directories: eclass/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 64d25327b6b2e1986fb31d61b938101f06623eba X-VCS-Branch: dev Date: Thu, 6 Apr 2023 14:09:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c491a880-6e11-406c-8882-208b52237337 X-Archives-Hash: 8bcce180d984d3e62a4f786a7727aa15 commit: 64d25327b6b2e1986fb31d61b938101f06623eba Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Thu Apr 6 13:22:55 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Apr 6 13:59:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64d25327 boinc.eclass: add --enable-static and --disable-fcgi to default flags Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> eclass/boinc.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/boinc.eclass b/eclass/boinc.eclass index a90f19dd7..56d972b66 100644 --- a/eclass/boinc.eclass +++ b/eclass/boinc.eclass @@ -109,15 +109,15 @@ boinc_require_source() { # @DESCRIPTION: # Configure BOINC source tree using autotools. # -# If no arguments are given, econf will be called -# with --enable-pkg-devel flag. +# If no arguments are given, econf will be called with +# '--enable-static --enable-pkg-devel --disable-fcgi' flags. # # This function must be called in global scope. boinc_enable_autotools() { debug-print-function ${FUNCNAME} "${@}"] _BOINC_RUN_AUTOTOOLS=1 - _BOINC_ECONF_ARGS=${@:---enable-pkg-devel} + _BOINC_ECONF_ARGS=${@:---enable-static --enable-pkg-devel --disable-fcgi} } # @FUNCTION: boinc_override_config @@ -204,7 +204,7 @@ boinc_src_configure() { edo bash ./generate_svn_version.sh if [[ ${_BOINC_RUN_AUTOTOOLS} ]]; then - econf "${_BOINC_ECONF_ARGS[@]}" + econf ${_BOINC_ECONF_ARGS} else tc-export AR CC CPP CXX LD OBJDUMP RANLIB fi