summaryrefslogtreecommitdiff
path: root/math/cln/patches
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2009-09-03 10:48:18 +0000
committerasau <asau@pkgsrc.org>2009-09-03 10:48:18 +0000
commit3562aae18c4a302b37843cc372b26b4d49dd7eee (patch)
tree3920ba5e958665d7646c46ea7706de0fac3e5ea9 /math/cln/patches
parent1862c9b8a58e2c3f7baff63478f98eb3cc5273e5 (diff)
downloadpkgsrc-3562aae18c4a302b37843cc372b26b4d49dd7eee.tar.gz
Update to CLN 1.3.0.
Changes since previous package: 2009-06-30, version 1.3.0 * Use the GNU autotools as build system. * Implemented a more portable module dependency mechanism. 2008-04-05, version 1.2.2 * Re-establish CLN-1.2.0 ABI and fix ARM build, both inadvertently broken in the previous release. 2008-03-24, version 1.2.1 * Fixed some bugs in the output of numbers larger than 2^32 decimal digits. * Modifying C/C++ operators like +=, ++, etc. are now enabled by default. 2008-01-19, version 1.2.0 * Save big amounts of memory in computation of some functions and constants by: - Avoiding pre-computation of series terms and instead computing them in a streamed way. - Avoiding computation with excess precision in binary splitting algorithm by coercion of intermediate integer values to floating-point as early as possible. * Added support for huge numbers: - intC used for all counter loops. - intE is now a 64-bit type on all 64-bit platforms and even on selected 32-bit platforms. * CLN now uses C++ exceptions for error handling. The cl_abort() hook is not supported any more. Please refer to the documentation to learn about existing exception types. * Fixed a bug on i386 where comparing Z/2Z ring zeros returnd random results. * Removed cl_boolean. Use built-in C++ bool instead. * Dropped the cln-config script. Please use pkg-config instead. * Updated infrastructure to that of libtool-1.5.24. * Changed encoding of all files to UTF-8. * Fix compilation issues with GCC-4.3. * Fix linking issues on platforms that don't feature weak symbols (like win32).
Diffstat (limited to 'math/cln/patches')
-rw-r--r--math/cln/patches/patch-ab45
-rw-r--r--math/cln/patches/patch-ac15
2 files changed, 11 insertions, 49 deletions
diff --git a/math/cln/patches/patch-ab b/math/cln/patches/patch-ab
index f150c803d16..6b5d1e18a39 100644
--- a/math/cln/patches/patch-ab
+++ b/math/cln/patches/patch-ab
@@ -1,36 +1,13 @@
-$NetBSD: patch-ab,v 1.4 2007/01/04 21:20:57 adam Exp $
+$NetBSD: patch-ab,v 1.5 2009/09/03 10:48:19 asau Exp $
---- doc/Makefile.in.orig 2006-08-06 14:14:20.000000000 +0200
-+++ doc/Makefile.in
-@@ -13,7 +13,7 @@ datarootdir = @datarootdir@
- datadir = @datadir@
+--- doc/Makefile.in.orig 2009-06-14 02:14:09.000000000 +0400
++++ doc/Makefile.in 2009-09-03 14:03:04.000000000 +0400
+@@ -180,7 +180,7 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
+-htmldir = @htmldir@
++htmldir = @htmldir@/doc/cln/html
+ includedir = @includedir@
infodir = @infodir@
- mandir = @mandir@
--htmldir = $(datadir)/html
-+htmldir = $(datadir)/doc/cln/html
- dvidir = $(datadir)/dvi
- DESTDIR =
-
-@@ -43,7 +43,7 @@ SHELL = /bin/sh
-
- VPATH = $(srcdir)
-
--all : info dvi ps html
-+all : info html
-
-
- info : $(srcdir)/$(PACKAGE).info
-@@ -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)
-- $(INSTALL_DATA) $(srcdir)/$(PACKAGE).dvi $(DESTDIR)$(dvidir)/$(PACKAGE).dvi
-
- installdirs : force
- $(MKDIR) $(DESTDIR)$(datadir)
- $(MKDIR) $(DESTDIR)$(infodir)
- $(MKDIR) $(DESTDIR)$(htmldir)
-- $(MKDIR) $(DESTDIR)$(dvidir)
-
- uninstall : force
- @if (install-info --version && \
+ install_sh = @install_sh@
diff --git a/math/cln/patches/patch-ac b/math/cln/patches/patch-ac
deleted file mode 100644
index e89fae13100..00000000000
--- a/math/cln/patches/patch-ac
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2006/03/12 16:34:13 rillig Exp $
-
-In parameterized __asm__ statements, literal % must be doubled.
-
---- src/base/cl_low.h.orig 2006-02-18 12:56:13.000000000 +0100
-+++ src/base/cl_low.h 2006-02-18 12:56:23.000000000 +0100
-@@ -238,7 +238,7 @@ inline uint32 mulu32_unchecked (uint32 a
- #define mulu32(x,y,hi_zuweisung,lo_zuweisung) \
- ({ var register uint64 _hi; \
- var register uint64 _lo; \
-- __asm__("umul %2,%3,%1\n\trd %y,%0" \
-+ __asm__("umul %2,%3,%1\n\trd %%y,%0" \
- : "=r" (_hi), "=r" (_lo) \
- : "r" ((uint32)(x)), "r" ((uint32)(y)) \
- ); \