pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/bootstrap Skip trying to make use of a 64bit ABI on Da...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a033559a9ecd
branches:  trunk
changeset: 405718:a033559a9ecd
user:      sevan <sevan%pkgsrc.org@localhost>
date:      Thu Dec 05 22:19:56 2019 +0000

description:
Skip trying to make use of a 64bit ABI on Darwin as the system libraries on
Tiger lack support and it doesn't work out too great on Leopard either, though
it's much better than the former release.

diffstat:

 bootstrap/bootstrap |  9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

diffs (25 lines):

diff -r e90d30f2cb09 -r a033559a9ecd bootstrap/bootstrap
--- a/bootstrap/bootstrap       Thu Dec 05 21:31:51 2019 +0000
+++ b/bootstrap/bootstrap       Thu Dec 05 22:19:56 2019 +0000
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# $NetBSD: bootstrap,v 1.272 2019/11/05 13:58:06 triaxx Exp $
+# $NetBSD: bootstrap,v 1.273 2019/12/05 22:19:56 sevan Exp $
 #
 # Copyright (c) 2001-2011 Alistair Crooks <agc%NetBSD.org@localhost>
 # All rights reserved.
@@ -226,12 +226,7 @@
                echo `uname -m`
                ;;
        powerpc)
-               # sysctl mib exists on 64-bit hardware
-               if [ -n "`sysctl -n hw.optional.64bitops 2>/dev/null`" ]; then
-                       echo "powerpc64"
-               else
-                       echo "powerpc"
-               fi
+               echo "powerpc"
                ;;
        esac
 }



Home | Main Index | Thread Index | Old Index