pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/python311



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.

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



Home | Main Index | Thread Index | Old Index