/[cln]/ChangeLog
ViewVC logotype

Contents of /ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.28 - (show annotations)
Fri Nov 24 20:51:01 2000 UTC (12 years, 5 months ago) by kreckel
Branch: MAIN
Changes since 1.27: +5 -0 lines
        * */*: Removed problematic stdin, stdout and stderr definitions.
          Use std::cin, std::cout, std::cerr instead (obsoletes 2000-10-29).
        * Makefile.devel: Use bzip2.
        * Makefile.in: Target maintainer-clean remove cln-config cln-config.1.

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

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15