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.

342 lines
14 KiB

25 years ago
  1. 2000-05-23 Bruno Haible <haible@clisp.cons.org>
  2. * autoconf/aclocal.m4 (CL_CANONICAL_HOST): Determine host_cpu,
  3. host_vendor, host_os correctly if $host has more than two hyphens.
  4. 2000-05-19 Richard Kreckel <kreckel@ginac.de>
  5. * src/base/digitseq/cl_DS_mul.cc: Rearranged break-even points to
  6. better match present-day CPUs whenever GMP3 is used.
  7. * src/base/digitseq/cl_DS_div.cc: dto.
  8. * src/TUNING: Added comment about order of tuning.
  9. * configure, configure.in: Safer GMP3-detection.
  10. * INSTALL.generic: Clarified behaviour of --with-gmp.
  11. * autoconf/config.guess: updated from Clisp-2000-03-06 sources.
  12. 2000-05-05 Richard Kreckel <kreckel@ginac.de>
  13. * doc/cln.tex: Added index entries.
  14. * doc/texinfo.tex: Upgraded to newer version 1999-10-01.07.
  15. * doc/*: Changes triggered.
  16. 2000-05-04 Richard Kreckel <kreckel@ginac.de>
  17. * gmp/: removed completely. From now on we are going to link
  18. externally against libgmp3.0 or above!
  19. * configure, configure.in, Makefile.in, */Makeflags: removed support
  20. of internal gmp 2.0.2, like $GMP_INCLUDES, which should be done by
  21. setting $CPPFLAGS instead.
  22. * Makefile.in: Added libtool inter-library dependency for -lgmp and
  23. conforming interface versioning (-version-info).
  24. * autoconf/ltconfig, autoconf/ltmain.sh: Updated to newer versions
  25. from libtool 1.3.4.
  26. 2000-02-22 Bruno Haible <haible@clisp.cons.org>
  27. * src/base/digitseq/cl_asm_mips_.cc: Starting at argument 5 the
  28. parameter passing was changed for the MIPS n32 ABI.
  29. 2000-01-24 Richard Kreckel <kreckel@ginac.de>
  30. * gmp/*: Replaced the complete mpn sources with the ones from
  31. Debian since they are maintained while the ones from FSF
  32. aren't and there were problems on some architectures, PowerPC
  33. in particular. See the file gmp/README.CLN. This way the
  34. hard links in this directory have vanished, they were causing
  35. trouble for people working in AFS. This became necessary for
  36. Debian, because there it woudn't compile on PPC.
  37. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  38. * Version 1.0.3 released.
  39. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  40. * src/base/cl_macros.h (nonreturning_function): For egcs and newer
  41. use __attribute__ ((__noreturn__)) instead of the __volatile__
  42. storage class.
  43. (nonreturning): Remove macro.
  44. * include/*: Minor fixes to stop -ansi -pedantic from complaining.
  45. * include/cl_integer.h: (doublefactorial): New declaration.
  46. * src/integer/misc/combin/cl_I_doublefactorial.cc: New file.
  47. 1999-12-18 Bruno Haible <haible@clisp.cons.org>
  48. * autoconf/acgeneral.m4 (AC_ARG_PROGRAM): Create conftestsed using
  49. "cat", not "echo".
  50. * autoconf/ltconfig: Improve support for recent FreeBSD 3.
  51. * include/cl_GV.h (cl_GV_vectorops): Change return type from 'T' to
  52. 'const T', to match definition in src/vector/cl_GV_number.cc.
  53. Reported by Duncan Simpson <dps@io.stargate.co.uk>.
  54. * gmp/mpn/Makefile.in (.S.lo): Use 'if', not '&&', because '&&' may
  55. yield return code 1.
  56. 1999-09-07 Bruno Haible <haible@clisp.cons.org>
  57. * Version 1.0.2 released.
  58. 1999-09-06 Bruno Haible <haible@clisp.cons.org>
  59. * src/rational/cl_RA.h (integerp, ratiop): Instead of returning a
  60. boolean expression, write alternatives ending with either
  61. "return cl_true;" or "return cl_false;". This way, g++ does a
  62. better job inlining it.
  63. * src/float/cl_F.h (longfloatp): Likewise.
  64. * src/real/cl_R.h (rationalp, integerp, floatp): Likewise.
  65. * src/complex/cl_C.h (realp, complexp): Likewise.
  66. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  67. * include/cl_integer.h (cl_equal_hashcode): New declaration.
  68. * include/cl_rational.h (cl_equal_hashcode): New declaration.
  69. * include/cl_sfloat.h (cl_equal_hashcode): New declaration.
  70. * include/cl_ffloat.h (cl_equal_hashcode): New declaration.
  71. * include/cl_dfloat.h (cl_equal_hashcode): New declaration.
  72. * include/cl_lfloat.h (cl_equal_hashcode): New declaration.
  73. * include/cl_float.h (cl_equal_hashcode): New declaration.
  74. * include/cl_real.h (cl_equal_hashcode): New declaration.
  75. * include/cl_complex.h (cl_equal_hashcode): New declaration.
  76. * src/base/cl_N.h (equal_hashcode_low, equal_hashcode_one): New macros.
  77. * src/integer/misc/cl_I_eqhashcode.cc: New file.
  78. * src/rational/misc/cl_RA_eqhashcode.cc: New file.
  79. * src/float/sfloat/misc/cl_SF_eqhashcode.cc: New file.
  80. * src/float/ffloat/misc/cl_FF_eqhashcode.cc: New file.
  81. * src/float/dfloat/misc/cl_DF_eqhashcode.cc: New file.
  82. * src/float/lfloat/misc/cl_LF_eqhashcode.cc: New file.
  83. * src/float/misc/cl_F_eqhashcode.cc: New file.
  84. * src/real/misc/cl_R_eqhashcode.cc: New file.
  85. * src/complex/misc/cl_C_eqhashcode.cc: New file.
  86. * doc/cln.tex: Document `cl_equal_hashcode'.
  87. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  88. * include/cl_ring.h (cl_number_ring_ops): Add `contains' member.
  89. (cl_number_ring): New class.
  90. (cl_specialized_number_ring<T>): Inherit from cl_number_ring.
  91. (instanceof): New function.
  92. * src/integer/ring/cl_I_ring.cc (cl_I_p): New function.
  93. * src/integer/misc/cl_I_as.cc (cl_I_p): Add comment.
  94. * src/rational/ring/cl_RA_ring.cc (cl_RA_p): New function.
  95. * src/rational/misc/cl_RA_as.cc (cl_RA_p): Add comment.
  96. * src/real/ring/cl_R_ring.cc (cl_R_p): New function.
  97. * src/real/misc/cl_R_as.cc (cl_R_p): Add comment.
  98. * src/complex/ring/cl_C_ring.cc (cl_N_p): New function.
  99. * src/complex/misc/cl_N_as.cc (cl_N_p): Add comment.
  100. * doc/cln.tex: Document `instanceof'.
  101. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  102. * include/cl_rational.h (numerator, denominator): New declarations.
  103. * src/rational/elem/cl_RA_numerator.cc: New file.
  104. * src/rational/elem/cl_RA_denominator.cc: New file.
  105. * include/cl_integer.h (numerator, denominator): New inline functions.
  106. * doc/cln.tex: Document `numerator' and `denominator'.
  107. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  108. * src/rational/algebraic/cl_RA_rootp.cc (rootp): Fix endless loop
  109. in the integer case.
  110. * src/rational/algebraic/cl_RA_rootp_I.cc (rootp): Likewise.
  111. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  112. * include/cl_config.h.in: Support for sparc64 CPU.
  113. * include/cl_modules.h: Likewise.
  114. * include/cl_types.h: Likewise.
  115. * include/cl_object.h: Likewise.
  116. * include/cl_GV.h: Likewise.
  117. * src/Makefile.in: Likewise.
  118. * src/base/cl_alloca.h: Likewise.
  119. * src/base/cl_macros.h: Likewise.
  120. * src/base/cl_sysdep.h: Likewise.
  121. * src/base/cl_low.h: Likewise.
  122. * src/base/digitseq/cl_asm.h: Likewise.
  123. * src/base/digitseq/cl_asm_.cc: Likewise.
  124. * src/base/digitseq/cl_asm_sparc64.h: New file.
  125. * src/base/digitseq/cl_asm_sparc64_.cc: New file.
  126. * src/modinteger/cl_MI_int.h: Support for sparc64 CPU.
  127. * src/polynomial/elem/cl_UP_no_ring.cc: Likewise.
  128. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  129. * src/polynomial/elem/cl_asm_GF2.cc: Likewise.
  130. 1999-09-04 Bruno Haible <haible@clisp.cons.org>
  131. * src/base/digitseq/cl_asm_sparc_.cc (orc2_loop_up, orc2_loop_down):
  132. Use the `orn' instruction.
  133. 1999-08-14 Bruno Haible <haible@clisp.cons.org>
  134. Assume all platforms have <stdlib.h> and clock_t.
  135. * configure.in: Don't call CL_STDLIB_H and CL_CLOCK_T.
  136. * src/base/cl_base_config.h.in (CLOCK_T): Remove definition.
  137. * src/base/random/cl_random_from.cc: Use clock_t instead of CLOCK_T.
  138. * src/timing/cl_t_config.h.in (CLOCK_T): Remove definition.
  139. * src/timing/cl_t_current2.cc: Use clock_t instead of CLOCK_T.
  140. 1999-07-18 Bruno Haible <haible@clisp.cons.org>
  141. * gmp/config.guess: Link to autoconf/config.guess.
  142. gmp/config.sub: Link to autoconf/config.sub.
  143. Needed for Win32 platforms.
  144. 1999-07-17 Bruno Haible <haible@clisp.cons.org>
  145. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Distinguish "sparc" and
  146. "sparc64" according to the C compiler, not the uname result.
  147. 1999-06-17 Bruno Haible <haible@clisp.cons.org>
  148. * src/base/digitseq/cl_asm_sparc_.cc (compare_loop_up): Fix
  149. COUNTER_LOOPS version, fortunately not used yet.
  150. * include/cl_modules.h: Prepare for gcc version 3.
  151. 1999-06-12 Bruno Haible <haible@clisp.cons.org>
  152. * src/rational/elem/cl_RA_plus.cc, src/rational/elem/cl_RA_minus.cc:
  153. Change the last call from I_I_to_RT to I_I_to_RA.
  154. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  155. * Version 1.0.1 released.
  156. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  157. * src/integer/cl_I.h (pFN_maxlength_digits_at): Define also when
  158. intDsize==64.
  159. 1999-06-08 Bruno Haible <haible@clisp.cons.org>
  160. * autoconf/intparam.c (printf_underscored): Change argument type to
  161. `const char*'.
  162. * include/cl_modules.h (CL_OUTPUT_LABEL, CL_JUMP_TO): New macros.
  163. (CL_PROVIDE, CL_PROVIDE_END): Use them.
  164. * include/cl_string.h (cl_heap_string::operator new): Return 1, not 0.
  165. * include/cl_GV.h (cl_GV_inner<T>::operator new): Likewise.
  166. * src/base/ring/cl_no_ring.cc (dummy_canonhom, dummy_expt_pos): Don't
  167. cast a cl_I to void here. Works around a bug in g++-2.95.
  168. * src/complex/misc/cl_C_class.cc: Include "cl_C.h".
  169. * src/polynomial/elem/cl_UP_no_ring.cc (dummy_canonhom,
  170. dummy_expt_pos): Don't cast a cl_I to void here. Works around a bug
  171. in g++-2.95.
  172. * src/polynomial/elem/cl_asm_sparc_GF2.cc (DECLARE_FUNCTION): New
  173. macro.
  174. * src/rational/misc/cl_RA_class.cc: Include "cl_RA.h".
  175. * src/vector/cl_GV_I.cc (cl_heap_GV_I_general::operator new,
  176. DEFINE_cl_heap_GV_I_bits): Return 1, not 0.
  177. * src/vector/cl_GV_number.cc (cl_heap_GV_number_general::operator new):
  178. Likewise.
  179. 1999-06-01 Bruno Haible <haible@clisp.cons.org>
  180. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Canonicalize alpha
  181. variants to alpha.
  182. 1999-05-29 Bruno Haible <haible@clisp.cons.org>
  183. * src/base/digitseq/cl_asm_i386_.cc (DECLARE_FUNCTION): Treat
  184. OpenBSD like NetBSD.
  185. * src/base/digitseq/cl_asm_sparc_.cc (DECLARE_FUNCTION): Likewise.
  186. * src/base/digitseq/cl_asm_m68k_.cc (DECLARE_FUNCTION): Treat
  187. OpenBSD like NetBSD, and Linux/ELF like SVR4.
  188. 1999-05-16 Bruno Haible <haible@clisp.cons.org>
  189. * src/base/cl_low.h (integerlength32) [__rs6000__]: Use old assembler
  190. syntax on AIX systems and new assembler syntax on non-AIX systems.
  191. 1999-05-01 Bruno Haible <haible@clisp.cons.org>
  192. * autoconf/config.guess, autoconf/config.sub: Upgrade to newest
  193. version from GNU CVS.
  194. 1999-04-24 Bruno Haible <haible@clisp.cons.org>
  195. * src/integer/bitwise/cl_I_logand.cc (logand): Optimize the case when
  196. either operand is a positive fixnum, O(1) instead of O(N).
  197. * src/integer/bitwise/cl_I_lognand.cc (lognand): Likewise.
  198. * src/integer/bitwise/cl_I_logandc2.cc (logandc2): Likewise for the
  199. first operand.
  200. 1999-04-14 Bruno Haible <haible@clisp.cons.org>
  201. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add check whether
  202. ctor/dtor needs to be exported.
  203. * include/cl_config.h.in (CL_NEED_GLOBALIZE_CTORDTOR): New macro.
  204. * include/cl_modules.h (CL_GLOBALIZE_JUMP_LABEL): Renamed from
  205. CL_GLOBALIZE_LABEL.
  206. (CL_GLOBALIZE_LABEL): New macro.
  207. (CL_GLOBALIZE_CTORDTOR_LABEL): Renamed from CL_GLOBALIZE_ASM_LABEL.
  208. (CL_PROVIDE): Update.
  209. 1999-04-12 Bruno Haible <haible@clisp.cons.org>
  210. * src/Makefile.in ($(ASMFILES_S)): On HPPA, ignore preprocessing
  211. errors ("unterminated string or character constant").
  212. ($(ASMFILES_LO)): On HPPA, try with various settings of
  213. COMPILER_PATH, in order to try /usr/ccs/bin/as and /bin/as.
  214. 1999-04-11 Bruno Haible <haible@clisp.cons.org>
  215. * INSTALL: Mention gmp problems on MIPS.
  216. * doc/cln.tex: Likewise.
  217. 1999-03-24 Mumit Khan <khan@xraylith.wisc.edu>
  218. * src/Makefile.in (SUBDIRS): Filter out CVS and RCS directories from
  219. the source tree.
  220. * include/cl_modules.h (CL_GLOBALIZE_LABEL): Define for Win32.
  221. (CL_GLOBALIZE_ASM_LABEL): New macro.
  222. (CL_PROVIDE): Use it.
  223. * src/base/random/cl_random_from.cc: Handle WIN32.
  224. * src/timing/cl_t_current.cc: Likewise.
  225. 1999-03-15 Bruno Haible <haible@clisp.cons.org>
  226. * autoconf/intparam.c (main7): Use %lX instead of %X for a `long'.
  227. (main8): Adapt for C++.
  228. 1999-03-09 Bruno Haible <haible@clisp.cons.org>
  229. * INSTALL: Mention egcs-1.1 problems on Sparc.
  230. * doc/cln.tex: Likewise.
  231. 1999-03-08 Bruno Haible <haible@clisp.cons.org>
  232. * autoconf/aclocal.m4 (CL_FPU_CONTROL): Fix the "checking for"
  233. messages.
  234. 1999-02-25 Bruno Haible <haible@clisp.cons.org>
  235. * autoconf/aclocal.m4: In test programs, declare `int main()', not
  236. `main()'.
  237. * lidia-interface/src/interfaces/integers/cln/bigint.c
  238. (bigint_to_string): Fix for negative arguments.
  239. * src/base/cl_low.h: Check for `__sparc__', not `SPARC'.
  240. * src/base/cl_alloca.h: Likewise.
  241. * src/base/cl_low.h: Eliminate CLISP style "# " comments.
  242. * src/base/digitseq/cl_asm_arm_.cc,
  243. src/base/digitseq/cl_asm_mips_.cc,
  244. src/float/dfloat/elem/cl_DF_mul.cc: Likewise.
  245. * src/modinteger/cl_MI_pow2.h,
  246. src/modinteger/cl_MI_pow2m1.h,
  247. src/modinteger/cl_MI_pow2p1.h: Workaround g++-2.7.2 inlining bug.
  248. 1999-01-18 Bruno Haible <haible@clisp.cons.org>
  249. * autoconf/acgeneral.m4,
  250. autoconf/acspecific.m4: Upgrade to autoconf-2.13.
  251. * autoconf/config.guess, autoconf/config.sub: Likewise.
  252. * autoconf/aclocal.m4 (CL_ALLOCA): Test for _MSC_VER and alloca being
  253. a macro. Use ${ac_objext}.
  254. * src/base/cl_macros.h (alloca): Put _MSC_VER test before the others,
  255. conforming with CL_ALLOCA.
  256. 1999-01-12 Bruno Haible <haible@clisp.cons.org>
  257. * Version 1.0 released.