diff options
author | he <he> | 2009-02-12 15:24:14 +0000 |
---|---|---|
committer | he <he> | 2009-02-12 15:24:14 +0000 |
commit | 51ee7180c0746eed03a44973cb5cf390cc22e779 (patch) | |
tree | cb285e92255d01b9545a451a716e2c8e92fbd48d /lang | |
parent | 0f269569f4129363a15216bd3e76db2383392d2c (diff) | |
download | pkgsrc-51ee7180c0746eed03a44973cb5cf390cc22e779.tar.gz |
Update from version 3.0.1376 to 3.0.1376nb1.
Pkgsrc changes:
o Add a patch so that our PowerPC-based ports are properly detected
by the dtoa configuration logic, by also recognizing __powerpc__
to indicate big-endian float format.
This should fix PR#40624.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/see/Makefile | 3 | ||||
-rw-r--r-- | lang/see/distinfo | 3 | ||||
-rw-r--r-- | lang/see/patches/patch-aa | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/lang/see/Makefile b/lang/see/Makefile index 820c548b05c..38e06f33095 100644 --- a/lang/see/Makefile +++ b/lang/see/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1.1.1 2008/10/20 00:45:35 ahoka Exp $ +# $NetBSD: Makefile,v 1.2 2009/02/12 15:24:14 he Exp $ # DISTNAME= see-3.0.1376 +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= http://users.tpg.com.au/dle0nard/software/ diff --git a/lang/see/distinfo b/lang/see/distinfo index 65d2943acc5..c3c81d6ca23 100644 --- a/lang/see/distinfo +++ b/lang/see/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2008/10/20 00:45:35 ahoka Exp $ +$NetBSD: distinfo,v 1.2 2009/02/12 15:24:14 he Exp $ SHA1 (see-3.0.1376.tar.gz) = d803adac6298a0f556d59f501f0376d9196d0821 RMD160 (see-3.0.1376.tar.gz) = 1fb3eb7a796ba96fe68fbc3225bcaafff5692f6f Size (see-3.0.1376.tar.gz) = 1066852 bytes +SHA1 (patch-aa) = 00d5260d023bc4f03239aa42eff0ced616a9691f diff --git a/lang/see/patches/patch-aa b/lang/see/patches/patch-aa new file mode 100644 index 00000000000..1fc8d3b9bac --- /dev/null +++ b/lang/see/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2009/02/12 15:24:14 he Exp $ + +--- libsee/dtoa_config.h.orig 2007-09-14 00:01:42.000000000 +0200 ++++ libsee/dtoa_config.h +@@ -16,7 +16,7 @@ + # define IEEE_8087 + #endif + +-#if defined(__m68k__) || defined(__sparc__) || defined(__ppc__) ++#if defined(__m68k__) || defined(__sparc__) || defined(__ppc__) || defined(__powerpc__) + # define IEEE_MC68k + #endif + |