You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1508 lines
56 KiB

19 years ago
24 years ago
24 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. 2006-04-19 Bruno Haible <bruno@clisp.org>
  2. Prepare for autoconf-2.60.
  3. * general.m4 (CL_CC_WORKS): Include <stdlib.h>, for exit() declaration.
  4. * longdouble.m4 (CL_LONGDOUBLE): Likewise.
  5. * longlong.m4 (CL_LONGLONG): Likewise.
  6. * times.m4 (CL_TIMES_CLOCK): Likewise.
  7. Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
  8. 2005-12-04 Bruno Haible <bruno@clisp.org>
  9. * src/integer/conv/cl_I_to_digits.cc (I_to_digits_noshrink): Set
  10. erg->len at the end.
  11. 2005-12-04 Bruno Haible <bruno@clisp.org>
  12. Extend the fixnum range from 32 bits to 61 bits on 64-bit platforms.
  13. * doc/cln.tex (gcd, jacobi): Take 'long' instead of 'int32' arguments.
  14. * include/cln/object.h (cl_value_shift): Define as 3, not 32, in the
  15. 64-bit case.
  16. * include/cln/types.h (intVsize): New macro.
  17. (sintV, uintV): New types.
  18. * include/cln/integer.h (gcd): Take uintV arguments.
  19. * include/cln/numtheory.h (jacobi): Take sintV arguments.
  20. * src/complex/input/cl_N_read.cc (read_complex): Call FN_to_UV instead
  21. of FN_to_UL.
  22. * src/complex/transcendental/cl_C_expt_C.cc: Likewise.
  23. * src/float/dfloat/elem/cl_DF_scale_I.cc: Use uintV instead of uintL
  24. * src/float/dfloat/elem/cl_DF_from_RA.cc: Don't assume values >= 2^53
  25. and < 2^55 are always bignums.
  26. where appropriate.
  27. * src/float/ffloat/conv/cl_RA_to_float.cc: Call FN_to_UV instead of
  28. FN_to_UL.
  29. * src/float/ffloat/elem/cl_FF_from_RA.cc: Likewise.
  30. * src/float/ffloat/elem/cl_FF_scale_I.cc: Call FN_to_V instead of
  31. FN_to_L.
  32. * src/float/lfloat/elem/cl_LF_scale_I.cc: Likewise.
  33. * src/float/output/cl_F_dprint.cc: Likewise.
  34. * src/float/sfloat/elem/cl_SF_from_RA.cc: Call FN_to_UV instead of
  35. FN_to_UL.
  36. * src/float/sfloat/elem/cl_SF_scale_I.cc: Call FN_to_V instead of
  37. FN_to_L.
  38. * src/integer/cl_I.h (FN_to_UV): Renamed from FN_to_UL, change return
  39. type.
  40. (FN_to_V): Renamed from FN_to_L, change return type.
  41. (FN_V_zerop): Renamed from FN_L_zerop.
  42. (FN_V_minusp): Renamed from FN_L_minusp.
  43. (cl_I_constructor_from_L2, cl_I_constructor_from_UL2): Define as an
  44. inline function on 64-bit platforms.
  45. (V_to_I, UV_to_I): New macros.
  46. (pFN_maxlength_digits_at): Return an uintV instead of an uint32.
  47. (set_pFN_maxlength_digits_at): Take an uintV instead of an uint32.
  48. * src/integer/algebraic/cl_I_sqrtp.cc: Call FN_to_UV instead of
  49. FN_to_UL.
  50. * src/integer/bitwise/cl_I_ash_I.cc: Call FN_to_V instead of FN_to_L.
  51. * src/integer/bitwise/cl_I_ilength.cc: Likewise.
  52. * src/integer/bitwise/cl_I_log_aux.cc: Likewise.
  53. * src/integer/bitwise/cl_I_logbitp_I.cc: Likewise.
  54. * src/integer/bitwise/cl_I_logcount.cc: Likewise.
  55. * src/integer/bitwise/cl_I_logtest.cc: Likewise.
  56. * src/integer/conv/cl_I_from_L2.cc: Don't produce code on 64-bit
  57. platforms.
  58. * src/integer/conv/cl_I_from_UL2.cc: Likewise.
  59. * src/integer/conv/cl_I_from_NDS.cc: Update.
  60. * src/integer/conv/cl_I_from_Q.cc: Remove cast to sint32.
  61. * src/integer/conv/cl_I_from_UQ.cc: Remove cast to uint32.
  62. * src/integer/conv/cl_I_to_L.cc: Check again fixnum that needs more
  63. than 32 bits.
  64. * src/integer/conv/cl_I_to_Q.cc: Call FN_to_V instead of FN_to_L.
  65. * src/integer/conv/cl_I_to_UL.cc: Likewise.
  66. * src/integer/conv/cl_I_to_UQ.cc: Likewise.
  67. * src/integer/elem/cl_I_div.cc: Treat fixnums that need more than 32
  68. bits like bignums.
  69. * src/integer/elem/cl_I_minus.cc: Call FN_to_V instead of FN_to_L.
  70. * src/integer/elem/cl_I_mul.cc: Likewise.
  71. * src/integer/elem/cl_I_plus.cc: Likewise.
  72. * src/integer/elem/cl_I_square.cc: Likewise.
  73. * src/integer/elem/cl_I_uminus.cc: Likewise.
  74. * src/integer/gcd/cl_I_gcd.cc: Likewise.
  75. * src/integer/gcd/cl_low_gcd.cc (gcd): Take uintV arguments.
  76. * src/integer/hash/cl_I_hashcode.cc: Call FN_to_V instead of FN_to_L.
  77. * src/integer/input/cl_I_read.cc (read_integer): Call FN_to_UV instead
  78. of FN_to_UL.
  79. * src/integer/misc/cl_I_ord2.cc (ord2): Call ord2_64 on 64-bit
  80. platforms.
  81. * src/integer/misc/cl_I_power2p.cc: Call FN_to_UV instead of FN_to_UL.
  82. * src/integer/misc/combin/cl_I_doublefactorial.cc (doublefakul_table):
  83. Extend table for larger fixnums.
  84. (doublefactorial): Update.
  85. * src/integer/misc/combin/cl_I_factorial.cc (fakul_table): Extend table
  86. for larger fixnums.
  87. (factorial): Update.
  88. * src/modinteger/cl_MI_fix16.h: Call FN_to_UV instead of FN_to_UL.
  89. * src/modinteger/cl_MI_fix29.h: Likewise.
  90. * src/modinteger/cl_MI_fix32.h: Likewise.
  91. * src/modinteger/cl_MI_std.h: Likewise.
  92. * src/numtheory/cl_nt_cornacchia4.cc: Call FN_to_V instead of FN_to_L.
  93. * src/numtheory/cl_nt_jacobi.cc: Likewise.
  94. * src/numtheory/cl_nt_jacobi_low.cc (jacobi_aux): Take uintV arguments
  95. instead of uint32 arguments.
  96. (jacobi): Take sintV argument instead of a sint32 argument.
  97. * src/rational/input/cl_RA_read.cc: Call FN_to_UV instead of FN_to_UL.
  98. * src/real/input/cl_R_read.cc: Likewise.
  99. * src/vector/cl_GV_I.cc: Likewise.
  100. * tests/timefact.cc: Call FN_to_V instead of FN_to_L.
  101. 2005-12-04 Bruno Haible <bruno@clisp.org>
  102. More complete 64-bit division macros.
  103. * src/base/cl_low.h (divu_6432_3232_w): Choose a different macro
  104. expansion on x86_64.
  105. (divu_6432_6432): New macro.
  106. (divu_6464_6464): Choose a different macro expansion for all CPUs
  107. except sparc64 and x86_64.
  108. (divu_12864_6464): Define NEED_VAR_divu_64_rest here.
  109. * src/base/low/cl_low_div.cc (divu_64_rest): Avoid defining it twice.
  110. (divu_6464_6464_): New function.
  111. 2005-12-04 Bruno Haible <bruno@clisp.org>
  112. * src/base/cl_low.h (ord2_64): New macro.
  113. 2005-12-02 Bruno Haible <bruno@clisp.org>
  114. * src/base/cl_low.h (mulu64) [x86_64]: Change asm restriction, since
  115. mulq doesn't accept immediate arguments.
  116. 2005-11-26 Bruno Haible <bruno@clisp.org>
  117. * src/base/cl_low.h (GENERIC_INTEGERLENGTH32): New macro.
  118. (integerlength64): Define using integerlength32 if integerlength32
  119. is not defined generically.
  120. 2005-11-26 Bruno Haible <bruno@clisp.org>
  121. * src/base/cl_low.h (mulu32) [SPARC64]: Remove rd instruction, since
  122. umul returns the complete 64-bit product in a register.
  123. (mulu32_w) [SPARC64]: Prefer umul over mulx instruction.
  124. (divu_6432_3232_w) [SPARC64]: Prefer umul/udiv over mulx/udivx
  125. instructions.
  126. 2005-11-26 Bruno Haible <bruno@clisp.org>
  127. * src/base/cl_low.h (divu_3216_1616): Prepend underscore to local
  128. variables.
  129. 2005-11-26 Bruno Haible <bruno@clisp.org>
  130. * src/base/cl_low.h (ord2_32): Parenthesize macro argument.
  131. 2005-12-17 Richard B. Kreckel <kreckel@ginac.de>
  132. * Created branch cln_1-1 for maintenance patches.
  133. This is the main branch, which will eventually become CLN 1.2.0.
  134. 2005-12-15 Dmitry V. Kustov <kustov@telex221.ru>
  135. * src/base/random/cl_random_from.cc: Add support for OpenBSD.
  136. 2005-11-23 Richard B. Kreckel <kreckel@ginac.de>
  137. * Version 1.1.11 released.
  138. 2005-11-20 Richard B. Kreckel <kreckel@ginac.de>
  139. * src/integer/conv/cl_I_cached_power.h: New file.
  140. * src/integer/conv/cl_I_cached_power.cc: New file.
  141. Contains power_table and cached_power_table previously...
  142. * src/integer/conv/cl_I_to_digits.cc: ...here.
  143. * src/integer/conv/cl_I_from_digits.cc: Use cached powers.
  144. 2005-11-02 Richard B. Kreckel <kreckel@ginac.de>
  145. * src/integer/conv/cl_I_from_digits.cc: Made input of all numbers in
  146. non-power-of-two base much faster.
  147. * tests/test_I_io.cc: New file...
  148. * tests/Makefile.in, tests/test_I.cc: ...used here.
  149. 2005-10-22 Richard B. Kreckel <kreckel@ginac.de>
  150. * Version 1.1.10 released.
  151. 2005-10-22 Richard B. Kreckel <kreckel@ginac.de>
  152. * src/Makefile.in: Accept CPPFLAGS from environment.
  153. * examples/Makefile.in: Likewise.
  154. * benchmarks/Makefile.in: Likewise.
  155. * tests/Makefile.in: Likewise.
  156. 2005-08-30 Richard B. Kreckel <kreckel@ginac.de>
  157. * include/cln/modules.h (CL_OUTPUT_LABEL): Work around redundant
  158. duplication of basic blocks on m68k.
  159. 2005-08-30 Richard B. Kreckel <kreckel@ginac.de>
  160. * include/cln/modules.h (CL_JUMP_TO): Fix mips* brokenness.
  161. 2005-08-27 Bruno Haible <bruno@clisp.org>
  162. Split aclocal.m4 into individual files.
  163. * m4/alloca.m4, m4/as-underscore.m4, m4/c++-constructors.m4:
  164. * m4/fpu_control.m4, m4/general.m4, m4/gettimeofday.m4:
  165. * m4/longdouble.m4, m4/longlong.m4, m4/param.m4, m4/perror.m4:
  166. * m4/proto.m4, m4/rusage.m4, m4/times.m4:
  167. New files, extracted from autoconf/aclocal.m4.
  168. * autoconf/aclocal.m4: m4_include them.
  169. * Makefile.devel (AUTOCONF_MACROS): New variable.
  170. (configure): Depend on it.
  171. (CLISP_M4DIR): Remove variable.
  172. (autoconf/aclocal.m4): Remove rule.
  173. 2005-08-27 Bruno Haible <bruno@clisp.org>
  174. * src/integer/bitwise/cl_I_ash_I.cc (ash): Avoid shifting a 32-bit
  175. zero value by more than 31 bits.
  176. 2005-08-27 Bruno Haible <bruno@clisp.org>
  177. Make the long-float overflow check work on 64-bit platforms.
  178. * src/float/lfloat/cl_LF.h (LF_exp_mid, LF_exp_high): Define as
  179. 'unsigned int', not 'unsigned long'.
  180. 2005-08-27 Bruno Haible <bruno@clisp.org>
  181. * include/cln/modules.h (CL_OUTPUT_LABEL): Work around redundant
  182. duplication of basic blocks by g++ 4.0.
  183. See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23345>.
  184. 2005-08-27 Bruno Haible <bruno@clisp.org>
  185. Make it possible to cross-compile CLN.
  186. * m4/intparam.m4: New file.
  187. * m4/floatparam.m4: New file.
  188. * autoconf/aclocal.m4: Include both.
  189. (CL_MACHINE): Add an additional CROSS_MACRO parameter.
  190. * configure.ac (CL_MACHINE): When cross-compiling, use
  191. CL_INTPARAM_CROSS and CL_FLOATPARAM_CROSS.
  192. 2005-08-27 Bruno Haible <bruno@clisp.org>
  193. Define HAVE_LONGLONG and HAVE_LONGDOUBLE when cross-compiling.
  194. * autoconf/aclocal.m4 (CL_LONGLONG, CL_LONGDOUBLE): When cross-
  195. compiling, use the test code from gnulib.
  196. 2005-08-27 Bruno Haible <bruno@clisp.org>
  197. * autoconf/aclocal.m4 (CL_RUSAGE): Fix error when cross-compiling.
  198. 2005-08-16 Richard B. Kreckel <kreckel@ginac.de>
  199. The patch of 2005-05-01 made it impossible to test the type of a cl_UP
  200. by comparing with &cl_class_univpoly_ring. We need an alternative:
  201. * include/cln/object.h (cl_class_flags_modint_ring): New #define...
  202. * src/polynomial/elem/cl_UP.cc (cl_class_univpoly_ring): ...used here.
  203. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  204. * src/polynomial/elem/cl_UP_MI.h: Likewise.
  205. * src/polynomial/elem/cl_UP_gen.h: Likewise.
  206. * src/polynomial/elem/cl_UP_number.h: Likewise.
  207. 2005-08-15 Richard B. Kreckel <kreckel@ginac.de>
  208. * m4/cc.m4 (CL_AS_NOEXECSTACK): New macro...
  209. * configure.ac: ...used here for setting ASMFLAGS...
  210. * src/Makefile.in: ...which are used here.
  211. 2005-08-02 Andreas Jochens <aj@andaco.de>
  212. * include/cln/config.h.in: Add support for PowerPC 64 CPU.
  213. * include/cln/modules.h: Likewise.
  214. * include/cln/object.h: Likewise.
  215. * include/cln/types.h: Likewise.
  216. 2005-07-24 Richard B. Kreckel <kreckel@ginac.de>
  217. Make out of the box build on x86_64 system with complete 32 bit
  218. userland possible
  219. * include/cln/config.h.in: Don't #define __x86_64__ when
  220. __i386__ is defined.
  221. * src/base/digitseq/cl_asm_x86_64_.cc: New file.
  222. * doc/cln.tex: Revert workaround description introduced 2005-05-02.
  223. 2005-06-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  224. * Makefile.in: Don't enter nonexisting directories.
  225. 2005-05-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  226. Speed up the linking step
  227. * src/Makefile.in: Use -objectlist for linking libcln.la.
  228. 2005-05-15 Richard B. Kreckel <kreckel@ginac.de>
  229. * autoconf/ltmain.sh: Upgrade to libtool-1.5.16.
  230. * m4/libtool.m4: Upgrade to libtool-1.5.16 (without Comeau patch).
  231. 2005-05-02 Richard B. Kreckel <kreckel@ginac.de>
  232. * doc/cln.tex: Document what to do on a x86_64 machine with 32-bit
  233. userland.
  234. 2005-05-01 Richard B. Kreckel <kreckel@ginac.de>
  235. Fix crashes in find_univpoly_ring and related functions
  236. * include/cln/modinteger.h: Remove vptr from cl_heap_modint_ring;
  237. remove declaration of cl_class cl_class_modint_ring.
  238. * include/cln/univpoly.h: Remove vptr from cl_heap_univpoly_ring;
  239. remove declaration of cl_class_univpoly_ring.
  240. * include/cln/object.h: cl_class_flags_modint_ring: New #define...
  241. * src/modinteger/cl_MI.cc: ...used in cl_class_modint_ring.
  242. * src/modinteger/cl_MI_fix16.h: No vptr, but static dtor and type flag.
  243. * src/modinteger/cl_MI_fix29.h: Likewise.
  244. * src/modinteger/cl_MI_fix32.h: Likewise.
  245. * src/modinteger/cl_MI_int32.h: Likewise.
  246. * src/modinteger/cl_MI_montgom.h: Likewise.
  247. * src/modinteger/cl_MI_pow2: Likewise.
  248. * src/modinteger/cl_MI_pow2m1.h: Likewise.
  249. * src/modinteger/cl_MI_pow2p1.h: Likewise.
  250. * src/modinteger/cl_MI_std.h: Likewise.
  251. * src/polynomial/elem/cl_UP.cc (cl_make_univpoly_ring): Compare with
  252. cl_class_flags_modint_ring, not with cl_class_modint_ring.
  253. * src/polynomial/elem/cl_UP_GF2.h (cl_class_num_univpoly_ring): New.
  254. * src/polynomial/elem/cl_UP_MI.h (cl_class_modint_univpoly_ring): New.
  255. * src/polynomial/elem/cl_UP_gen.h (cl_class_gen_univpoly_ring): New.
  256. * src/polynomial/elem/cl_UP_number.h (cl_class_num_univpoly_ring): New.
  257. Reported by Ralf Goertz <R_Goertz@web.de>.
  258. 2005-04-29 Richard B. Kreckel <kreckel@ginac.de>
  259. Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  260. * m4/cc.m4: Emit a warning if g++ is used and optimization turned off.
  261. 2005-04-24 Richard B. Kreckel <kreckel@ginac.de>
  262. Make GCC compiler flags default to -O
  263. * m4/cc.m4: New file...
  264. * configure.ac: ...used here.
  265. * autoconf/aclocal.m4: Regenerate.
  266. 2005-04-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  267. * include/cln/string.h: Declare cl_string.
  268. 2005-03-17 Richard B. Kreckel <kreckel@ginac.de>
  269. * autoconf/ltmain.sh: Upgrade to libtool-1.5.14.
  270. * m4/libtool.m4: Upgrade to libtool-1.5.14 with Comeau patch.
  271. * autoconf/aclocal.m4: Regenerate.
  272. 2005-03-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  273. * src/Makefile.in: Use $CXX instead of $CC when linking.
  274. 2005-02-27 Richard B. Kreckel <kreckel@ginac.de>
  275. * examples/perfnum.cc: update to presumed 42st Mersenne prime.
  276. 2004-11-28 Richard B. Kreckel <kreckel@ginac.de>
  277. Disambiguate binary operators of CLN types with float/double
  278. * include/cln/dfloat.h: Add binary operator overloads for arguments of
  279. type double.
  280. * include/cln/ffloat.h: Likewise, for arguments of type float.
  281. * include/cln/float.h: Likewise, both for arguments of types double and
  282. float.
  283. * include/cln/real.h: Likewise.
  284. Reported by Isidro Cachadiña Gutiérrez <icacha@unex.es>.
  285. 2004-11-03 Richard B. Kreckel <kreckel@ginac.de>
  286. * Version 1.1.9 released.
  287. 2004-10-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  288. * src/Makefile.in: Let config.status set LDFLAGS.
  289. 2004-10-27 Peter Breitenlohner <peb@mppmu.mpg.de>
  290. * cln.pc.in: Fix typo.
  291. * Makefile.in (INSTALL_SCRIPT): Added, to be used for scripts like
  292. cln-config. Allows us to do special things to binaries, like
  293. installing them with install -s.
  294. * doc/Makefile.in: add/remove the cln.info from the installed
  295. $(infodir)/dir unless this is debian install-info (code copied from
  296. what GNU automake would produce).
  297. 2004-10-26 Richard B. Kreckel <kreckel@ginac.de>
  298. * src/integer/input/cl_I_read_stream.cc (read_integer): Fix a bug
  299. that caused radix specifiers to not work when reading from a stream.
  300. * src/rational/input/cl_RA_read_stream.cc (read_rational): Likewise.
  301. * src/real/input/cl_R_read_stream.cc (read_real): Likewise.
  302. * src/float/input/cl_F_read_stream.cc (read_float): Likewise.
  303. * src/complex/input/cl_N_read_stream.cc (read_complex): Likewise.
  304. 2004-10-25 Richard B. Kreckel <kreckel@ginac.de>
  305. * src/base/cl_low.h: Add mulu64 assembler macro for ia64.
  306. 2004-10-24 Richard B. Kreckel <kreckel@ginac.de>
  307. * src/base/cl_low.h: Add mul and div macros for x86_64.
  308. 2004-10-23 Richard B. Kreckel <kreckel@ginac.de>
  309. * src/integer/conv/cl_I_from_digits.cc (digits_to_I): Fix thinko in
  310. new code for base power of two.
  311. 2004-10-22 Richard B. Kreckel <kreckel@ginac.de>
  312. * src/integer/conv/cl_I_to_digits (I_to_digits): Fix an elusive stack
  313. overwriting problem. That was the real cause for Debian bug#246319.
  314. * src/integer/output/cl_I_print.cc (print_integer): Revert workaround
  315. for the bug fixed above.
  316. 2004-10-20 Richard B. Kreckel <kreckel@ginac.de>
  317. * include/cln/types.h: Use 64 bit digits on x86_64 CPU.
  318. 2004-10-12 Richard B. Kreckel <kreckel@ginac.de>
  319. * src/integer/conv/cl_I_from_digits.cc (digits_to_I): Speedup when
  320. the base is a power of two.
  321. 2004-10-05 Richard B. Kreckel <kreckel@ginac.de>
  322. * src/integer/conv/cl_I_to_digits.cc (I_to_digits): Fix bug in base 32.
  323. 2004-09-27 Richard B. Kreckel <kreckel@ginac.de>
  324. Support for little-endian Mips, second shot
  325. * src/base/digitseq/cl_asm_mipsel_.cc: New file...
  326. * src/base/digitseq/cl_asm_cc: ...used here.
  327. * src/base/digitseq/cl_asm.h: Include cl_asm_mips.h for any endianness.
  328. * include/cln/object.h: Set alignment for mipsel explicitly.
  329. 2004-09-05 Richard B. Kreckel <kreckel@ginac.de>
  330. Support for little-endian Mips
  331. * include/cln/config.h.in: Add __mipsel__.
  332. * include/cln/modules.h: For Mips, this is endianness-agnostic.
  333. * src/base/digitseq/cl_asm_.cc, src/base/digitseq/cl_asm.h:
  334. Mask out assembler for little-endian Mips.
  335. 2004-08-30 Bruno Haible <bruno@clisp.org>
  336. * benchmarks/timebench2.sh: Multiply all repeat counts by 100.
  337. * benchmarks/timebench2.results: Add recent PowerPC G4 results.
  338. 2004-08-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  339. * examples/e.cc: remove extra semicolon.
  340. 2004-08-25 Bruno Haible <bruno@clisp.org>
  341. * autoconf/ltmain.sh: Upgrade to libtool-1.5.6.
  342. * m4/libtool.m4: New file, from libtool-1.5.6 with modifications:
  343. 2004-08-22 Bruno Haible <bruno@clisp.org>
  344. * m4/libtool.m4: Add support for Comeau C++ on Linux.
  345. Reported by Prof. Roberto Bagnara <bagnara@cs.unipr.it>.
  346. * autoconf/aclocal.m4: Regenerate.
  347. 2004-08-19 Bruno Haible <bruno@clisp.org>
  348. * include/cln/modules.h (CL_GLOBALIZE_JUMP_LABEL, CL_JUMP_TO): When
  349. converting a label to a string, use ASM_UNDERSCORE_PREFIX. Needed on
  350. MacOS X.
  351. Reported by Darren Bane <darren.bane@ul.ie>.
  352. 2004-07-01 Richard B. Kreckel <kreckel@ginac.de>
  353. * Version 1.1.8 released.
  354. 2004-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  355. * src/base/cl_macros.h: alloca(3) has size_t argument type.
  356. 2004-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  357. * include/cln/floatformat.h: Do define a type here.
  358. 2004-06-27 Richard B. Kreckel <kreckel@ginac.de>
  359. * include/cln/modules.h (CL_JUMP_TO): Fix AMD64 brokenness.
  360. 2004-06-23 Bruno Haible <bruno@clisp.org>
  361. * configure.ac: Pretend ftime() is not available. Needed by
  362. CL_TIMES_CLOCK.
  363. 2004-06-21 Ralf Stephan <ralf@ark.in-berlin.de>
  364. * doc/cln.tex: Document jacobi, isprobprime and nextprobprime.
  365. 2004-06-18 Richard B. Kreckel <kreckel@ginac.de>
  366. * rational/transcendental/cl_RA_logp.cc: fix bug where base is
  367. reciprocal of an integer.
  368. Reported by Niklas Knutsson <nq@altern.org>.
  369. 2004-06-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  370. * src/complex/ring/cl_C_ring.cc, src/integer/ring/cl_I_ring.cc,
  371. src/rational/ring/cl_RA_ring.cc, src/real/ring/cl_R_ring.cc:
  372. Make template specializations explicit.
  373. 2004-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  374. * src/complex/input/cl_N_read.cc, src/float/input/cl_F_read.cc,
  375. src/integer/input/cl_I_read.cc, src/rational/input/cl_RA_read.cc,
  376. src/real/input/cl_R_read.cc: Remove unused labels.
  377. 2004-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  378. * benchmarks/timebench1.cc, benchmarks/timebench2a.LiDIA.cc,
  379. benchmarks/timebench2a.cc, benchmarks/timebench2ap.cc,
  380. benchmarks/timebench2b.LiDIA.cc, benchmarks/timebench2b.cc,
  381. examples/atan_recip.cc, examples/atanh_recip.cc,
  382. examples/contfrac.cc, examples/e.cc, examples/legendre.cc,
  383. examples/lucaslehmer.cc, examples/pi.cc, include/cln/GV.h,
  384. include/cln/SV.h, include/cln/malloc.h, include/cln/modules.h,
  385. include/cln/object.h, include/cln/string.h, src/base/cl_abort.cc,
  386. src/base/cl_alloca.h, src/base/cl_malloc.cc,
  387. src/base/random/cl_random_from.cc,
  388. src/base/string/cl_spushstring_append.cc,
  389. src/base/string/cl_spushstring_push.cc,
  390. src/base/string/cl_st_debug.cc,
  391. src/base/string/input/cl_st_gettoken.cc,
  392. src/complex/input/cl_N_read.cc, src/float/input/cl_F_read.cc,
  393. src/float/output/cl_F_dprint.cc, src/integer/input/cl_I_read.cc,
  394. src/rational/input/cl_RA_read.cc,
  395. src/real/format-output/cl_fmt_integer.cc,
  396. src/real/format-output/cl_fmt_paddedstring.cc,
  397. src/real/input/cl_R_read.cc, src/timing/cl_t_current.cc,
  398. src/timing/cl_t_current2.cc, tests/exam.cc, tests/tests.cc,
  399. tests/timeLFRAmul.cc, tests/timeLFatan-compare.cc,
  400. tests/timeLFatan.cc, tests/timeLFatanh-compare.cc,
  401. tests/timeLFatanh.cc, tests/timeLFcos-compare.cc, tests/timeLFcos.cc,
  402. tests/timeLFcosh.cc, tests/timeLFexp-compare.cc, tests/timeLFexp.cc,
  403. tests/timeLFln-compare.cc, tests/timeLFln.cc,
  404. tests/timeLFsin-compare.cc, tests/timeLFsin.cc, tests/timeLFsinh.cc,
  405. tests/timeLFsqrt.cc, tests/timeMImisc5.cc, tests/timeMIpow2div.cc,
  406. tests/timeMIpow2recip.cc, tests/timeRALFdiv.cc, tests/timeRAtoLF.cc,
  407. tests/timeUPMImul.cc, tests/timecatalan.cc, tests/timediv.cc,
  408. tests/timediv2adic-compare.cc, tests/timediv2adic.cc,
  409. tests/timeeuler.cc, tests/timeexp1.cc, tests/timefact.cc,
  410. tests/timegcd.cc, tests/timemul-compare.cc, tests/timemul.cc,
  411. tests/timepi.cc, tests/timeprint-compare.cc, tests/timeprint.cc,
  412. tests/timerecip2adic-compare.cc, tests/timerecip2adic.cc,
  413. tests/timesqrt.cc, tests/timesqrtmodp.cc, tests/timesquare.cc,
  414. tests/timezeta3.cc: Change all C include headers to ISO style
  415. within C++ code.
  416. 2004-06-10 Richard B. Kreckel <kreckel@ginac.de>
  417. * examples/perfnum.cc: update to presumed 41st Mersenne prime.
  418. 2004-05-02 Richard B. Kreckel <kreckel@ginac.de>
  419. * Version 1.1.7 released.
  420. 2004-05-02 Richard B. Kreckel <kreckel@ginac.de>
  421. * examples/pi.cc and examples/pi.1: New files.
  422. * examples/Makefile.in: Build the pi executable.
  423. 2004-05-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  424. * src/Makefile.in: Fix for parallel build: wait for subdir objects to
  425. be finished before creating the library.
  426. 2004-04-30 Richard B. Kreckel <kreckel@ginac.de>
  427. * src/integer/output/cl_I_print.cc (print_integer): workaround
  428. GCC compiler bug (cf. Debian bug#246319).
  429. 2004-03-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
  430. * m4/gmp.m4 (CL_GMP_CHECK): Do not lose LIBS setting with config.cache
  431. enabled.
  432. 2004-03-08 Bruno Haible <bruno@clisp.org>
  433. * src/float/lfloat/elem/cl_LF_mul.cc (operator*): Fix the second
  434. underflow condition.
  435. * src/float/lfloat/algebraic/cl_LF_sqrt.cc (sqrt): Fix a bug with large
  436. uexp whereby SQRT of MOST-POSITIVE-LONG-FLOAT was less than 1.
  437. 2004-03-04 Richard B. Kreckel <kreckel@ginac.de>
  438. * Makefile.in (install): Add ${srcdir} for cln.m4.
  439. * m4/gmp.m4: quote macro names.
  440. Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
  441. 2004-01-01 Richard B. Kreckel <kreckel@ginac.de>
  442. * Version 1.1.6 released.
  443. 2004-01-01 Richard B. Kreckel <kreckel@ginac.de>
  444. * include/cln/univpoly.h, include/cln/univpoly_complex.h,
  445. include/cln//univpoly_integer.h, include/cln/univpoly_modint.h,
  446. include/cln/univpoly_rational.h, include/cln/univpoly_real.h,
  447. src/polynomial/elem/cl_UP_GF2.h, src/polynomial/elem/cl_UP_MI.h,
  448. src/polynomial/elem/cl_UP_gen.h, src/polynomial/elem/cl_UP_no_ring.cc,
  449. src/polynomial/elem/cl_UP_number.h (ldegree): New function.
  450. * doc/cln.tex: Document `ldegree'.
  451. 2003-12-29 Richard B. Kreckel <kreckel@ginac.de>
  452. Rework of autoconfiscation infrastructure
  453. * autoconf/config.{guess,sub}: Update to GNU version 2003-10-07.
  454. * autoconf/ltmain.sh: Update to GNU version 1.4.3.
  455. * autoconf/autoconf: Remove (from now on we assume autoconf is
  456. installed properly on the sytem).
  457. * autoconf/autoconf.m4: Likewise.
  458. * autoconf/autoconf.m4f: Likewise.
  459. * autoconf/acgeneral.m4: Likewise.
  460. * autoconf/acspecific.m4: Likewise.
  461. * autoconf/aclocal.m4: Regenerate.
  462. * autoconf/acinclude.m4: Remove (while moving the macros...)
  463. * m4/gmp.m4: New file (...to here).
  464. * Makefile.devel: Update to new scheme.
  465. * configure.ac: Likewise.
  466. * include/cln/GV_integer.h: Assume template specializations work.
  467. * include/cln/GV_modinteger.h: Likewise.
  468. * include/cln/config.h.in: Likewise, and drop HAVE_BOOL.
  469. * src/base/cl_base_config.h.in: Drop support for obsolete ftime(3).
  470. * src/base/random/cl_random_from.cc: Likewise.
  471. * src/timing/cl_base_config.h.in: Likewise.
  472. * src/timing/cl_t_current.cc: Likewise.
  473. 2003-12-27 Richard B. Kreckel <kreckel@ginac.de>
  474. * src/polynomial/cl_UP_gen.h (gen_minus): Fix case where first
  475. argument is zero.
  476. * src/polynomial/cl_UP_MI.h (modint_minus): Likewise.
  477. * src/polynomial/cl_UP_number.h (num_minus): Likewise.
  478. Reported by Munagala Ramanath <amberarrow@yahoo.com>.
  479. 2003-12-02 Richard B. Kreckel <kreckel@ginac.de>
  480. * examples/perfnum.cc: update to presumed 40th Mersenne prime.
  481. 2003-11-20 Christian Bauer <cbauer@ginac.de>
  482. Added pkg-config support
  483. * cln.pc.in: New file.
  484. * Makefile.in: Take care of cln.pc.
  485. * configure.ac: Likewise.
  486. 2003-08-06 Richard B. Kreckel <kreckel@ginac.de>
  487. * src/numtheory/cl_nt_sqrtmodp.cc: #undef _R.
  488. Reported by Andrew Rechnitzer <A.Rechnitzer@ms.unimelb.edu.au>.
  489. 2003-08-01 Richard Kreckel <kreckel@ginac.de>
  490. More dependent base resolution issues
  491. * src/base/hash/cl_hash.h (cl_heap_hashtable<T>::iterator()):
  492. portable syntactic simplification.
  493. * src/base/hash/cl_hashset.h: Preceed inherited members with this->.
  494. * src/base/hash/cl_hash1.h: Likewise for member functions.
  495. * src/base/hash/cl_hash2.h: Likewise.
  496. * src/base/hash/cl_hashuniq.h: Likewise.
  497. * src/base/hash/cl_hashuniqweak.h: Likewise.
  498. * src/base/hash/cl_hash.h: Revert explicit static member function
  499. lookup since that was GCC's fault.
  500. * src/base/hash/cl_hash2weak.h: Likewise.
  501. * src/base/hash/cl_hashuniqweak.h: Likewise.
  502. 2003-06-29 Richard Kreckel <kreckel@ginac.de>
  503. Dependent base resolution needed for GCC-3.4
  504. * include/cln/GV.h: Preceed inherited members with this->.
  505. * include/cln/SV.h: Likewise.
  506. * include/cln/object.h: Likewise.
  507. * src/base/hash/cl_hash1.h: Likewise.
  508. * src/base/hash/cl_hash1weak.h: Likewise.
  509. * src/base/hash/cl_hash2.h: Likewise.
  510. * src/base/hash/cl_hashuniq.h: Likewise.
  511. * src/base/hash/cl_hash.h: Make lookup of static member function
  512. explicit.
  513. * src/base/hash/cl_hash2weak.h: Likewise.
  514. * src/base/hash/cl_hashuniqweak.h: Likewise.
  515. * src/modinteger/cl_MI.cc: Make shell-comment a C-comment. Geez.
  516. 2003-02-24 Bruno Haible <bruno@clisp.org>
  517. * src/base/random/cl_random_from.cc (random_state::random_state): Add
  518. support for MacOS X.
  519. * src/modinteger/cl_MI.cc: #undef _R.
  520. Reported by Erann Gat <gat@jpl.nasa.gov>.
  521. 2002-08-03 Joerg Arndt <jj@suse.de>
  522. * include/cln/config.h.in: Add support for x86_64 CPU.
  523. * include/cln/modules.h: Likewise.
  524. * include/cln/types.h: Likewise.
  525. * include/cln/object.h: Likewise.
  526. 2002-06-08 Richard Kreckel <kreckel@ginac.de>
  527. * src/base/digitseq/cl_asm.h: ensure intCsize==16 when including
  528. m68k Assembler routines.
  529. * src/base/digitseq/cl_asm_.cc: Likewise.
  530. 2002-05-28 Richard Kreckel <kreckel@ginac.de>
  531. * Version 1.1.5 released.
  532. 2002-05-27 Richard Kreckel <kreckel@ginac.de>
  533. * include/cln/modules.h (CL_CONCATENATE): New macro.
  534. 2002-05-10 Richard Kreckel <kreckel@ginac.de>
  535. * doc/cln.tex (Building the library): Update recommendations for
  536. compiling on Tru64 using g++ 3.0 and 3.1.
  537. * README: Update homepage.
  538. 2002-05-05 Bruno Haible <bruno@clisp.org>
  539. * doc/cln.tex (Building the library): Give some recommendations for
  540. g++ 3.0 and 3.1.
  541. Force link-time references despite optimizations done by g++ 2.95
  542. and newer.
  543. * include/cln/modules.h (CL_FORCE_LINK): New macro.
  544. * Use CL_FORCE_LINK.
  545. * include/cln/GV_integer.h (cl_GV_I_debug_dummy): Likewise.
  546. * include/cln/GV_number.h (cl_GV_number_debug_dummy): Likewise.
  547. * include/cln/SV_number.h (cl_SV_number_debug_dummy): Likewise.
  548. * include/cln/SV_ringelt.h (cl_SV_ringelt_debug_dummy): Likewise.
  549. * include/cln/dfloat.h (cl_DF_debug_dummy): Likewise.
  550. * include/cln/ffloat.h (cl_FF_classes_dummy, cl_FF_debug_dummy):
  551. Likewise.
  552. * include/cln/integer.h (cl_I_classes_dummy, cl_I_debug_dummy):
  553. Likewise.
  554. * include/cln/lfloat.h (cl_LF_debug_dummy): Likewise.
  555. * include/cln/modinteger.h (cl_MI_debug_dummy): Likewise.
  556. * include/cln/rational.h (cl_RA_debug_dummy): Likewise.
  557. * include/cln/real.h (cl_R_debug_dummy): Likewise.
  558. * include/cln/ring.h (cl_ring_debug_dummy): Likewise.
  559. * include/cln/sfloat.h (cl_SF_classes_dummy, cl_SF_classes_dummy):
  560. Likewise.
  561. * include/cln/string.h (cl_string_debug_dummy): Likewise.
  562. * include/cln/univpoly.h (cl_UP_debug_dummy): Likewise.
  563. * src/float/base/cl_ieee.h (cl_ieee_dummy_NNN): Likewise.
  564. Avoid g++ 3.1 warnings.
  565. * src/base/cl_offsetof.h (offsetof): Redefine each time.
  566. * src/base/digitseq/cl_DS.h: Include "cl_offsetof.h" after <gmp.h>.
  567. Avoid g++ 3.1 warnings.
  568. * src/base/hash/cl_hash.h (struct cl_heap_hashtable): Use typename
  569. where needed.
  570. * src/base/hash/cl_hash1.h (struct cl_heap_hashtable_1): typedef
  571. htxentry as a shortcut.
  572. * src/base/hash/cl_hash2.h (struct cl_heap_hashtable_2): Likewise.
  573. * src/base/hash/cl_hashset.h (struct cl_heap_hashtable_set): Likewise.
  574. * src/base/hash/cl_hashuniq.h (struct cl_heap_hashtable_uniq):
  575. Likewise.
  576. 2002-03-15 Bruno Haible <bruno@clisp.org>
  577. * cln.tex: Document problem with GNU make 3.77.
  578. Reported by Michael Somos <somos@grail.cba.csuohio.edu>.
  579. 2002-02-16 Richard Kreckel <kreckel@ginac.de>
  580. * cln.m4: quote macro name.
  581. Pointed out by Roberto Bagnara.
  582. 2002-01-20 Richard Kreckel <kreckel@ginac.de>
  583. * autoconf/config.{guess,sub}: Update to GNU version 2002-01-02.
  584. (the old one was broken on Linux/Mips.)
  585. 2002-01-04 Richard Kreckel <kreckel@ginac.de>
  586. * autoconf/autoconf.m4f: get brutal in order to adhere to FHS.
  587. * Version 1.1.4 released.
  588. 2002-01-03 Richard Kreckel <kreckel@ginac.de>
  589. * autoconf/acinclude.m4: revamp MPN-matcher.
  590. * autoconf/aclocal.m4: upgrade to autoconf-2.52 infrastructure,
  591. sync with CLisp from CVS.
  592. * autoconf/autoconf: Likewise.
  593. * autoconf/autoconf.m4f: Likewise (new file).
  594. * configure.ac: Likewise (new file, replaces configure.in).
  595. * configure.in: Likewise (deleted, replaced by configure.ac).
  596. * autoconf/config.{guess,sub}: Update to GNU version 2001-12-13.
  597. * src/Makefile.in: made VPATH safe for autoconf-2.52.
  598. * include/cln/config.h.in: Add __s390__.
  599. 2001-12-31 Richard Kreckel <kreckel@ginac.de>
  600. * src/base/digitseq/cl_DS.h: <gmp.h> is not included extern "C"
  601. any more since GMP4 has some C++ support in it.
  602. 2001-12-14 Richard Kreckel <kreckel@ginac.de>
  603. * include/cln/modules.h, include/cln/object.h: add support for
  604. s390.
  605. * src/numtheory/cl_nt_sqrtmodp.cc: workaround for GCC2.x compiler-bug
  606. on s390, provided by Gerhard Tonn.
  607. 2001-11-05 Richard Kreckel <kreckel@ginac.de>
  608. * autoconf/ltmain.sh: Upgrade to libtool-1.4.2.
  609. * autoconf/config.{guess,sub}: Update to GNU version 2001-09-07.
  610. * Version 1.1.3 released.
  611. 2001-11-04 Bruno Haible <haible@clisp.cons.org>
  612. Interoperability with gcc-3.0 -fuse-cxa-atexit.
  613. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add test whether
  614. global destructors actually exist.
  615. * include/cln/modules.h (CL_PROVIDE, CL_PROVIDE_END, CL_PROVIDE_END):
  616. Don't hack the global destructors if there is no global destructors
  617. function.
  618. 2001-11-03 Richard Kreckel <kreckel@ginac.de>
  619. * src/float/transcendental/cl_F_sinx.cc (sinx_naive): For small
  620. values of x, return square(x) instead of x.
  621. * src/float/transcendental/cl_F_sinhx.cc (sinhx_naive): Likewise.
  622. 2001-07-25 Richard Kreckel <kreckel@ginac.de>
  623. * Version 1.1.2 released.
  624. 2001-07-24 Richard Kreckel <kreckel@ginac.de>
  625. * src/base/hash/cl_hash.h: declare _cl_hashtable_iterator<htentry> a
  626. friend of cl_heap_hashtable<htentry>.
  627. 2001-07-22 Richard Kreckel <kreckel@ginac.de>
  628. * src/float/base/cl_ieee.cc: try to do magic to the FPU only if
  629. _FPU_IEEE is really defined.
  630. * include/cln/modules.h: change assembler labels from `label' to
  631. `label:' on hppa, needed by Linux (see comment).
  632. * autoconf/acinclude.m4: new file (for storing CLN-specific macros).
  633. * Makefile.devel: adjusted.
  634. * autoconf/aclocal.m4: regenerate.
  635. * src/base/low/cl_low_mul.cc: moved POD variables that are declared
  636. extern "C" elsewhere out of the namespace.
  637. * src/base/low/cl_low_div.cc: Likewise.
  638. 2001-06-08 Bruno Haible <haible@clisp.cons.org>
  639. * autoconf/config.{guess,sub}: Update to GNU version 2001-05-11.
  640. * autoconf/aclocal.m4: Upgrade to libtool-1.4.
  641. * autoconf/ltmain.sh: Likewise.
  642. * autoconf/ltconfig: Remove file.
  643. * autoconf/install-sh: New file.
  644. * configure.in: Add AC_CONFIG_AUX_DIR call.
  645. 2001-06-05 Richard Kreckel <kreckel@ginac.de>
  646. * tests/tests.cc: resolve namespace ambiguity about strcmp().
  647. 2001-05-31 Richard Kreckel <kreckel@ginac.de>
  648. * Version 1.1.1 released.
  649. 2001-05-28 Richard Kreckel <kreckel@ginac.de>
  650. * cln/cln.tex: documented problems with shared library on Sparc
  651. using gcc older than 2.95.3.
  652. * configure.in: Fixed typos in versioning docu.
  653. 2001-05-25 Bruno Haible <haible@clisp.cons.org>
  654. * src/base/digitseq/cl_asm_arm_.cc: Use #0x instead of #& to designate
  655. hexadecimal constants.
  656. 2001-05-25 Richard Kreckel <kreckel@ginac.de>
  657. * autoconf/floatparam.c (double_wordorder_bigendian_p): new symbol.
  658. * src/float/dfloat/cl_DF.h: Check for double_wordorder_bigendian_p.
  659. * Removed LiDIA interface since that is now outdated (namespace cln)
  660. and maintained elsewhere.
  661. * Adjusted dates and final touches for 1.1.1.
  662. 2001-05-19 Richard Kreckel <kreckel@ginac.de>
  663. * INSTALL: Update toolchain info: no egcs, some more platforms.
  664. * doc/cln.tex: Likewise.
  665. 2001-05-18 Richard Kreckel <kreckel@ginac.de>
  666. * src/base/cl_low.h: prepended variables declared inside macros
  667. with underscore. Fixes equal_hashcode() on various platforms.
  668. 2001-04-25 Richard Kreckel <kreckel@ginac.de>
  669. * src/base/cl_low.h: Added several checks if NO_ASM is defined, so
  670. this definition becomes actually useful. This is needed for
  671. compilation on Arm until somebody fixes the assembler files for Arm.
  672. * src/base/digitseq/cl_asm.h: Likewise.
  673. * src/base/digitseq/cl_asm_.cc: Likewise.
  674. * */Makefile.in: Added `override' in front of `CPPFLAGS +=' so
  675. one can say `make CPPFLAGS=-DFOOBAR'.
  676. 2001-03-26 Arvid Norberg <c99ang@cs.umu.se>
  677. * src/base/random/cl_random_from.cc: ported to beos.
  678. 2001-03-05 Richard Kreckel <kreckel@ginac.de>
  679. * include/cln/modules.h (CL_JUMP_TO): Fix IA64 brokenness.
  680. 2001-01-28 Richard Kreckel <kreckel@ginac.de>
  681. * include/cln/number.h (cl_as_N): Remove bogus comment.
  682. 2001-01-22 Richard Kreckel <kreckel@ginac.de>
  683. * configure.in: Make build in separate builddir possible (again).
  684. 2001-01-22 Richard Kreckel <kreckel@ginac.de>
  685. * include/cln/*.h: Change signatures of all classes' methods
  686. cln::cl_foo::operator new(size_t, cl_foo*) to
  687. cln::cl_foo::operator new(size_t, void*) so one can declare
  688. std::vector<cln::cl_foo>, std::list<cln::cl_foo> etc. for
  689. certain STL implementations (like libstdc++-v3).
  690. 2000-12-14 Richard Kreckel <kreckel@ginac.de>
  691. * Version 1.1 released.
  692. 2000-12-13 Richard Kreckel <kreckel@ginac.de>
  693. * */*: cl_istream -> std::istream, cl_ostream -> std::ostream.
  694. 2000-12-05 Richard Kreckel <kreckel@ginac.de>
  695. * Makefile.in, src/Makefile.in, doc/Makefile.in: Use mkdir -p.
  696. * include/cln/version.h.in, src/base/verion.cc: New files.
  697. * configure.in: Generate include/cln/version.h.
  698. * cln.m4: Rewrote it. Check result of cln-config without compiling.
  699. Do cross-check library version and header version information.
  700. 2000-12-02 Christian Bauer <cbauer@ginac.de>
  701. * Makefile.in, src/Makefile.in, doc/Makefile.in: Added $DESTDIR.
  702. * cln.m4, cln.spec.in: some minor fixes with respect to RPM package
  703. building.
  704. 2000-11-24 Richard Kreckel <kreckel@ginac.de>
  705. * */*: Removed problematic stdin, stdout and stderr definitions.
  706. Use std::cin, std::cout, std::cerr instead (obsoletes 2000-10-29).
  707. 2000-11-20 Bruno Haible
  708. * cln-config.1: change title.
  709. 2000-11-18 Richard Kreckel <kreckel@ginac.de>
  710. * cln.m4: New file.
  711. * doc/cln.tex: Document package tools cln-config and cln.m4.
  712. * Makefile.in: Care about cln.m4.
  713. 2000-11-17 Richard Kreckel <kreckel@ginac.de>
  714. * cln-config.1: added manpage, as required by a couple of distros.
  715. * Makefile.in, doc/Makefile.in: target install depends on installdirs.
  716. 2000-11-16 Richard Kreckel <kreckel@ginac.de>
  717. * autoconf/aclocal.m4 (CL_GMP_SET_UINTD): New macro...
  718. * configure.in: ...used here.
  719. * include/cln/config.h.in: Put in macros defined by CL_GMP_SET_UINTD...
  720. * include/cln/types.h: ...used here.
  721. * autoconf/acgeneral.m4, autoconf/aclocal.m4: Adhere to FHS.
  722. 2000-11-13 Richard Kreckel <kreckel@ginac.de>
  723. * src/base/digitseq/cl_asm.h: Test if (intDsize==32) for MIPS and HPPA,
  724. in order to guard against an accidented configuration.
  725. * src/integer/conv/cl_I_to_digits.cc (table): member b_hoch_k of
  726. struct power_table_entry initialized as ULL instead of as UL, if
  727. intDsize==64 (caused misprinting on MIPS w/ GMP).
  728. * src/base/cl_macros.h (minus_bitm, bitc): implemented ULL, if
  729. HAVE_FAST_LONGLONG.
  730. * src/integer/bitwise/cl_I_mkfx.cc (mkf_extract): Likewise.
  731. * src/integer/conv/cl_I_from_L.cc (cl_I_from_L): Added trival
  732. generation of Bignum for intDsize==64 and a notreached-check at end.
  733. * autoconf/config.guess, autoconf/config.sub: updated from FSF.
  734. * include/cln/config.h.in: Prepared support for IA64.
  735. * include/cln/types.h: Likewise.
  736. * include/cln/object.h: Likewise.
  737. * include/cln/modules.h: Likewise.
  738. * src/base/cl_macros.h (nonreturning_function): Likewise (NUE's
  739. compiler claims __GNUC_MINOR__==9).
  740. 2000-11-03 Richard Kreckel <kreckel@ginac.de>
  741. * src/base/cl_macros.h (bit, minus_bit): changed criterion for ULL from
  742. HAVE_DD to HAVE_FAST_LONGLONG.
  743. * src/base/cl_macros.h (bitm): implemented ULL, if HAVE_FAST_LONGLONG.
  744. * src/base/cl_low.h: actually no need to include "cln/types.h" here.
  745. * src/base/cl_low.h (logcount_64): always ULL, independent of HAVE_DD.
  746. * src/base/random/cl_UL_random.cc (random32): a is always ULL.
  747. 2000-11-01 Richard Kreckel <kreckel@ginac.de>
  748. * include/cln/object.h (cl_combine): define additional signatures, if
  749. HAVE_LONGLONG is defined, in order to keep the compiler happy.
  750. * src/base/cl_macros.h: include "cln/types.h", since we need HAVE_DD...
  751. * src/base/cl_macros.h (bit): ...for this macro...
  752. * src/base/cl_macros.h (minus_bit): ...and this one.
  753. * src/base/cl_low.h: include "cln/types.h", since we need HAVE_DD...
  754. * src/base/cl_low.h (logcount_64): ...for this macro.
  755. * src/base/random/cl_UL_random.cc (random32): if HAVE_DD a is an ULL.
  756. * src/integer/gcd/cl_I_gcd_aux2.cc (floorDD): fixed algorithmic bug.
  757. that turned up when intDsize==32 and cl_word_size==64.
  758. * src/float/dfloat/elem/cl_DF_div.cc (operator/): fixed a missing cast
  759. to uint64 that turned up when intDsize==32 and cl_word_size==64.
  760. 2000-10-29 Richard Kreckel <kreckel@ginac.de>
  761. * src/real/input/cl_R_read.cc, src/complex/input/cl_N_read.cc:
  762. #undef stderr, if it's defined so cln::stderr isn't confused.
  763. * src/base/input/cl_read_globals.cc: stdin should not be extern.
  764. 2000-09-05 Richard Kreckel <kreckel@ginac.de>
  765. * include/cln/number.h (As): Fix it in namespace by suffixing `_As'
  766. to the appropiate method instead of prefixing `as_'.
  767. * src/complex/misc/cl_N_as.cc (cl_N_As): Likewise.
  768. * src/real/misc/cl_R_as.cc (cl_R_As): Likewise.
  769. * src/rational/misc/cl_RA_as.cc (cl_RA_As): Likewise.
  770. * src/integer/misc/cl_I_as.cc (cl_I_As): Likewise.
  771. * src/float/misc/cl_F_as.cc (cl_F_As): Likewise.
  772. * src/float/sfloat/misc/cl_SF_as.cc (cl_SF_As): Likewise.
  773. * src/float/lfloat/misc/cl_LF_as.cc (cl_LF_As): Likewise.
  774. * src/float/ffloat/misc/cl_FF_as.cc (cl_FF_As): Likewise.
  775. * src/float/dfloat/misc/cl_DF_as.cc (cl_DF_As): Likewise.
  776. 2000-09-05 Richard Kreckel <kreckel@ginac.de>
  777. * src/complex/transcendental/cl_C_expt_C.cc (expt): fix logic for
  778. the 0^y cases.
  779. 2000-08-30 Richard Kreckel <kreckel@ginac.de>
  780. * include/cln/number.h, cl_number::_as_cl_private_thing(): removed.
  781. Rearranged for a clearer distinction between macros and remaining
  782. identifiers, so Cint can parse it smoothly.
  783. 2000-08-29 Richard Kreckel <kreckel@ginac.de>
  784. * include/cln/number.h, the(const cl_number& x): New template
  785. function.
  786. 2000-08-29 Richard Kreckel <kreckel@ginac.de>
  787. * */*: Pushed CLN into a namespace `cln'. While doing so, the
  788. following identifiers got their poor-man's namespace (i.e. the
  789. prefix `cl_') stripped off:
  790. cl_catalanconst() -> catalanconst()
  791. cl_compare() -> compare()
  792. cl_cos_sin() -> cos_sin()
  793. cl_cos_sin_t -> cos_sin_t
  794. cl_cosh_sinh() -> cosh_sinh()
  795. cl_cosh_sinh_t -> cosh_sinh_t
  796. cl_decoded_dfloat -> decoded_dfloat
  797. cl_decoded_ffloat -> decoded_ffloat
  798. cl_decoded_float -> decoded_float
  799. cl_decoded_lfloat -> decoded_lfloat
  800. cl_decoded_sfloat -> decoded_sfloat
  801. cl_default_float_format -> default_float_format
  802. cl_default_print_flags -> default_print_flags
  803. cl_default_random_state -> default_random_state
  804. cl_double_approx() -> double_approx()
  805. cl_equal() -> equal()
  806. cl_equal_hashcode() -> equal_hashcode()
  807. cl_eulerconst() -> eulerconst()
  808. cl_find_modint_ring() -> find_modint_ring()
  809. cl_find_univpoly_ring() -> find_univ_poly_ring()
  810. cl_float_approx() -> float_approx
  811. cl_float_format() -> float_format()
  812. cl_float_format_t -> float_format_t
  813. cl_free_hook() -> free_hook()
  814. cl_hermite() -> hermite()
  815. cl_laguerre() -> laguerre()
  816. cl_legendre() -> legandre()
  817. cl_malloc_hook() -> malloc_hook()
  818. cl_pi() -> pi()
  819. cl_tschebychev() -> tschebychev()
  820. cl_zeta() -> zeta()
  821. NB: For functions these changes includes all signatures.
  822. * include/*: moved to include/cln/*, stripped `cl_' off filenames.
  823. * cln-config.in: new file.
  824. 2000-08-26 Bruno Haible <haible@clisp.cons.org>
  825. * autoconf/acgeneral.m4 (AC_OUTPUT): Use braces in exec_prefix default
  826. value, not parens.
  827. 2000-08-18 Bruno Haible <haible@clisp.cons.org>
  828. * include/cl_univpoly_modint.h: Fix typo.
  829. 2000-07-13 Bruno Haible <haible@clisp.cons.org>
  830. * src/float/input/cl_F_read_stream.cc (number_char_p): Accept '_',
  831. used as precision marker for floats.
  832. Reported by Keith Briggs (in 1998) and Thomas Roessler.
  833. * src/integer/input/cl_I_read_stream.cc (number_char_p): Likewise.
  834. * src/rational/input/cl_RA_read_stream.cc (number_char_p): Likewise.
  835. * src/real/input/cl_R_read_stream.cc (number_char_p): Likewise.
  836. * src/complex/input/cl_N_read_stream.cc (number_char_p): Likewise.
  837. 2000-06-22 Bruno Haible <haible@clisp.cons.org>
  838. * include/cl_object.h: Rename cl_word_size to cl_pointer_size.
  839. * include/cl_types.h (HAVE_FAST_LONGLONG): Also define on Irix6
  840. with N32 ABI.
  841. (cl_word_size): New macro.
  842. * src/float/sfloat/cl_SF.h: Use cl_pointer_size instead of
  843. cl_word_size.
  844. 2000-05-31 Bruno Haible <haible@clisp.cons.org>
  845. * tests/exam_I_floor.cc (integer_floor_tests): Add one more entry.
  846. From a sample that fails with gcc-2.95.2 on Sparc.
  847. * tests/exam_I_gcd.cc (integer_gcd_tests): Likewise.
  848. 2000-05-30 Richard Kreckel <kreckel@ginac.de>
  849. * configure.in, autoconf/aclocal.m4 (CL_GMP_H_VERSION, CL_GMP_CHECK):
  850. New macros.
  851. * configure.in, include/cl_config.h.in (CL_VERSION, CL_VERSION_MINOR,
  852. CL_VERSION_PATCHLEVEL): New definitions.
  853. * autoconf/config.guess, autoconf/config.sub, autoconf/ltconfig,
  854. autoconf/ltmain.sh: updated from FSF (libtool 1.3.5, etc).
  855. * src/Makefile.in, configure.in: release-variables renamed from
  856. CLN_* to CL_*.
  857. * configure.in: default to build both shared and static library
  858. (i.e. default to the most common behaviour).
  859. 2000-05-29 Richard Kreckel <kreckel@ginac.de>
  860. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Added missing changequote
  861. environment around the patch of 2000-05-23.
  862. 2000-05-29 Bruno Haible <haible@clisp.cons.org>
  863. * autoconf/aclocal.m4 (CL_PROG_INSTALL): Fix typo.
  864. Reported by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>.
  865. 2000-05-27 Richard Kreckel <kreckel@ginac.de>
  866. * src/float/lfloat/algebraic/cl_LF_sqrt.cc,
  867. src/base/digitseq/cl_DS_sqrt.cc: Readjusted break-even points.
  868. 2000-05-24 Richard Kreckel <kreckel@ginac.de>
  869. * autoconf/config.*: Updated to new version from FSF
  870. (the new libtool wants this).
  871. * src/Makefile.in: added $(LDFLAGS) to link step.
  872. * src/base/digitseq/cl_2DS_div.cc, cl_2DS_recip.cc: Readjusted
  873. break-even points.
  874. 2000-05-23 Bruno Haible <haible@clisp.cons.org>
  875. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Determine host_cpu,
  876. host_vendor, host_os correctly if $host has more than two hyphens.
  877. 2000-05-19 Richard Kreckel <kreckel@ginac.de>
  878. * src/base/digitseq/cl_DS_mul.cc: Rearranged break-even points to
  879. better match present-day CPUs whenever GMP3 is used.
  880. * src/base/digitseq/cl_DS_div.cc: dto.
  881. * src/TUNING: Added comment about order of tuning.
  882. * configure, configure.in: Safer GMP3-detection.
  883. * INSTALL.generic: Clarified behaviour of --with-gmp.
  884. * autoconf/config.guess: updated from Clisp-2000-03-06 sources.
  885. 2000-05-04 Richard Kreckel <kreckel@ginac.de>
  886. * gmp/: removed completely. From now on we are going to link
  887. externally against libgmp3.0 or above!
  888. * configure, configure.in, Makefile.in, */Makeflags: removed support
  889. of internal gmp 2.0.2, like $GMP_INCLUDES, which should be done by
  890. setting $CPPFLAGS instead.
  891. * Makefile.in: Added libtool inter-library dependency for -lgmp and
  892. conforming interface versioning (-version-info).
  893. * autoconf/ltconfig, autoconf/ltmain.sh: Updated to newer versions
  894. from libtool 1.3.4.
  895. 2000-02-22 Bruno Haible <haible@clisp.cons.org>
  896. * src/base/digitseq/cl_asm_mips_.cc: Starting at argument 5 the
  897. parameter passing was changed for the MIPS n32 ABI.
  898. 2000-01-24 Richard Kreckel <kreckel@ginac.de>
  899. * gmp/*: Replaced the complete mpn sources with the ones from
  900. Debian since they are maintained while the ones from FSF
  901. aren't and there were problems on some architectures, PowerPC
  902. in particular. See the file gmp/README.CLN. This way the
  903. hard links in this directory have vanished, they were causing
  904. trouble for people working in AFS. This became necessary for
  905. Debian, because there it woudn't compile on PPC.
  906. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  907. * Version 1.0.3 released.
  908. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  909. * src/base/cl_macros.h (nonreturning_function): For egcs and newer
  910. use __attribute__ ((__noreturn__)) instead of the __volatile__
  911. storage class.
  912. (nonreturning): Remove macro.
  913. * include/*: Minor fixes to stop -ansi -pedantic from complaining.
  914. * include/cl_integer.h: (doublefactorial): New declaration.
  915. * src/integer/misc/combin/cl_I_doublefactorial.cc: New file.
  916. 1999-12-18 Bruno Haible <haible@clisp.cons.org>
  917. * autoconf/acgeneral.m4 (AC_ARG_PROGRAM): Create conftestsed using
  918. "cat", not "echo".
  919. * autoconf/ltconfig: Improve support for recent FreeBSD 3.
  920. * include/cl_GV.h (cl_GV_vectorops): Change return type from 'T' to
  921. 'const T', to match definition in src/vector/cl_GV_number.cc.
  922. Reported by Duncan Simpson <dps@io.stargate.co.uk>.
  923. * gmp/mpn/Makefile.in (.S.lo): Use 'if', not '&&', because '&&' may
  924. yield return code 1.
  925. 1999-09-07 Bruno Haible <haible@clisp.cons.org>
  926. * Version 1.0.2 released.
  927. 1999-09-06 Bruno Haible <haible@clisp.cons.org>
  928. * src/rational/cl_RA.h (integerp, ratiop): Instead of returning a
  929. boolean expression, write alternatives ending with either
  930. "return cl_true;" or "return cl_false;". This way, g++ does a
  931. better job inlining it.
  932. * src/float/cl_F.h (longfloatp): Likewise.
  933. * src/real/cl_R.h (rationalp, integerp, floatp): Likewise.
  934. * src/complex/cl_C.h (realp, complexp): Likewise.
  935. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  936. * include/cl_integer.h (cl_equal_hashcode): New declaration.
  937. * include/cl_rational.h (cl_equal_hashcode): New declaration.
  938. * include/cl_sfloat.h (cl_equal_hashcode): New declaration.
  939. * include/cl_ffloat.h (cl_equal_hashcode): New declaration.
  940. * include/cl_dfloat.h (cl_equal_hashcode): New declaration.
  941. * include/cl_lfloat.h (cl_equal_hashcode): New declaration.
  942. * include/cl_float.h (cl_equal_hashcode): New declaration.
  943. * include/cl_real.h (cl_equal_hashcode): New declaration.
  944. * include/cl_complex.h (cl_equal_hashcode): New declaration.
  945. * src/base/cl_N.h (equal_hashcode_low, equal_hashcode_one): New macros.
  946. * src/integer/misc/cl_I_eqhashcode.cc: New file.
  947. * src/rational/misc/cl_RA_eqhashcode.cc: New file.
  948. * src/float/sfloat/misc/cl_SF_eqhashcode.cc: New file.
  949. * src/float/ffloat/misc/cl_FF_eqhashcode.cc: New file.
  950. * src/float/dfloat/misc/cl_DF_eqhashcode.cc: New file.
  951. * src/float/lfloat/misc/cl_LF_eqhashcode.cc: New file.
  952. * src/float/misc/cl_F_eqhashcode.cc: New file.
  953. * src/real/misc/cl_R_eqhashcode.cc: New file.
  954. * src/complex/misc/cl_C_eqhashcode.cc: New file.
  955. * doc/cln.tex: Document `cl_equal_hashcode'.
  956. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  957. * include/cl_ring.h (cl_number_ring_ops): Add `contains' member.
  958. (cl_number_ring): New class.
  959. (cl_specialized_number_ring<T>): Inherit from cl_number_ring.
  960. (instanceof): New function.
  961. * src/integer/ring/cl_I_ring.cc (cl_I_p): New function.
  962. * src/integer/misc/cl_I_as.cc (cl_I_p): Add comment.
  963. * src/rational/ring/cl_RA_ring.cc (cl_RA_p): New function.
  964. * src/rational/misc/cl_RA_as.cc (cl_RA_p): Add comment.
  965. * src/real/ring/cl_R_ring.cc (cl_R_p): New function.
  966. * src/real/misc/cl_R_as.cc (cl_R_p): Add comment.
  967. * src/complex/ring/cl_C_ring.cc (cl_N_p): New function.
  968. * src/complex/misc/cl_N_as.cc (cl_N_p): Add comment.
  969. * doc/cln.tex: Document `instanceof'.
  970. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  971. * include/cl_rational.h (numerator, denominator): New declarations.
  972. * src/rational/elem/cl_RA_numerator.cc: New file.
  973. * src/rational/elem/cl_RA_denominator.cc: New file.
  974. * include/cl_integer.h (numerator, denominator): New inline functions.
  975. * doc/cln.tex: Document `numerator' and `denominator'.
  976. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  977. * src/rational/algebraic/cl_RA_rootp.cc (rootp): Fix endless loop
  978. in the integer case.
  979. * src/rational/algebraic/cl_RA_rootp_I.cc (rootp): Likewise.
  980. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  981. * include/cl_config.h.in: Support for sparc64 CPU.
  982. * include/cl_modules.h: Likewise.
  983. * include/cl_types.h: Likewise.
  984. * include/cl_object.h: Likewise.
  985. * include/cl_GV.h: Likewise.
  986. * src/Makefile.in: Likewise.
  987. * src/base/cl_alloca.h: Likewise.
  988. * src/base/cl_macros.h: Likewise.
  989. * src/base/cl_sysdep.h: Likewise.
  990. * src/base/cl_low.h: Likewise.
  991. * src/base/digitseq/cl_asm.h: Likewise.
  992. * src/base/digitseq/cl_asm_.cc: Likewise.
  993. * src/base/digitseq/cl_asm_sparc64.h: New file.
  994. * src/base/digitseq/cl_asm_sparc64_.cc: New file.
  995. * src/modinteger/cl_MI_int.h: Support for sparc64 CPU.
  996. * src/polynomial/elem/cl_UP_no_ring.cc: Likewise.
  997. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  998. * src/polynomial/elem/cl_asm_GF2.cc: Likewise.
  999. 1999-09-04 Bruno Haible <haible@clisp.cons.org>
  1000. * src/base/digitseq/cl_asm_sparc_.cc (orc2_loop_up, orc2_loop_down):
  1001. Use the `orn' instruction.
  1002. 1999-08-14 Bruno Haible <haible@clisp.cons.org>
  1003. Assume all platforms have <stdlib.h> and clock_t.
  1004. * configure.in: Don't call CL_STDLIB_H and CL_CLOCK_T.
  1005. * src/base/cl_base_config.h.in (CLOCK_T): Remove definition.
  1006. * src/base/random/cl_random_from.cc: Use clock_t instead of CLOCK_T.
  1007. * src/timing/cl_t_config.h.in (CLOCK_T): Remove definition.
  1008. * src/timing/cl_t_current2.cc: Use clock_t instead of CLOCK_T.
  1009. 1999-07-18 Bruno Haible <haible@clisp.cons.org>
  1010. * gmp/config.guess: Link to autoconf/config.guess.
  1011. gmp/config.sub: Link to autoconf/config.sub.
  1012. Needed for Win32 platforms.
  1013. 1999-07-17 Bruno Haible <haible@clisp.cons.org>
  1014. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Distinguish "sparc" and
  1015. "sparc64" according to the C compiler, not the uname result.
  1016. 1999-06-17 Bruno Haible <haible@clisp.cons.org>
  1017. * src/base/digitseq/cl_asm_sparc_.cc (compare_loop_up): Fix
  1018. COUNTER_LOOPS version, fortunately not used yet.
  1019. * include/cl_modules.h: Prepare for gcc version 3.
  1020. 1999-06-12 Bruno Haible <haible@clisp.cons.org>
  1021. * src/rational/elem/cl_RA_plus.cc, src/rational/elem/cl_RA_minus.cc:
  1022. Change the last call from I_I_to_RT to I_I_to_RA.
  1023. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  1024. * Version 1.0.1 released.
  1025. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  1026. * src/integer/cl_I.h (pFN_maxlength_digits_at): Define also when
  1027. intDsize==64.
  1028. 1999-06-08 Bruno Haible <haible@clisp.cons.org>
  1029. * autoconf/intparam.c (printf_underscored): Change argument type to
  1030. `const char*'.
  1031. * include/cl_modules.h (CL_OUTPUT_LABEL, CL_JUMP_TO): New macros.
  1032. (CL_PROVIDE, CL_PROVIDE_END): Use them.
  1033. * include/cl_string.h (cl_heap_string::operator new): Return 1, not 0.
  1034. * include/cl_GV.h (cl_GV_inner<T>::operator new): Likewise.
  1035. * src/base/ring/cl_no_ring.cc (dummy_canonhom, dummy_expt_pos): Don't
  1036. cast a cl_I to void here. Works around a bug in g++-2.95.
  1037. * src/complex/misc/cl_C_class.cc: Include "cl_C.h".
  1038. * src/polynomial/elem/cl_UP_no_ring.cc (dummy_canonhom,
  1039. dummy_expt_pos): Don't cast a cl_I to void here. Works around a bug
  1040. in g++-2.95.
  1041. * src/polynomial/elem/cl_asm_sparc_GF2.cc (DECLARE_FUNCTION): New
  1042. macro.
  1043. * src/rational/misc/cl_RA_class.cc: Include "cl_RA.h".
  1044. * src/vector/cl_GV_I.cc (cl_heap_GV_I_general::operator new,
  1045. DEFINE_cl_heap_GV_I_bits): Return 1, not 0.
  1046. * src/vector/cl_GV_number.cc (cl_heap_GV_number_general::operator new):
  1047. Likewise.
  1048. 1999-06-01 Bruno Haible <haible@clisp.cons.org>
  1049. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Canonicalize alpha
  1050. variants to alpha.
  1051. 1999-05-29 Bruno Haible <haible@clisp.cons.org>
  1052. * src/base/digitseq/cl_asm_i386_.cc (DECLARE_FUNCTION): Treat
  1053. OpenBSD like NetBSD.
  1054. * src/base/digitseq/cl_asm_sparc_.cc (DECLARE_FUNCTION): Likewise.
  1055. * src/base/digitseq/cl_asm_m68k_.cc (DECLARE_FUNCTION): Treat
  1056. OpenBSD like NetBSD, and Linux/ELF like SVR4.
  1057. 1999-05-16 Bruno Haible <haible@clisp.cons.org>
  1058. * src/base/cl_low.h (integerlength32) [__rs6000__]: Use old assembler
  1059. syntax on AIX systems and new assembler syntax on non-AIX systems.
  1060. 1999-05-01 Bruno Haible <haible@clisp.cons.org>
  1061. * autoconf/config.guess, autoconf/config.sub: Upgrade to newest
  1062. version from GNU CVS.
  1063. 1999-04-24 Bruno Haible <haible@clisp.cons.org>
  1064. * src/integer/bitwise/cl_I_logand.cc (logand): Optimize the case when
  1065. either operand is a positive fixnum, O(1) instead of O(N).
  1066. * src/integer/bitwise/cl_I_lognand.cc (lognand): Likewise.
  1067. * src/integer/bitwise/cl_I_logandc2.cc (logandc2): Likewise for the
  1068. first operand.
  1069. 1999-04-14 Bruno Haible <haible@clisp.cons.org>
  1070. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add check whether
  1071. ctor/dtor needs to be exported.
  1072. * include/cl_config.h.in (CL_NEED_GLOBALIZE_CTORDTOR): New macro.
  1073. * include/cl_modules.h (CL_GLOBALIZE_JUMP_LABEL): Renamed from
  1074. CL_GLOBALIZE_LABEL.
  1075. (CL_GLOBALIZE_LABEL): New macro.
  1076. (CL_GLOBALIZE_CTORDTOR_LABEL): Renamed from CL_GLOBALIZE_ASM_LABEL.
  1077. (CL_PROVIDE): Update.
  1078. 1999-04-12 Bruno Haible <haible@clisp.cons.org>
  1079. * src/Makefile.in ($(ASMFILES_S)): On HPPA, ignore preprocessing
  1080. errors ("unterminated string or character constant").
  1081. ($(ASMFILES_LO)): On HPPA, try with various settings of
  1082. COMPILER_PATH, in order to try /usr/ccs/bin/as and /bin/as.
  1083. 1999-04-11 Bruno Haible <haible@clisp.cons.org>
  1084. * INSTALL: Mention gmp problems on MIPS.
  1085. * doc/cln.tex: Likewise.
  1086. 1999-03-24 Mumit Khan <khan@xraylith.wisc.edu>
  1087. * src/Makefile.in (SUBDIRS): Filter out CVS and RCS directories from
  1088. the source tree.
  1089. * include/cl_modules.h (CL_GLOBALIZE_LABEL): Define for Win32.
  1090. (CL_GLOBALIZE_ASM_LABEL): New macro.
  1091. (CL_PROVIDE): Use it.
  1092. * src/base/random/cl_random_from.cc: Handle WIN32.
  1093. * src/timing/cl_t_current.cc: Likewise.
  1094. 1999-03-15 Bruno Haible <haible@clisp.cons.org>
  1095. * autoconf/intparam.c (main7): Use %lX instead of %X for a `long'.
  1096. (main8): Adapt for C++.
  1097. 1999-03-09 Bruno Haible <haible@clisp.cons.org>
  1098. * INSTALL: Mention egcs-1.1 problems on Sparc.
  1099. * doc/cln.tex: Likewise.
  1100. 1999-03-08 Bruno Haible <haible@clisp.cons.org>
  1101. * autoconf/aclocal.m4 (CL_FPU_CONTROL): Fix the "checking for"
  1102. messages.
  1103. 1999-02-25 Bruno Haible <haible@clisp.cons.org>
  1104. * autoconf/aclocal.m4: In test programs, declare `int main()', not
  1105. `main()'.
  1106. * lidia-interface/src/interfaces/integers/cln/bigint.c
  1107. (bigint_to_string): Fix for negative arguments.
  1108. * src/base/cl_low.h: Check for `__sparc__', not `SPARC'.
  1109. * src/base/cl_alloca.h: Likewise.
  1110. * src/base/cl_low.h: Eliminate CLISP style "# " comments.
  1111. * src/base/digitseq/cl_asm_arm_.cc,
  1112. src/base/digitseq/cl_asm_mips_.cc,
  1113. src/float/dfloat/elem/cl_DF_mul.cc: Likewise.
  1114. * src/modinteger/cl_MI_pow2.h,
  1115. src/modinteger/cl_MI_pow2m1.h,
  1116. src/modinteger/cl_MI_pow2p1.h: Workaround g++-2.7.2 inlining bug.
  1117. 1999-01-18 Bruno Haible <haible@clisp.cons.org>
  1118. * autoconf/acgeneral.m4,
  1119. autoconf/acspecific.m4: Upgrade to autoconf-2.13.
  1120. * autoconf/config.guess, autoconf/config.sub: Likewise.
  1121. * autoconf/aclocal.m4 (CL_ALLOCA): Test for _MSC_VER and alloca being
  1122. a macro. Use ${ac_objext}.
  1123. * src/base/cl_macros.h (alloca): Put _MSC_VER test before the others,
  1124. conforming with CL_ALLOCA.
  1125. 1999-01-12 Bruno Haible <haible@clisp.cons.org>
  1126. * Version 1.0 released.