From owner-svn-ports-all@freebsd.org Thu Nov 12 14:00:47 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7AD932EB2CC; Thu, 12 Nov 2020 14:00:47 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CX3Cg28bzz3qjm; Thu, 12 Nov 2020 14:00:47 +0000 (UTC) (envelope-from danfe@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3961A27B3E; Thu, 12 Nov 2020 14:00:47 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0ACE0kB1045381; Thu, 12 Nov 2020 14:00:46 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0ACE0kaC045380; Thu, 12 Nov 2020 14:00:46 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202011121400.0ACE0kaC045380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 12 Nov 2020 14:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554960 - head/databases/xtrabackup8 X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/databases/xtrabackup8 X-SVN-Commit-Revision: 554960 X-SVN-Commit-Repository: ports 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.34 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: Thu, 12 Nov 2020 14:00:47 -0000 Author: danfe Date: Thu Nov 12 14:00:46 2020 New Revision: 554960 URL: https://svnweb.freebsd.org/changeset/ports/554960 Log: Make sure that ARCH variable is defined at the time of check. Reported by: dvl Pointy hat to: danfe Modified: head/databases/xtrabackup8/Makefile Modified: head/databases/xtrabackup8/Makefile ============================================================================== --- head/databases/xtrabackup8/Makefile Thu Nov 12 13:31:01 2020 (r554959) +++ head/databases/xtrabackup8/Makefile Thu Nov 12 14:00:46 2020 (r554960) @@ -39,6 +39,8 @@ CMAKE_ARGS= -DBUILD_CONFIG:STRING=xtrabackup_release CMAKE_ARGS+= -DWITH_${component}:STRING=system .endfor +.include + # Since MySQL 8.0.20 InnoDB engine uses new memory alligned allocator # which is broken on i386 due to different size of types and causes a # 'static_assert(alignof(T) <= alignof(std::max_align_t))' error @@ -60,4 +62,4 @@ post-stage: @${RM} -r ${STAGEDIR}${PREFIX}/docs @${RMDIR} ${STAGEDIR}${PREFIX}/lib/plugin/debug -.include +.include