Sat Sep 9 22:52:56 2017 UTC ()
clang 5.x is not less than 4.x.


(dholland)
diff -r1.19 -r1.20 pkgsrc/emulators/stella/distinfo
diff -r1.1 -r1.2 pkgsrc/emulators/stella/patches/patch-configure

cvs diff -r1.19 -r1.20 pkgsrc/emulators/stella/distinfo (expand / switch to unified diff)

--- pkgsrc/emulators/stella/distinfo 2017/01/26 12:45:41 1.19
+++ pkgsrc/emulators/stella/distinfo 2017/09/09 22:52:55 1.20
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.19 2017/01/26 12:45:41 mef Exp $ 1$NetBSD: distinfo,v 1.20 2017/09/09 22:52:55 dholland Exp $
2 2
3SHA1 (stella-4.7.3.tar.gz) = 7f4a4f8c88b335aee35bd2a87f3f4e109d7cb190 3SHA1 (stella-4.7.3.tar.gz) = 7f4a4f8c88b335aee35bd2a87f3f4e109d7cb190
4RMD160 (stella-4.7.3.tar.gz) = 188ccb822f8e3eb6b231ff0d4460fd6d9bf44ccc 4RMD160 (stella-4.7.3.tar.gz) = 188ccb822f8e3eb6b231ff0d4460fd6d9bf44ccc
5SHA512 (stella-4.7.3.tar.gz) = 76028f3e4a8a7d49e2444d1d3c348060df4dfa54a7675521c3197235084f3eb44550e0df5a6b57c71c404a87d648f9a7798bb850faec7a17499b97ca4fd52bb5 5SHA512 (stella-4.7.3.tar.gz) = 76028f3e4a8a7d49e2444d1d3c348060df4dfa54a7675521c3197235084f3eb44550e0df5a6b57c71c404a87d648f9a7798bb850faec7a17499b97ca4fd52bb5
6Size (stella-4.7.3.tar.gz) = 2270157 bytes 6Size (stella-4.7.3.tar.gz) = 2270157 bytes
7SHA1 (patch-configure) = 141f240a686a85ffe7eda4a145fa681c4733dbe9 7SHA1 (patch-configure) = 1577ad9c5efd98c82a91dda55e8610775aa6276e
8SHA1 (patch-src_unix_FSNodePOSIX.cxx) = 8679698480dd443bbcf9d92411ad307bfbe700b3 8SHA1 (patch-src_unix_FSNodePOSIX.cxx) = 8679698480dd443bbcf9d92411ad307bfbe700b3

cvs diff -r1.1 -r1.2 pkgsrc/emulators/stella/patches/patch-configure (expand / switch to unified diff)

--- pkgsrc/emulators/stella/patches/patch-configure 2015/12/21 06:46:04 1.1
+++ pkgsrc/emulators/stella/patches/patch-configure 2017/09/09 22:52:55 1.2
@@ -1,15 +1,25 @@ @@ -1,15 +1,25 @@
1$NetBSD: patch-configure,v 1.1 2015/12/21 06:46:04 dbj Exp $ 1$NetBSD: patch-configure,v 1.2 2017/09/09 22:52:55 dholland Exp $
2 2
3Recognize solaris, dragonfly, and darwin. 3Recognize more clang versions.
 4Recognize solaris, dragonfly, bitrig, and darwin.
4 5
5--- configure.orig 2015-04-22 14:11:11.000000000 +0000 6--- configure.orig 2016-11-21 19:22:17.000000000 +0000
6+++ configure 7+++ configure
7@@ -497,7 +497,7 @@ else 8@@ -392,7 +392,7 @@ if test "$have_clang" = yes; then
 9 fi
 10
 11 case $cxx_version in
 12- [3].[4-9]|[3].[4-9].[0-9]|[3].[4-9].[0-9][-.]*|[4].[0-9].[0-9])
 13+ [3].[4-9]|[3].[4-9].[0-9]|[3-6].[4-9].[0-9][-.]*)
 14 _cxx_major=`echo $cxx_version | cut -d '.' -f 1`
 15 _cxx_minor=`echo $cxx_version | cut -d '.' -f 2`
 16 cxx_version="$cxx_version, ok"
 17@@ -515,7 +515,7 @@ else
8 echo_n "Checking hosttype... " 18 echo_n "Checking hosttype... "
9 echo $_host_os 19 echo $_host_os
10 case $_host_os in 20 case $_host_os in
11- linux* | openbsd* | freebsd* | kfreebsd* | netbsd* | bsd* | gnu0.* | sunos* | hpux* | beos*) 21- linux* | openbsd* | freebsd* | kfreebsd* | netbsd* | bsd* | gnu0.* | sunos* | hpux* | beos*)
12+ linux* | openbsd* | freebsd* | kfreebsd* | netbsd* | bsd* | gnu0.* | sunos* | hpux* | beos* | solaris* | dragonfly* | darwin*) 22+ linux* | openbsd* | freebsd* | kfreebsd* | netbsd* | bsd* | gnu0.* | sunos* | hpux* | beos* | solaris* | dragonfly* | bitrig* | darwin*)
13 DEFINES="$DEFINES -DUNIX" 23 DEFINES="$DEFINES -DUNIX"
14 _host_os=unix 24 _host_os=unix
15 ;; 25 ;;