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.

568 lines
24 KiB

25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
  1. 2000-12-05 Richard Kreckel <kreckel@ginac.de>
  2. * Makefile.in, src/Makefile.in, doc/Makefile.in: Use mkdir -p.
  3. * include/cln/version.h.in, src/base/verion.cc: New files.
  4. * configure.in: Generate include/cln/version.h.
  5. * cln.m4: Rewrote it. Check result of cln-config without compiling.
  6. Do cross-check library version and header version information.
  7. 2000-12-02 Christian Bauer <cbauer@ginac.de>
  8. * Makefile.in, src/Makefile.in, doc/Makefile.in: Added $DESTDIR.
  9. * cln.m4, cln.spec.in: some minor fixes with respect to RPM package
  10. building.
  11. 2000-11-24 Richard Kreckel <kreckel@ginac.de>
  12. * */*: Removed problematic stdin, stdout and stderr definitions.
  13. Use std::cin, std::cout, std::cerr instead (obsoletes 2000-10-29).
  14. 2000-11-20 Bruno Haible
  15. * cln-config.1: change title.
  16. 2000-11-18 Richard Kreckel <kreckel@ginac.de>
  17. * cln.m4: New file.
  18. * doc/cln.tex: Document package tools cln-config and cln.m4.
  19. * Makefile.in: Care about cln.m4.
  20. 2000-11-17 Richard Kreckel <kreckel@ginac.de>
  21. * cln-config.1: added manpage, as required by a couple of distros.
  22. * Makefile.in, doc/Makefile.in: target install depends on installdirs.
  23. 2000-11-16 Richard Kreckel <kreckel@ginac.de>
  24. * autoconf/aclocal.m4 (CL_GMP_SET_UINTD): New macro...
  25. * configure.in: ...used here.
  26. * include/cln/config.h.in: Put in macros defined by CL_GMP_SET_UINTD...
  27. * include/cln/types.h: ...used here.
  28. * autoconf/acgeneral.m4, autoconf/aclocal.m4: Adhere to FHS.
  29. 2000-11-13 Richard Kreckel <kreckel@ginac.de>
  30. * src/base/digitseq/cl_asm.h: Test if (intDsize==32) for MIPS and HPPA,
  31. in order to guard against an accidented configuration.
  32. * src/integer/conv/cl_I_to_digits.cc (table): member b_hoch_k of
  33. struct power_table_entry initialized as ULL instead of as UL, if
  34. intDsize==64 (caused misprinting on MIPS w/ GMP).
  35. * src/base/cl_macros.h (minus_bitm, bitc): implemented ULL, if
  36. HAVE_FAST_LONGLONG.
  37. * src/integer/bitwise/cl_I_mkfx.cc (mkf_extract): Likewise.
  38. * src/integer/conv/cl_I_from_L.cc (cl_I_from_L): Added trival
  39. generation of Bignum for intDsize==64 and a notreached-check at end.
  40. * autoconf/config.guess, autoconf/config.sub: updated from FSF.
  41. * include/cln/config.h.in: Prepared support for IA64.
  42. * include/cln/types.h: Likewise.
  43. * include/cln/object.h: Likewise.
  44. * include/cln/modules.h: Likewise.
  45. * src/base/cl_macros.h (nonreturning_function): Likewise (NUE's
  46. compiler claims __GNUC_MINOR__==9).
  47. 2000-11-03 Richard Kreckel <kreckel@ginac.de>
  48. * src/base/cl_macros.h (bit, minus_bit): changed criterion for ULL from
  49. HAVE_DD to HAVE_FAST_LONGLONG.
  50. * src/base/cl_macros.h (bitm): implemented ULL, if HAVE_FAST_LONGLONG.
  51. * src/base/cl_low.h: actually no need to include "cln/types.h" here.
  52. * src/base/cl_low.h (logcount_64): always ULL, independent of HAVE_DD.
  53. * src/base/random/cl_UL_random.cc (random32): a is always ULL.
  54. 2000-11-01 Richard Kreckel <kreckel@ginac.de>
  55. * include/cln/object.h (cl_combine): define additional signatures, if
  56. HAVE_LONGLONG is defined, in order to keep the compiler happy.
  57. * src/base/cl_macros.h: include "cln/types.h", since we need HAVE_DD...
  58. * src/base/cl_macros.h (bit): ...for this macro...
  59. * src/base/cl_macros.h (minus_bit): ...and this one.
  60. * src/base/cl_low.h: include "cln/types.h", since we need HAVE_DD...
  61. * src/base/cl_low.h (logcount_64): ...for this macro.
  62. * src/base/random/cl_UL_random.cc (random32): if HAVE_DD a is an ULL.
  63. * src/integer/gcd/cl_I_gcd_aux2.cc (floorDD): fixed algorithmic bug.
  64. that turned up when intDsize==32 and cl_word_size==64.
  65. * src/float/dfloat/elem/cl_DF_div.cc (operator/): fixed a missing cast
  66. to uint64 that turned up when intDsize==32 and cl_word_size==64.
  67. 2000-10-29 Richard Kreckel <kreckel@ginac.de>
  68. * src/real/input/cl_R_read.cc, src/complex/input/cl_N_read.cc:
  69. #undef stderr, if it's defined so cln::stderr isn't confused.
  70. * src/base/input/cl_read_globals.cc: stdin should not be extern.
  71. 2000-09-05 Richard Kreckel <kreckel@ginac.de>
  72. * include/cln/number.h (As): Fix it in namespace by suffixing `_As'
  73. to the appropiate method instead of prefixing `as_'.
  74. * src/complex/misc/cl_N_as.cc (cl_N_As): Likewise.
  75. * src/real/misc/cl_R_as.cc (cl_R_As): Likewise.
  76. * src/rational/misc/cl_RA_as.cc (cl_RA_As): Likewise.
  77. * src/integer/misc/cl_I_as.cc (cl_I_As): Likewise.
  78. * src/float/misc/cl_F_as.cc (cl_F_As): Likewise.
  79. * src/float/sfloat/misc/cl_SF_as.cc (cl_SF_As): Likewise.
  80. * src/float/lfloat/misc/cl_LF_as.cc (cl_LF_As): Likewise.
  81. * src/float/ffloat/misc/cl_FF_as.cc (cl_FF_As): Likewise.
  82. * src/float/dfloat/misc/cl_DF_as.cc (cl_DF_As): Likewise.
  83. 2000-09-05 Richard Kreckel <kreckel@ginac.de>
  84. * src/complex/transcendental/cl_C_expt_C.cc (expt): fix logic for
  85. the 0^y cases.
  86. 2000-08-30 Richard Kreckel <kreckel@ginac.de>
  87. * include/cln/number.h, cl_number::_as_cl_private_thing(): removed.
  88. Rearranged for a clearer distinction between macros and remaining
  89. identifiers, so Cint can parse it smoothly.
  90. 2000-08-29 Richard Kreckel <kreckel@ginac.de>
  91. * include/cln/number.h, the(const cl_number& x): New template
  92. function.
  93. 2000-08-29 Richard Kreckel <kreckel@ginac.de>
  94. * */*: Pushed CLN into a namespace `cln'. While doing so, the
  95. following identifiers got their poor-man's namespace (i.e. the
  96. prefix `cl_') stripped off:
  97. cl_catalanconst() -> catalanconst()
  98. cl_compare() -> compare()
  99. cl_cos_sin() -> cos_sin()
  100. cl_cos_sin_t -> cos_sin_t
  101. cl_cosh_sinh() -> cosh_sinh()
  102. cl_cosh_sinh_t -> cosh_sinh_t
  103. cl_decoded_dfloat -> decoded_dfloat
  104. cl_decoded_ffloat -> decoded_ffloat
  105. cl_decoded_float -> decoded_float
  106. cl_decoded_lfloat -> decoded_lfloat
  107. cl_decoded_sfloat -> decoded_sfloat
  108. cl_default_float_format -> default_float_format
  109. cl_default_print_flags -> default_print_flags
  110. cl_default_random_state -> default_random_state
  111. cl_double_approx() -> double_approx()
  112. cl_equal() -> equal()
  113. cl_equal_hashcode() -> equal_hashcode()
  114. cl_eulerconst() -> eulerconst()
  115. cl_find_modint_ring() -> find_modint_ring()
  116. cl_find_univpoly_ring() -> find_univ_poly_ring()
  117. cl_float_approx() -> float_approx
  118. cl_float_format() -> float_format()
  119. cl_float_format_t -> float_format_t
  120. cl_free_hook() -> free_hook()
  121. cl_hermite() -> hermite()
  122. cl_laguerre() -> laguerre()
  123. cl_legendre() -> legandre()
  124. cl_malloc_hook() -> malloc_hook()
  125. cl_pi() -> pi()
  126. cl_tschebychev() -> tschebychev()
  127. cl_zeta() -> zeta()
  128. NB: For functions these changes includes all signatures.
  129. * include/*: moved to include/cln/*, stripped `cl_' off filenames.
  130. * cln-config.in: new file.
  131. 2000-08-26 Bruno Haible <haible@clisp.cons.org>
  132. * autoconf/acgeneral.m4 (AC_OUTPUT): Use braces in exec_prefix default
  133. value, not parens.
  134. 2000-08-18 Bruno Haible <haible@clisp.cons.org>
  135. * include/cl_univpoly_modint.h: Fix typo.
  136. 2000-07-13 Bruno Haible <haible@clisp.cons.org>
  137. * src/float/input/cl_F_read_stream.cc (number_char_p): Accept '_',
  138. used as precision marker for floats.
  139. Reported by Keith Briggs (in 1998) and Thomas Roessler.
  140. * src/integer/input/cl_I_read_stream.cc (number_char_p): Likewise.
  141. * src/rational/input/cl_RA_read_stream.cc (number_char_p): Likewise.
  142. * src/real/input/cl_R_read_stream.cc (number_char_p): Likewise.
  143. * src/complex/input/cl_N_read_stream.cc (number_char_p): Likewise.
  144. 2000-06-22 Bruno Haible <haible@clisp.cons.org>
  145. * include/cl_object.h: Rename cl_word_size to cl_pointer_size.
  146. * include/cl_types.h (HAVE_FAST_LONGLONG): Also define on Irix6
  147. with N32 ABI.
  148. (cl_word_size): New macro.
  149. * src/float/sfloat/cl_SF.h: Use cl_pointer_size instead of
  150. cl_word_size.
  151. 2000-05-31 Bruno Haible <haible@clisp.cons.org>
  152. * tests/exam_I_floor.cc (integer_floor_tests): Add one more entry.
  153. From a sample that fails with gcc-2.95.2 on Sparc.
  154. * tests/exam_I_gcd.cc (integer_gcd_tests): Likewise.
  155. 2000-05-30 Richard Kreckel <kreckel@ginac.de>
  156. * configure.in, autoconf/aclocal.m4 (CL_GMP_H_VERSION, CL_GMP_CHECK):
  157. New macros.
  158. * configure.in, include/cl_config.h.in (CL_VERSION, CL_VERSION_MINOR,
  159. CL_VERSION_PATCHLEVEL): New definitions.
  160. * autoconf/config.guess, autoconf/config.sub, autoconf/ltconfig,
  161. autoconf/ltmain.sh: updated from FSF (libtool 1.3.5, etc).
  162. * src/Makefile.in, configure.in: release-variables renamed from
  163. CLN_* to CL_*.
  164. * configure.in: default to build both shared and static library
  165. (i.e. default to the most common behaviour).
  166. 2000-05-29 Richard Kreckel <kreckel@ginac.de>
  167. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Added missing changequote
  168. environment around the patch of 2000-05-23.
  169. 2000-05-29 Bruno Haible <haible@clisp.cons.org>
  170. * autoconf/aclocal.m4 (CL_PROG_INSTALL): Fix typo.
  171. Reported by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>.
  172. 2000-05-27 Richard Kreckel <kreckel@ginac.de>
  173. * src/float/lfloat/algebraic/cl_LF_sqrt.cc,
  174. src/base/digitseq/cl_DS_sqrt.cc: Readjusted break-even points.
  175. 2000-05-24 Richard Kreckel <kreckel@ginac.de>
  176. * autoconf/config.*: Updated to new version from FSF
  177. (the new libtool wants this).
  178. * src/Makefile.in: added $(LDFLAGS) to link step.
  179. * src/base/digitseq/cl_2DS_div.cc, cl_2DS_recip.cc: Readjusted
  180. break-even points.
  181. 2000-05-23 Bruno Haible <haible@clisp.cons.org>
  182. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Determine host_cpu,
  183. host_vendor, host_os correctly if $host has more than two hyphens.
  184. 2000-05-19 Richard Kreckel <kreckel@ginac.de>
  185. * src/base/digitseq/cl_DS_mul.cc: Rearranged break-even points to
  186. better match present-day CPUs whenever GMP3 is used.
  187. * src/base/digitseq/cl_DS_div.cc: dto.
  188. * src/TUNING: Added comment about order of tuning.
  189. * configure, configure.in: Safer GMP3-detection.
  190. * INSTALL.generic: Clarified behaviour of --with-gmp.
  191. * autoconf/config.guess: updated from Clisp-2000-03-06 sources.
  192. 2000-05-04 Richard Kreckel <kreckel@ginac.de>
  193. * gmp/: removed completely. From now on we are going to link
  194. externally against libgmp3.0 or above!
  195. * configure, configure.in, Makefile.in, */Makeflags: removed support
  196. of internal gmp 2.0.2, like $GMP_INCLUDES, which should be done by
  197. setting $CPPFLAGS instead.
  198. * Makefile.in: Added libtool inter-library dependency for -lgmp and
  199. conforming interface versioning (-version-info).
  200. * autoconf/ltconfig, autoconf/ltmain.sh: Updated to newer versions
  201. from libtool 1.3.4.
  202. 2000-02-22 Bruno Haible <haible@clisp.cons.org>
  203. * src/base/digitseq/cl_asm_mips_.cc: Starting at argument 5 the
  204. parameter passing was changed for the MIPS n32 ABI.
  205. 2000-01-24 Richard Kreckel <kreckel@ginac.de>
  206. * gmp/*: Replaced the complete mpn sources with the ones from
  207. Debian since they are maintained while the ones from FSF
  208. aren't and there were problems on some architectures, PowerPC
  209. in particular. See the file gmp/README.CLN. This way the
  210. hard links in this directory have vanished, they were causing
  211. trouble for people working in AFS. This became necessary for
  212. Debian, because there it woudn't compile on PPC.
  213. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  214. * Version 1.0.3 released.
  215. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  216. * src/base/cl_macros.h (nonreturning_function): For egcs and newer
  217. use __attribute__ ((__noreturn__)) instead of the __volatile__
  218. storage class.
  219. (nonreturning): Remove macro.
  220. * include/*: Minor fixes to stop -ansi -pedantic from complaining.
  221. * include/cl_integer.h: (doublefactorial): New declaration.
  222. * src/integer/misc/combin/cl_I_doublefactorial.cc: New file.
  223. 1999-12-18 Bruno Haible <haible@clisp.cons.org>
  224. * autoconf/acgeneral.m4 (AC_ARG_PROGRAM): Create conftestsed using
  225. "cat", not "echo".
  226. * autoconf/ltconfig: Improve support for recent FreeBSD 3.
  227. * include/cl_GV.h (cl_GV_vectorops): Change return type from 'T' to
  228. 'const T', to match definition in src/vector/cl_GV_number.cc.
  229. Reported by Duncan Simpson <dps@io.stargate.co.uk>.
  230. * gmp/mpn/Makefile.in (.S.lo): Use 'if', not '&&', because '&&' may
  231. yield return code 1.
  232. 1999-09-07 Bruno Haible <haible@clisp.cons.org>
  233. * Version 1.0.2 released.
  234. 1999-09-06 Bruno Haible <haible@clisp.cons.org>
  235. * src/rational/cl_RA.h (integerp, ratiop): Instead of returning a
  236. boolean expression, write alternatives ending with either
  237. "return cl_true;" or "return cl_false;". This way, g++ does a
  238. better job inlining it.
  239. * src/float/cl_F.h (longfloatp): Likewise.
  240. * src/real/cl_R.h (rationalp, integerp, floatp): Likewise.
  241. * src/complex/cl_C.h (realp, complexp): Likewise.
  242. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  243. * include/cl_integer.h (cl_equal_hashcode): New declaration.
  244. * include/cl_rational.h (cl_equal_hashcode): New declaration.
  245. * include/cl_sfloat.h (cl_equal_hashcode): New declaration.
  246. * include/cl_ffloat.h (cl_equal_hashcode): New declaration.
  247. * include/cl_dfloat.h (cl_equal_hashcode): New declaration.
  248. * include/cl_lfloat.h (cl_equal_hashcode): New declaration.
  249. * include/cl_float.h (cl_equal_hashcode): New declaration.
  250. * include/cl_real.h (cl_equal_hashcode): New declaration.
  251. * include/cl_complex.h (cl_equal_hashcode): New declaration.
  252. * src/base/cl_N.h (equal_hashcode_low, equal_hashcode_one): New macros.
  253. * src/integer/misc/cl_I_eqhashcode.cc: New file.
  254. * src/rational/misc/cl_RA_eqhashcode.cc: New file.
  255. * src/float/sfloat/misc/cl_SF_eqhashcode.cc: New file.
  256. * src/float/ffloat/misc/cl_FF_eqhashcode.cc: New file.
  257. * src/float/dfloat/misc/cl_DF_eqhashcode.cc: New file.
  258. * src/float/lfloat/misc/cl_LF_eqhashcode.cc: New file.
  259. * src/float/misc/cl_F_eqhashcode.cc: New file.
  260. * src/real/misc/cl_R_eqhashcode.cc: New file.
  261. * src/complex/misc/cl_C_eqhashcode.cc: New file.
  262. * doc/cln.tex: Document `cl_equal_hashcode'.
  263. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  264. * include/cl_ring.h (cl_number_ring_ops): Add `contains' member.
  265. (cl_number_ring): New class.
  266. (cl_specialized_number_ring<T>): Inherit from cl_number_ring.
  267. (instanceof): New function.
  268. * src/integer/ring/cl_I_ring.cc (cl_I_p): New function.
  269. * src/integer/misc/cl_I_as.cc (cl_I_p): Add comment.
  270. * src/rational/ring/cl_RA_ring.cc (cl_RA_p): New function.
  271. * src/rational/misc/cl_RA_as.cc (cl_RA_p): Add comment.
  272. * src/real/ring/cl_R_ring.cc (cl_R_p): New function.
  273. * src/real/misc/cl_R_as.cc (cl_R_p): Add comment.
  274. * src/complex/ring/cl_C_ring.cc (cl_N_p): New function.
  275. * src/complex/misc/cl_N_as.cc (cl_N_p): Add comment.
  276. * doc/cln.tex: Document `instanceof'.
  277. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  278. * include/cl_rational.h (numerator, denominator): New declarations.
  279. * src/rational/elem/cl_RA_numerator.cc: New file.
  280. * src/rational/elem/cl_RA_denominator.cc: New file.
  281. * include/cl_integer.h (numerator, denominator): New inline functions.
  282. * doc/cln.tex: Document `numerator' and `denominator'.
  283. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  284. * src/rational/algebraic/cl_RA_rootp.cc (rootp): Fix endless loop
  285. in the integer case.
  286. * src/rational/algebraic/cl_RA_rootp_I.cc (rootp): Likewise.
  287. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  288. * include/cl_config.h.in: Support for sparc64 CPU.
  289. * include/cl_modules.h: Likewise.
  290. * include/cl_types.h: Likewise.
  291. * include/cl_object.h: Likewise.
  292. * include/cl_GV.h: Likewise.
  293. * src/Makefile.in: Likewise.
  294. * src/base/cl_alloca.h: Likewise.
  295. * src/base/cl_macros.h: Likewise.
  296. * src/base/cl_sysdep.h: Likewise.
  297. * src/base/cl_low.h: Likewise.
  298. * src/base/digitseq/cl_asm.h: Likewise.
  299. * src/base/digitseq/cl_asm_.cc: Likewise.
  300. * src/base/digitseq/cl_asm_sparc64.h: New file.
  301. * src/base/digitseq/cl_asm_sparc64_.cc: New file.
  302. * src/modinteger/cl_MI_int.h: Support for sparc64 CPU.
  303. * src/polynomial/elem/cl_UP_no_ring.cc: Likewise.
  304. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  305. * src/polynomial/elem/cl_asm_GF2.cc: Likewise.
  306. 1999-09-04 Bruno Haible <haible@clisp.cons.org>
  307. * src/base/digitseq/cl_asm_sparc_.cc (orc2_loop_up, orc2_loop_down):
  308. Use the `orn' instruction.
  309. 1999-08-14 Bruno Haible <haible@clisp.cons.org>
  310. Assume all platforms have <stdlib.h> and clock_t.
  311. * configure.in: Don't call CL_STDLIB_H and CL_CLOCK_T.
  312. * src/base/cl_base_config.h.in (CLOCK_T): Remove definition.
  313. * src/base/random/cl_random_from.cc: Use clock_t instead of CLOCK_T.
  314. * src/timing/cl_t_config.h.in (CLOCK_T): Remove definition.
  315. * src/timing/cl_t_current2.cc: Use clock_t instead of CLOCK_T.
  316. 1999-07-18 Bruno Haible <haible@clisp.cons.org>
  317. * gmp/config.guess: Link to autoconf/config.guess.
  318. gmp/config.sub: Link to autoconf/config.sub.
  319. Needed for Win32 platforms.
  320. 1999-07-17 Bruno Haible <haible@clisp.cons.org>
  321. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Distinguish "sparc" and
  322. "sparc64" according to the C compiler, not the uname result.
  323. 1999-06-17 Bruno Haible <haible@clisp.cons.org>
  324. * src/base/digitseq/cl_asm_sparc_.cc (compare_loop_up): Fix
  325. COUNTER_LOOPS version, fortunately not used yet.
  326. * include/cl_modules.h: Prepare for gcc version 3.
  327. 1999-06-12 Bruno Haible <haible@clisp.cons.org>
  328. * src/rational/elem/cl_RA_plus.cc, src/rational/elem/cl_RA_minus.cc:
  329. Change the last call from I_I_to_RT to I_I_to_RA.
  330. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  331. * Version 1.0.1 released.
  332. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  333. * src/integer/cl_I.h (pFN_maxlength_digits_at): Define also when
  334. intDsize==64.
  335. 1999-06-08 Bruno Haible <haible@clisp.cons.org>
  336. * autoconf/intparam.c (printf_underscored): Change argument type to
  337. `const char*'.
  338. * include/cl_modules.h (CL_OUTPUT_LABEL, CL_JUMP_TO): New macros.
  339. (CL_PROVIDE, CL_PROVIDE_END): Use them.
  340. * include/cl_string.h (cl_heap_string::operator new): Return 1, not 0.
  341. * include/cl_GV.h (cl_GV_inner<T>::operator new): Likewise.
  342. * src/base/ring/cl_no_ring.cc (dummy_canonhom, dummy_expt_pos): Don't
  343. cast a cl_I to void here. Works around a bug in g++-2.95.
  344. * src/complex/misc/cl_C_class.cc: Include "cl_C.h".
  345. * src/polynomial/elem/cl_UP_no_ring.cc (dummy_canonhom,
  346. dummy_expt_pos): Don't cast a cl_I to void here. Works around a bug
  347. in g++-2.95.
  348. * src/polynomial/elem/cl_asm_sparc_GF2.cc (DECLARE_FUNCTION): New
  349. macro.
  350. * src/rational/misc/cl_RA_class.cc: Include "cl_RA.h".
  351. * src/vector/cl_GV_I.cc (cl_heap_GV_I_general::operator new,
  352. DEFINE_cl_heap_GV_I_bits): Return 1, not 0.
  353. * src/vector/cl_GV_number.cc (cl_heap_GV_number_general::operator new):
  354. Likewise.
  355. 1999-06-01 Bruno Haible <haible@clisp.cons.org>
  356. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Canonicalize alpha
  357. variants to alpha.
  358. 1999-05-29 Bruno Haible <haible@clisp.cons.org>
  359. * src/base/digitseq/cl_asm_i386_.cc (DECLARE_FUNCTION): Treat
  360. OpenBSD like NetBSD.
  361. * src/base/digitseq/cl_asm_sparc_.cc (DECLARE_FUNCTION): Likewise.
  362. * src/base/digitseq/cl_asm_m68k_.cc (DECLARE_FUNCTION): Treat
  363. OpenBSD like NetBSD, and Linux/ELF like SVR4.
  364. 1999-05-16 Bruno Haible <haible@clisp.cons.org>
  365. * src/base/cl_low.h (integerlength32) [__rs6000__]: Use old assembler
  366. syntax on AIX systems and new assembler syntax on non-AIX systems.
  367. 1999-05-01 Bruno Haible <haible@clisp.cons.org>
  368. * autoconf/config.guess, autoconf/config.sub: Upgrade to newest
  369. version from GNU CVS.
  370. 1999-04-24 Bruno Haible <haible@clisp.cons.org>
  371. * src/integer/bitwise/cl_I_logand.cc (logand): Optimize the case when
  372. either operand is a positive fixnum, O(1) instead of O(N).
  373. * src/integer/bitwise/cl_I_lognand.cc (lognand): Likewise.
  374. * src/integer/bitwise/cl_I_logandc2.cc (logandc2): Likewise for the
  375. first operand.
  376. 1999-04-14 Bruno Haible <haible@clisp.cons.org>
  377. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add check whether
  378. ctor/dtor needs to be exported.
  379. * include/cl_config.h.in (CL_NEED_GLOBALIZE_CTORDTOR): New macro.
  380. * include/cl_modules.h (CL_GLOBALIZE_JUMP_LABEL): Renamed from
  381. CL_GLOBALIZE_LABEL.
  382. (CL_GLOBALIZE_LABEL): New macro.
  383. (CL_GLOBALIZE_CTORDTOR_LABEL): Renamed from CL_GLOBALIZE_ASM_LABEL.
  384. (CL_PROVIDE): Update.
  385. 1999-04-12 Bruno Haible <haible@clisp.cons.org>
  386. * src/Makefile.in ($(ASMFILES_S)): On HPPA, ignore preprocessing
  387. errors ("unterminated string or character constant").
  388. ($(ASMFILES_LO)): On HPPA, try with various settings of
  389. COMPILER_PATH, in order to try /usr/ccs/bin/as and /bin/as.
  390. 1999-04-11 Bruno Haible <haible@clisp.cons.org>
  391. * INSTALL: Mention gmp problems on MIPS.
  392. * doc/cln.tex: Likewise.
  393. 1999-03-24 Mumit Khan <khan@xraylith.wisc.edu>
  394. * src/Makefile.in (SUBDIRS): Filter out CVS and RCS directories from
  395. the source tree.
  396. * include/cl_modules.h (CL_GLOBALIZE_LABEL): Define for Win32.
  397. (CL_GLOBALIZE_ASM_LABEL): New macro.
  398. (CL_PROVIDE): Use it.
  399. * src/base/random/cl_random_from.cc: Handle WIN32.
  400. * src/timing/cl_t_current.cc: Likewise.
  401. 1999-03-15 Bruno Haible <haible@clisp.cons.org>
  402. * autoconf/intparam.c (main7): Use %lX instead of %X for a `long'.
  403. (main8): Adapt for C++.
  404. 1999-03-09 Bruno Haible <haible@clisp.cons.org>
  405. * INSTALL: Mention egcs-1.1 problems on Sparc.
  406. * doc/cln.tex: Likewise.
  407. 1999-03-08 Bruno Haible <haible@clisp.cons.org>
  408. * autoconf/aclocal.m4 (CL_FPU_CONTROL): Fix the "checking for"
  409. messages.
  410. 1999-02-25 Bruno Haible <haible@clisp.cons.org>
  411. * autoconf/aclocal.m4: In test programs, declare `int main()', not
  412. `main()'.
  413. * lidia-interface/src/interfaces/integers/cln/bigint.c
  414. (bigint_to_string): Fix for negative arguments.
  415. * src/base/cl_low.h: Check for `__sparc__', not `SPARC'.
  416. * src/base/cl_alloca.h: Likewise.
  417. * src/base/cl_low.h: Eliminate CLISP style "# " comments.
  418. * src/base/digitseq/cl_asm_arm_.cc,
  419. src/base/digitseq/cl_asm_mips_.cc,
  420. src/float/dfloat/elem/cl_DF_mul.cc: Likewise.
  421. * src/modinteger/cl_MI_pow2.h,
  422. src/modinteger/cl_MI_pow2m1.h,
  423. src/modinteger/cl_MI_pow2p1.h: Workaround g++-2.7.2 inlining bug.
  424. 1999-01-18 Bruno Haible <haible@clisp.cons.org>
  425. * autoconf/acgeneral.m4,
  426. autoconf/acspecific.m4: Upgrade to autoconf-2.13.
  427. * autoconf/config.guess, autoconf/config.sub: Likewise.
  428. * autoconf/aclocal.m4 (CL_ALLOCA): Test for _MSC_VER and alloca being
  429. a macro. Use ${ac_objext}.
  430. * src/base/cl_macros.h (alloca): Put _MSC_VER test before the others,
  431. conforming with CL_ALLOCA.
  432. 1999-01-12 Bruno Haible <haible@clisp.cons.org>
  433. * Version 1.0 released.