summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2018-05-17 11:18:50 +0000
committerjperkin <jperkin@pkgsrc.org>2018-05-17 11:18:50 +0000
commit4f539f1d436f368387b74d350ced40af3dfbe5d9 (patch)
tree832bd019cf04477b225b5d7206f53cbc7e49271d /misc
parent2436d8d771655fb7450b1331cd2fe7d091680b2f (diff)
downloadpkgsrc-4f539f1d436f368387b74d350ced40af3dfbe5d9.tar.gz
kstars: Fix __sun check.
Diffstat (limited to 'misc')
-rw-r--r--misc/kstars/distinfo3
-rw-r--r--misc/kstars/patches/patch-kstars_htmesh_SkipListElement.h15
2 files changed, 17 insertions, 1 deletions
diff --git a/misc/kstars/distinfo b/misc/kstars/distinfo
index a4d1cc9f69a..0a31787b9a6 100644
--- a/misc/kstars/distinfo
+++ b/misc/kstars/distinfo
@@ -1,10 +1,11 @@
-$NetBSD: distinfo,v 1.14 2016/07/16 04:14:03 markd Exp $
+$NetBSD: distinfo,v 1.15 2018/05/17 11:18:50 jperkin Exp $
SHA1 (kstars-4.14.3.tar.xz) = 108b204308d464f03f3119b08d2e53c203615c05
RMD160 (kstars-4.14.3.tar.xz) = 6e0ae12cc2b7c9277294c720ebab6502d3fffd29
SHA512 (kstars-4.14.3.tar.xz) = c843506ae0d85e03b9ac3b11be73f35b66f9fc64adddf7a4643cb397fc59628920254aa056d7bf968b54893ce035d40d0c17a7d0fc576d3dae5799fd0f16ec3e
Size (kstars-4.14.3.tar.xz) = 12374500 bytes
SHA1 (patch-kstars_fitsviewer_fitsimage.cpp) = 006d16c81f6eaf897cc65233409b3b9af4b07868
+SHA1 (patch-kstars_htmesh_SkipListElement.h) = 0636fc46b3aae72ab1dcf442a5029d97d635b23c
SHA1 (patch-kstars_skyobjects_satellite.cpp) = a30cd6139fff8e5968d704b901dd2a059548d527
SHA1 (patch-kstars_tools_altvstime.cpp) = 24b8d4c31216fd08353e29825c6213349cfa6287
SHA1 (patch-kstars_widgets_moonphasecalendarwidget.h) = c3c507447ea4586b2d1224e49cb4c44ba0a13918
diff --git a/misc/kstars/patches/patch-kstars_htmesh_SkipListElement.h b/misc/kstars/patches/patch-kstars_htmesh_SkipListElement.h
new file mode 100644
index 00000000000..778cd88c551
--- /dev/null
+++ b/misc/kstars/patches/patch-kstars_htmesh_SkipListElement.h
@@ -0,0 +1,15 @@
+$NetBSD: patch-kstars_htmesh_SkipListElement.h,v 1.1 2018/05/17 11:18:50 jperkin Exp $
+
+Fix __sun check.
+
+--- kstars/htmesh/SkipListElement.h.orig 2014-09-19 05:39:42.000000000 +0000
++++ kstars/htmesh/SkipListElement.h
+@@ -20,7 +20,7 @@
+ #ifdef _WIN32
+ #define KEY_MAX _I64_MAX
+ #else
+-# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || ( defined(__SUNPRO_CC) && defined(__sun) )
++# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__sun)
+ # define KEY_MAX LLONG_MAX
+ # else
+ # define KEY_MAX LONG_LONG_MAX