Received: by mail.netbsd.org (Postfix, from userid 605) id 1F19B852BB; Fri, 2 Feb 2024 15:50:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4DD69852B6 for ; Fri, 2 Feb 2024 15:50:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ipcCdYT_6Frz for ; Fri, 2 Feb 2024 15:50:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6549F84D6C for ; Fri, 2 Feb 2024 15:50:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 537F2FA42; Fri, 2 Feb 2024 15:50:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706889055188930" MIME-Version: 1.0 Date: Fri, 2 Feb 2024 15:50:55 +0000 From: "Izumi Tsutsui" Subject: CVS commit: pkgsrc/lang/python311 To: pkgsrc-changes@NetBSD.org Reply-To: tsutsui@netbsd.org X-Mailer: log_accum Message-Id: <20240202155055.537F2FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706889055188930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tsutsui Date: Fri Feb 2 15:50:55 UTC 2024 Modified Files: pkgsrc/lang/python311: Makefile Log Message: python311: kludge to appease configure error on vax where no IEEE-754. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/lang/python311/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706889055188930 Content-Disposition: inline Content-Length: 808 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python311/Makefile diff -u pkgsrc/lang/python311/Makefile:1.24 pkgsrc/lang/python311/Makefile:1.25 --- pkgsrc/lang/python311/Makefile:1.24 Sat Jan 13 04:24:28 2024 +++ pkgsrc/lang/python311/Makefile Fri Feb 2 15:50:55 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2024/01/13 04:24:28 riastradh Exp $ +# $NetBSD: Makefile,v 1.25 2024/02/02 15:50:55 tsutsui Exp $ .include "dist.mk" @@ -72,6 +72,11 @@ CONFIGURE_ARGS.NetBSD+= ac_cv_file__dev_ CONFIGURE_ARGS.NetBSD+= ac_cv_file__dev_ptc=no .endif +.if ${MACHINE_ARCH} == "vax" +# XXX "checking whether float word ordering is bigendian... unknown" +CONFIGURE_ARGS+= ax_cv_c_float_words_bigendian=no +.endif + # http://bugs.python.org/issue13241 .if ${MACHINE_PLATFORM:MDarwin-1[12].*} PKGSRC_COMPILER= clang --_----------=_1706889055188930--