head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.10 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.8 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.6 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.4 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.2 pkgsrc-2009Q4-base:1.4 pkgsrc-2009Q2:1.3.0.32 pkgsrc-2009Q2-base:1.3 pkgsrc-2009Q1:1.3.0.30 pkgsrc-2009Q1-base:1.3 pkgsrc-2008Q4:1.3.0.28 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.26 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.24 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.22 pkgsrc-2008Q2-base:1.3 cwrapper:1.3.0.20 pkgsrc-2008Q1:1.3.0.18 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.16 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.14 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.12 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.10 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.8 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.6 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.4 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.2 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.2.0.10 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.8 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.6 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.4 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.2 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.1.1.1.0.6 pkgsrc-2004Q3-base:1.1.1.1 pkgsrc-2004Q2:1.1.1.1.0.4 pkgsrc-2004Q2-base:1.1.1.1 pkgsrc-2004Q1:1.1.1.1.0.2 pkgsrc-2004Q1-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.4 date 2009.09.03.10.48.19; author asau; state dead; branches; next 1.3; 1.3 date 2006.03.12.16.34.13; author rillig; state Exp; branches; next 1.2; 1.2 date 2004.11.29.08.47.29; author adam; state dead; branches; next 1.1; 1.1 date 2004.03.05.14.46.23; author adam; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2004.03.05.14.46.23; author adam; state Exp; branches; next ; desc @@ 1.4 log @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). @ text @$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)) \ ); \ @ 1.3 log @Added patch-ac, which fixes compilation failures in __asm__ statements. @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Changes 1.1.9: Algorithmic changes * Input of numbers in bases 2, 4, 8, 16 and 32 is now done in linear bit complexity as opposed to O(N^2). Useful for all kinds of persistency. Implementation changes * Fixed several bugs in the integer input and output routines that could be blamed for random crashes in the following cases: output in base 32 for quite large numbers, input in base 2 for fixnums and input in base 3 for fixnums on a 64 bit target. * Fixed crash when radix specifiers were used in input streams. * Speed up on x86_64 and ia64 by adding some inline assembly. Other changes * Fixes for compilation on MacOS X and little endian Mips. @ text @d1 1 a1 1 $NetBSD: patch-ac,v 1.1 2004/03/05 14:46:23 adam Exp $ d3 13 a15 19 --- Makefile.in.orig 2003-11-21 20:48:52.000000000 +0000 +++ Makefile.in @@@@ -21,6 +21,7 @@@@ MKDIR = mkdir -p @@SET_MAKE@@ INSTALL = @@INSTALL@@ INSTALL_PROGRAM = @@INSTALL_PROGRAM@@ +INSTALL_SCRIPT = @@INSTALL_SCRIPT@@ INSTALL_DATA = @@INSTALL_DATA@@ UNINSTALL_PROGRAM = @@UNINSTALL_PROGRAM@@ @@@@ -33,7 +34,7 @@@@ all : force install : installdirs force cd @@subdir@@; $(MAKE) install - $(INSTALL_PROGRAM) cln-config $(DESTDIR)$(bindir)/cln-config + $(INSTALL_SCRIPT) cln-config $(DESTDIR)$(bindir)/cln-config $(INSTALL_DATA) cln-config.1 $(DESTDIR)$(mandir)/man1/cln-config.1 $(INSTALL_DATA) cln.m4 $(DESTDIR)$(datadir)/aclocal/cln.m4 $(INSTALL_DATA) cln.pc $(DESTDIR)$(libdir)/pkgconfig/cln.pc @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ @ 1.1.1.1 log @CLN - Class Library for Numbers is a C++ library providing the following features: * Rich set of number classes * Elementary, logical, transcendental functions * C++ as implementation language brings efficiency, type safety, and algebraic syntax * Memory efficiency * Speed efficiency * Interoperability @ text @@