diff options
author | adam <adam@pkgsrc.org> | 2007-01-04 21:20:57 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2007-01-04 21:20:57 +0000 |
commit | fd34860d999f8ef6cdcb2440c7eb27f5d3f91e1d (patch) | |
tree | b89605dfb065478b4e90d520e6db220cd42666a9 /math/cln/patches | |
parent | e7938b0138ea760253d8a2d92096cf2e609f395d (diff) | |
download | pkgsrc-fd34860d999f8ef6cdcb2440c7eb27f5d3f91e1d.tar.gz |
Changes 1.1.13:
* Compilation fixes for 64-bit brokenness introduced in last release.
Changes 1.1.12:
* Fix rare assertion when printing quite large floats.
* Compilation fixes for several platforms: *BSD, Intel Mac, and MinGW.
Diffstat (limited to 'math/cln/patches')
-rw-r--r-- | math/cln/patches/patch-aa | 22 | ||||
-rw-r--r-- | math/cln/patches/patch-ab | 13 |
2 files changed, 5 insertions, 30 deletions
diff --git a/math/cln/patches/patch-aa b/math/cln/patches/patch-aa deleted file mode 100644 index 39eed5e0b15..00000000000 --- a/math/cln/patches/patch-aa +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/03/05 14:46:23 adam Exp $ - ---- src/base/random/cl_random_from.cc.orig 2003-12-29 19:04:08.000000000 +0000 -+++ src/base/random/cl_random_from.cc -@@ -12,7 +12,7 @@ - #include "cl_base_config.h" - #include "cl_low.h" - --#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) -+#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) || defined(__NetBSD__) - - #include <sys/types.h> - #include <unistd.h> // declares getpid() -@@ -64,7 +64,7 @@ random_state::random_state () - { - var uint32 seed_hi; - var uint32 seed_lo; --#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) -+#if defined(unix) || defined(__unix) || defined(_AIX) || defined(sinix) || (defined(__MACH__) && defined(__APPLE__)) || (defined(_WIN32) && defined(__GNUC__)) || defined(__BEOS__) || defined(__NetBSD__) - seed_lo = ::get_seed(); - seed_hi = (rand() // zufällige 31 Bit (bei UNIX_BSD) bzw. 16 Bit (bei UNIX_SYSV) - << 8) ^ (uintL)(getpid()); // ca. 8 Bit von der Process ID diff --git a/math/cln/patches/patch-ab b/math/cln/patches/patch-ab index 5592f5b727e..f150c803d16 100644 --- a/math/cln/patches/patch-ab +++ b/math/cln/patches/patch-ab @@ -1,11 +1,8 @@ -$NetBSD: patch-ab,v 1.3 2006/03/12 16:33:32 rillig Exp $ +$NetBSD: patch-ab,v 1.4 2007/01/04 21:20:57 adam Exp $ -HTML documentation is installed to share/doc/cln/html, DVI and -PostScript are left out. - ---- doc/Makefile.in.orig 2004-10-26 21:29:16.000000000 +0000 +--- doc/Makefile.in.orig 2006-08-06 14:14:20.000000000 +0200 +++ doc/Makefile.in -@@ -12,7 +12,7 @@ exec_prefix = @exec_prefix@ +@@ -13,7 +13,7 @@ datarootdir = @datarootdir@ datadir = @datadir@ infodir = @infodir@ mandir = @mandir@ @@ -14,7 +11,7 @@ PostScript are left out. dvidir = $(datadir)/dvi DESTDIR = -@@ -42,7 +42,7 @@ SHELL = /bin/sh +@@ -43,7 +43,7 @@ SHELL = /bin/sh VPATH = $(srcdir) @@ -23,7 +20,7 @@ PostScript are left out. info : $(srcdir)/$(PACKAGE).info -@@ -87,13 +87,11 @@ install : all installdirs force +@@ -88,13 +88,11 @@ install : all installdirs force install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$(PACKAGE).info || :;\ else : ; fi $(INSTALL_DATA) $(srcdir)/$(PACKAGE)_*.html $(DESTDIR)$(htmldir) |