-
Notifications
You must be signed in to change notification settings - Fork 21
/
ChangeLog-2008
3395 lines (2179 loc) · 107 KB
/
ChangeLog-2008
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2008-08-25 Ludovic Courtès <[email protected]>
* configure.in (GCC_CFLAGS): New variable. Store GCC flags like
`-Werror' inside it so that they are not used when compiling
Gnulib modules.
2008-08-21 Ludovic Courtès <[email protected]>
* autogen.sh: Don't use `gnulib-tool', use the Gnulib files
available in the repository.
2008-08-07 Neil Jerram <[email protected]>
* configure.in (SCM_I_GSC_STACK_GROWS_UP): Remove use of
AC_CACHE_CHECK, which was inadvertently causing
SCM_I_GSC_STACK_GROWS_UP _always_ to be 0.
2008-07-17 Neil Jerram <[email protected]>
* configure.in: Update stack direction test to be like that in
Autoconf _AC_LIBOBJ_ALLOCA and Gnulib; specifically in involving a
function calling itself.
2008-07-16 Ludovic Courtès <[email protected]>
* configure.in: Look for `struct dirent64' and `readdir64_r ()',
not available on HP-UX 11.11.
2008-07-06 Ludovic Courtès <[email protected]>
* configure.in: Update to Autoconf 2.61.
2008-06-28 Ludovic Courtès <[email protected]>
* configure.in: Use Automake with `-Wall -Wno-override'.
2008-05-07 Ludovic Courtès <[email protected]>
Guile 1.8.5 released.
* GUILE-VERSION (LIBGUILE_INTERFACE_CURRENT): Increment due to
the addition of an inlined version of `scm getc ()' and friends.
(LIBGUILE_INTERFACE_AGE): Increment.
(LIBGUILE_INTERFACE_REVISION): Zeroed.
(LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION): Increment.
2008-05-04 Ludovic Courtès <[email protected]>
Add `pkg-config' support. Suggested by Aaron VanDevender, Greg
Troxel, and others.
* configure.in: Substitute `sitedir', produce `guile-1.8.pc'.
* Makefile.am (EXTRA_DIST): Add `guile-1.8.pc.in'.
(pkgconfigdir, pkgconfig_DATA): New.
2008-04-26 Ludovic Courtès <[email protected]>
* configure.in (BUILD_PTHREAD_SUPPORT): New Automake
conditional.
2008-04-26 Ludovic Courtès <[email protected]>
* Makefile.am (EXTRA_DIST): Remove `ANON-CVS' and `SNAPSHOTS'.
2008-02-23 Neil Jerram <[email protected]>
* FAQ: New file.
* Makefile.am (EXTRA_DIST): Add FAQ
2008-02-22 Ludovic Courtès <[email protected]>
* configure.in: Check whether `strncasecmp' is declared.
2008-02-16 Ludovic Courtès <[email protected]>
Guile 1.8.4 released.
* GUILE-VERSION (LIBGUILE_INTERFACE_REVISION): Increment.
(GUILE_MICRO_VERSION): Increment.
* configure.in (GUILE_CFLAGS): Include `$CPPFLAGS' since they
may include required `-I' flags (e.g., `-I/path/to/gmp'), so
that "guile-config compile" reports all the needed flags.
2008-02-15 Neil Jerram <[email protected]>
* autogen.sh: Copy versions of config.guess and config.sub from
Guile CVS to build-aux and guile-readline.
2008-02-14 Neil Jerram <[email protected]>
* HACKING: Note need for libtool >= 1.5.26.
* config.rpath, build-aux/config.rpath: Updated to latest upstream
version.
* config.guess, config.sub: 2008-01-07 versions added to Guile
CVS, to ensure that Guile developers are using new enough versions
(in particular for AIX 6.1 support).
2008-02-11 Neil Jerram <[email protected]>
* configure.in (--without-64-calls): Use AC_MSG_CHECKING and
AC_MSG_RESULT instead of just echo.
(GUILE_I): New programs to try using _Complex_I or 1.0fi for the
imaginary unit.
2008-02-06 Neil Jerram <[email protected]>
* configure.in: Default to --without-64-calls for
powerpc-ibm-aix*. Thanks to Rainer Tammer for reporting that the
64 calls are a problem on that OS.
2008-02-06 Ludovic Courtès <[email protected]>
* NEWS: Mention Sun Studio compilation fix.
2008-02-05 Neil Jerram <[email protected]>
* configure.in (--without-64-calls): New option.
2008-01-30 Neil Jerram <[email protected]>
* pre-inst-guile.in (dyld_prefix), pre-inst-guile-env.in
(dyld_prefix): Construct and export dyld_prefix in a similar way
to ltdl_prefix, to allow pre-install dynamic linking to work on
MacOS. Thanks to Roger Mc Murtrie for reporting this problem.
2008-01-22 Neil Jerram <[email protected]>
* LICENSE: Change COPYING.LIB to COPYING.LESSER.
* COPYING.LESSER: Renamed, previously COPYING.LIB.
* COPYING: Removed.
* libguile.h: Update copyright statement to LGPL.
2007-12-04 Ludovic Courtès <[email protected]>
* NEWS: Mention `accept' and `scm_c_{read,write}' bug fixes.
2007-12-03 Ludovic Courtès <[email protected]>
* NEWS: Add SRFI-69.
2007-10-24 Neil Jerram <[email protected]>
* .cvsignore: Add "lib".
* build-aux/.cvsignore: Add a load more generated files to ignore,
and commit to CVS.
2007-10-20 Ludovic Courtès <[email protected]>
* THANKS: Add Julian.
2007-10-20 Julian Graham <[email protected]>
* NEWS: Mention thread cancellation and cleanup API.
2007-10-17 Ludovic Courtès <[email protected]>
* NEWS: Mention reader bug-fix.
2007-10-16 Ludovic Courtès <[email protected]>
Guile 1.8.3 released.
* GUILE-VERSION (GUILE_MICRO_VERSION): Incremented.
(LIBGUILE_INTERFACE_REVISION): Incremented.
2007-10-10 Ludovic Courtès <[email protected]>
* configure.in (SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT):
New substituted variable.
Use `-Werror' when using GCC and checking for
`PTHREAD_ONCE_INIT'. Add check for braces around
`PTHREAD_MUTEX_INITIALIZER'.
* NEWS: Mention build fix for IRIX.
2007-10-02 Ludovic Courtès <[email protected]>
* NEWS: Mention `(ice-9 slib)' fix and threading fix.
2007-09-03 Ludovic Courtès <[email protected]>
* NEWS: Mention alignment-related bug fixes.
2007-09-03 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Move cexp and clog up into the main
funcs check block. Remove carg which is now unused.
2007-09-02 Ludovic Courtès <[email protected]>
* NEWS: Mention memory leak fix in `make-socket-address'.
2007-09-01 Ludovic Courtès <[email protected]>
* NEWS: Mention duplicate binding warnings to stderr.
2007-08-23 Ludovic Courtès <[email protected]>
* NEWS: Mention Solaris bug fixes.
2007-08-11 Ludovic Courtès <[email protected]>
* NEWS: Mention SRFI-35 and the new reader.
2007-08-08 Ludovic Courtès <[email protected]>
* NEWS: Mention changes to `record-accessor' and
`record-modifier'.
2007-07-29 Ludovic Courtès <[email protected]>
Added Gnulib support.
* autogen.sh: Run `gnulib-tool --update'.
* Makefile.am (SUBDIRS): Added `lib'.
(ACLOCAL_AMFLAGS): Added `-I m4'.
(EXTRA_DIST): Added `m4/ChangeLog'.
* NEWS: Comply with Automake's `check-news' option, i.e., have
the last "Changes in" line appear within the first 15 lines.
Mention use of Gnulib.
* configure.in: Use `build-aux' as `AC_CONFIG_AUX_DIR', and `m4'
as `AC_CONFIG_MACRO_DIR'. Use Automake's `gnu' and `check-news'
options.
Require Autoconf 2.59. Invoke `gl_EARLY' and `gl_INIT', don't
run `AC_AIX', `AC_ISC_POSIX' and `AC_MINIX' since they are
implied by `gl_EARLY'. Don't look for <strings.h> and
`strncasecmp'. Don't invoke `AC_FUNC_ALLOCA'. Produce
`lib/Makefile'.
2007-07-25 Ludovic Courtès <[email protected]>
* NEWS: Mention bug fix for "(set! 'x #f)".
2007-07-22 Ludovic Courtès <[email protected]>
* configure.in: Check for <strings.h> and `strncasecmp ()'.
2007-07-19 Ludovic Courtès <[email protected]>
* NEWS: Mention `(ice-9 i18n)' and lazy duplicate binding
resolution.
2007-07-18 Ludovic Courtès <[email protected]>
* NEWS: Mention SRFI-37.
2007-07-15 Ludovic Courtès <[email protected]>
Guile 1.8.2 released.
* NEWS: Mention HP-UX/IA64 build fixes.
* THANKS: Added people who reported bugs or sent patches since
1.8.1. Converted to UTF-8.
* README: Updated version number.
* Makefile.am (EXTRA_DIST): Removed `BUGS' (was outdated).
* ANON-CVS, HACKING, SNAPSHOTS: New, from the `workbook'
directory of the CVS repository.
* autogen.sh: Removed dependency on the `workbook' CVS
directory.
* GUILE-VERSION (GUILE_MICRO_VERSION): Set to 2.
(LIBGUILE_INTERFACE_CURRENT): Incremented due to new symbols.
(LIBGUILE_INTERFACE_REVISION): Set to 0.
(LIBGUILE_INTERFACE_AGE): Incremented.
(LIBGUILE_SRFI_SRFI_60_INTERFACE_REVISION): Incremented due to
bug fixes.
2007-07-11 Ludovic Courtès <[email protected]>
* NEWS: Mention GOOPS `method-more-specific?' bug fix.
2007-07-09 Ludovic Courtès <[email protected]>
* NEWS: Mention SRFI-19 `date->julian-day' bug fix.
2007-06-26 Ludovic Courtès <[email protected]>
* NEWS: Mention fixed memory leaks.
2007-06-12 Ludovic Courtès <[email protected]>
* NEWS: Mention `inet-ntop' bug fix.
2007-05-09 Ludovic Courtès <[email protected]>
* NEWS: Mention SRFI-19 `time-process' bug fix.
2007-04-17 Ludovic Courtès <[email protected]>
* configure.in (GUILE_FOR_BUILD): Reverted to `$(preinstguile)'
instead of `$(top_builddir_absolute)/$(preinstguile)'.
2007-04-09 Han-Wen Nienhuys <[email protected]>
* configure.in (HAVE_CRYPT): check for cexp, clog, carg
2007-02-24 Neil Jerram <[email protected]>
* autogen.sh: Announce versions of autoconf, automake, libtool and
m4.
* pre-inst-guile.in (subdirs_with_ltlibs): Add libguile.
2007-02-18 Neil Jerram <[email protected]>
* config.rpath (Module): New (from gettext package).
2007-01-31 Ludovic Courtès <[email protected]>
* configure.in: Look for `langinfo.h', `nl_types.h', `xlocale.h'
and `nl_langinfo'.
2007-01-28 Neil Jerram <[email protected]>
* INSTALL: New upstream version.
* ABOUT-NLS: New upstream version.
2007-01-23 Kevin Ryde <[email protected]>
* configure.in (isinf, isnan): Use a volatile global to stop gcc
optimizing out the test. In particular this fixes solaris where there
isn't an isinf or isnan (though gcc still optimizes as if there is).
Reported by Hugh Sasse.
(AC_C_VOLATILE): New.
2007-01-22 Han-Wen Nienhuys <[email protected]>
* .gitignore: new file. Make using git easier.
2007-01-22 Kevin Ryde <[email protected]>
* configure.in (AC_INIT): Don't use "echo -n", it's not portable and
in particular fails on solaris (resulting in literal "-n"s going into
the output, making the resulting configure unusable). Reported by
Hugh Sasse.
2007-01-03 Han-Wen Nienhuys <[email protected]>
* autogen.sh (Module): only try to run render-bugs if it exists.
2006-12-27 Kevin Ryde <[email protected]>
* configure.in (pthread_get_stackaddr_np, pthread_sigmask): New tests.
2006-12-24 Han-Wen Nienhuys <[email protected]>
* autogen.sh (mscripts): only execute render-bugs if it exists.
2006-12-23 Kevin Ryde <[email protected]>
* configure.in (-lm): No need to suppress libm on mingw, it's not
needed because it's empty, but including it does no harm.
(-lm): Look for "cos" instead of "main", since cos and friends are the
purpose of looking for libm.
(winsock etc): Test $host = *-*-mingw* rather than $MINGW32, autoconf
regards the latter as obsolete.
(AC_MINGW32): Remove test, $MINGW32 now unused.
(uint32_t): Look at HAVE_NETDB_H rather than hard-coding __MINGW32__
in the test program.
2006-12-15 Kevin Ryde <[email protected]>
* configure.in (process.h, pipe, _pipe): New checks.
2006-12-14 Kevin Ryde <[email protected]>
* configure.in (struct timespec, pthread.h): Look for struct timespec
in <pthread.h> as well as <time.h>, it's in pthread.h on mingw.
Reported by Nils Durner.
2006-12-03 Kevin Ryde <[email protected]>
* Makefile.am (AUTOMAKE_OPTIONS): Bump to automake 1.10 required, so
that config.rpath from gettext will go into the dist (and give an
error if not).
* configure.in (AM_PROG_CC_C_O): New macro, needed by automake 1.10
for per-target cflags in libguile/Makefile.am.
2006-11-18 Ludovic Courtès <[email protected]>
* GUILE-VERSION: Added `LIBGUILE_I18N_*'.
* configure.in: Look for `strcoll_l ()' and `newlocale ()'.
Substitute the `LIBGUILE_I18N_' variables.
* NEWS: Mention `(ice-9 i18n)'.
2006-11-17 Neil Jerram <[email protected]>
* README: Note need for subscription to [email protected].
* NEWS: Note need for subscription to [email protected].
2006-11-08 Ludovic Courtès <[email protected]>
* configure.in: Pass `[email protected]' as a third argument to
`AC_INIT'.
2006-10-25 Neil Jerram <[email protected]>
IA64 HP-UX patch from Hrvoje Nikšić. (Thanks!)
* configure.in: New check for uca lib (needed for IA64 on HP-UX).
2006-10-06 Rob Browning <[email protected]>
Guile 1.8.1 released.
* GUILE-VERSION (GUILE_MICRO_VERSION): Increment for release.
(LIBGUILE_INTERFACE_REVISION): Increment for release.
(LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION): Increment for release.
(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION): Increment for release.
(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION): Increment for release.
(LIBGUILE_SRFI_SRFI_60_INTERFACE_REVISION): Increment for release.
* Makefile.am (EXTRA_DIST): Add LICENSE.
2006-09-28 Kevin Ryde <[email protected]>
* configure.in (chsize, ftruncate, truncate): New tests, for mingw.
2006-09-27 Kevin Ryde <[email protected]>
* configure.in (clog10): New test, not in mingw.
2006-09-23 Kevin Ryde <[email protected]>
* configure.in (complex.h, complex double, csqrt): New tests.
2006-09-20 Ludovic Courtès <[email protected]>
* configure.in: Check for `isblank ()'.
* NEWS: Mentioned the interaction between `setlocale' and SRFI-14
standard char sets.
2006-08-22 Kevin Ryde <[email protected]>
* configure.in: Test if need braces around PTHREAD_ONCE_INIT, set
AC_OUTPUT of SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT.
2006-08-18 Neil Jerram <[email protected]>
* configure.in: Generate Makefile for emacs subdir.
* Makefile.am (SUBDIRS): Add emacs subdir.
* configure.in: Generate Makefile for ice-9/debugging subdir.
2006-07-25 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add pthread_getattr_np.
2006-07-24 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_DECLS): Add sethostname for Solaris 10.
(AC_CHECK_FUNCS): Remove dirfd, it's a macro.
Reported by Claes Wallin.
2006-06-25 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_MEMBERS): Test struct tm.tm_gmtoff.
2006-06-13 Ludovic Courtès <[email protected]>
* NEWS: Mentioned the new behavior of `equal?' for structures.
2006-06-06 Neil Jerram <[email protected]>
* acinclude.m4 (ACX_PTHREAD): Update to latest definition from
autoconf macro archive, to fix pthread linking problem on Solaris
10, reported by Charles Gagnon.
2006-05-28 Kevin Ryde <[email protected]>
* configure.in (isnan): Remove "#ifdef __MINGW32__, #define isnan
_isnan". Mingw provides isnan as a macro (in math.h), the test
already detects it just fine with no special case.
2006-05-26 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add ioctl.
(pthread_attr_getstack): Restrict test to pthreads case, to avoid
AC_TRY_RUN when cross-compiling --without-threads.
2006-05-20 Kevin Ryde <[email protected]>
* configure.in (S_ISLNK): Remove test, leave it to #ifdef in the .c
files.
2006-05-16 Kevin Ryde <[email protected]>
* configure.in (struct stat st_blocks): Change AC_STRUCT_ST_BLOCKS to
a plain AC_CHECK_MEMBERS, we don't want AC_LIBOBJ(fileblocks) which
the former gives. Remove the commented-out code that was to have
munged fileblocks out of LIBOBJS. This fixes mingw, where the lack of
st_blocks and absense of the fileblocks.c replacement caused build
failure. Reported by "The Senator".
(struct stat st_rdev, st_blksize): Combine into a single
AC_CHECK_MEMBERS.
2006-04-18 Rob Browning <[email protected]>
* configure.in: Add AC_CONFIG_AUX_DIR([.]) as suggested in the
autotools documentation.
2006-04-16 Kevin Ryde <[email protected]>
* configure.in (stat64, off_t): New tests.
2006-03-31 Kevin Ryde <[email protected]>
* configure.in (socklen_t): Enhance test for this type, coping with
need for <sys/socket.h> on MacOS X. Reported by Michael Tuexen and
Jay Cotton.
2006-03-26 Marius Vollmer <[email protected]>
* configure.in: Added check that defines
PTHREAD_ATTR_GETSTACK_WORKS when pthread_attr_getstack works for
the main thread.
2006-02-26 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add dirfd.
2006-02-20 Marius Vollmer <[email protected]>
Released 1.8.0.
* GUILE-VERSION: Set version.
* GUILE-VERSION: Bumped versions for 1.9 series.
2006-02-06 Marius Vollmer <[email protected]>
Branched for 1.8 series.
* GUILE-VERSION: Bumped version numbers.
* configure.in: Removed --enable-arrays option.
2005-12-14 Neil Jerram <[email protected]>
* NEWS: Remove entry claiming that breakpoints have been added,
because breakpoints are now implemented outside the core distro.
Add entries on obsolescence of the 'cheap option and on tweaking
support in evaluator trap calls. Finally, correct outline level
of item about make-keyword-from-dash-symbol.
2005-07-09 Neil Jerram <[email protected]>
* configure.in (AC_CONFIG_FILES): Removed emacs/Makefile and
ice-9/debugger/breakpoints/Makefile.
* Makefile.am (SUBDIRS): Removed emacs.
2005-06-05 Marius Vollmer <[email protected]>
From Jan Nieuwenhuizen <[email protected]>. Thanks!
* configure.in: Add tests for socklen_t and ip_mreq.
2005-03-13 Kevin Ryde <[email protected]>
* configure.in, GUILE-VERSION (LIBGUILE_SRFI_SRFI_60): New defines.
2005-03-09 Marius Vollmer <[email protected]>
Guile 1.7.2 has been released.
* GUILE-VERSION (GUILE_MICRO_VERSION): Incremented to "2".
2005-03-08 Marius Vollmer <[email protected]>
libltdl is no longer distributed. We expect it to be installed
already.
* configure.in: Do not call AC_LIBLTDL_INSTALLABLE. Use
AC_CHECK_LIB instead. Do not subst LTDLINCL and LIBLTDL. Do not
add "-DLIBLTDL_DLL_IMPORT" on MINGW32.
* Makefile.am (SUBDIRS): Removed libltdl.
* README: Talk about required external packages.
* autogen.sh: Do not call libtoolize.
2005-03-02 Marius Vollmer <[email protected]>
* configure.in: Do not check for fast or recursive mutexes. Check
for pthread_attr_getstack.
(SCM_I_GSC_USE_COOP_THREADS): Dot not subst.
(pthread_mutexattr_settype): Do not check for it.
2005-02-28 Marius Vollmer <[email protected]>
* autogen.sh: Add '--verbose' option to autoreconf invocation.
Thanks to Bruno Haible.
2005-01-02 Marius Vollmer <[email protected]>
* configure.in (SCM_I_GSC_HAVE_ARRAYS): Removed '--disable-arrays'
option.
2004-11-28 Kevin Ryde <[email protected]>
* configure.in (AC_SUBST): Correction, LTDLINC should be LTDLINCL, the
latter is what libtool defines.
2004-10-27 Marius Vollmer <[email protected]>
* libguile.h: Include "libguile/srfi-4.h".
2004-10-25 Marius Vollmer <[email protected]>
* autogen.sh: Added explicit invocation of libtoolize before
autoreconf so that libltdl/ is updated as well.
2004-10-22 Marius Vollmer <[email protected]>
Removed usage of libguile-ltdl.
* configure.in: Call AC_LIBLTDL_INSTALLABLE instead of
AC_LIB_LTDL.
(AC_CONFIG_SUBDIRS): Added libltdl.
(DLPREOPEN, LTDLINC, LIBLTDL): Moved AC_SUBST near other libtool
stuff. Also subst LTDLINC instead of INCLTDL.
(AC_CONFIG_FILES): Removed libguile-ltdl/Makefile and
libguile-ltdl/upstream/Makefile.
* Makefile.am (SUBDIRS): Replaced libguile-ltdl with libltdl.
2004-09-28 Marius Vollmer <[email protected]>
* ABOUT-NLS: New, from gettext 0.14.1.
* configure.in: Do use AM_GNU_GETTEXT, since gettextize is not run
with autoconf 2.59.
2004-09-25 Marius Vollmer <[email protected]>
* configure.in: Do not use AM_GNU_GETTEXT for now, it causes
gettextize to run during autogen.sh, which we do not want.
Explicitely check for libintl, gettext, bindtextdomain, and
textdomain instead.
2004-09-24 Marius Vollmer <[email protected]>
* libguile.h: Include <gmp.h> outside of extern "C" block.
(Note that numbers.h still includes gmp.h to make it
self-contained.)
* configure.in: Do not include PTHREAD_CFLAGS in CFLAGS, CFLAGS is
for the user and is often overwritten temporarily.
(GUILE_CFLAGS): New, include PTHREAD_CFLAGS here.
(GUILE_LIBS): Remove THREAD_LIBS_INSTALLED, which is unused now.
2004-09-22 Marius Vollmer <[email protected]>
* configure.in: Add AM_GNU_GETTEXT invocation. From Bruno Haible.
2004-09-21 Marius Vollmer <[email protected]>
* acinclude.m4 (ACX_PTHREAD): New.
* configure.in: Use it instead of simply looking for -lpthread.
Thanks to Andreas Vögele!
2004-09-08 Marius Vollmer <[email protected]>
* configure.in: Fail when alloca can not be found natively.
2004-09-03 Stefan Jahn <[email protected]>
* configure.in (isinf): Let configure find the isinf() function
on MinGW32 systems.
2004-08-27 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_MEMBERS): Add struct sockaddr.sin_len and
struct sockaddr_in6.sin6_len. Reported by Michael Tuexen.
2004-08-27 Marius Vollmer <[email protected]>
Guile 1.7.1 as been released.
2004-08-26 Marius Vollmer <[email protected]>
* GUILE-VERSION: Bumped all versions for the 1.7.1 release. Added
LIBGUILE_*_MAJOR variables for inclusion in the names of shared
libraries such as "libguile-srfi-srfi-1-v-MAJOR.la". Removed
LIBQTHREADS_*.
* configure.in: Updated for the new set of variables defined in
GUILE-VERSION.
2004-08-25 Marius Vollmer <[email protected]>
* libguile.h: Include srfi-13.h and srfi-14.h, do not include
strop.h.
2004-08-02 Marius Vollmer <[email protected]>
* README: Document the new --disable-discouraged option.
* configure.in (SCM_I_GSC_ENABLE_DISCOURAGED): New, for the new
--enable-discouraged option.
* libguile.h: Include libguile/discouraged.h.
2004-07-29 Marius Vollmer <[email protected]>
* configure.in: Bugfix: logic in detecting ptrdiff_t was inverted;
assume ptrdiff_t is available when its size is non-zero, not when
it is zero. Do no longer define SCM_I_GSC_*_LIMITS macros. Check
for sizes of size_t and intmax_t.
2004-07-09 Marius Vollmer <[email protected]>
* configure.in: Bugfix: set SCM_I_GSC_T_UINTMAX, not
SCM_I_GSC_T_INTMAX in two places. Thanks to Andreas Vögele!
2004-07-07 Marius Vollmer <[email protected]>
* configure.in: When checking for suitable types for scm_t_int8,
etc, try int8_t first, so that we pick them up when they are
defined. Also, substitute limit macros like INT8_MIN into the
configure header for all these types.
2004-07-05 Kevin Ryde <[email protected]>
* configure.in (isinf, isnan): Detect macro versions as well as
functions, since C99 specifies them as macros and that's all HP-UX
has. Reported by Andreas Voegele.
2004-06-28 Marius Vollmer <[email protected]>
* configure.in: Removed code for --enable-htmldoc; support for
HTML is now included in automake.
2004-06-16 Rob Browning <[email protected]>
* pre-inst-guile.in: modify to handle move of readline.scm to
ice-9 subdir of guile-readline.
* pre-inst-guile-env.in: modify to handle move of readline.scm to
ice-9 subdir of guile-readline.
* configure.in: move package and version args to AC_INIT as is now
recommended. This also requires m4_esyscmd to read GUILE-VERSION
given the way AC_INIT handles its args.
2004-04-22 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_HEADERS): Add fenv.h.
(AC_CHECK_FUNCS): Add fesetround.
2004-04-18 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add readdir_r.
2004-03-23 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add sysconf.
(AC_CHECK_HEADERS): Add netdb.h and sys/param.h.
2004-03-21 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add gmtime_r.
2004-03-14 Kevin Ryde <[email protected]>
* configure.in (strptime): Use #define _GNU_SOURCE to get the
prototype from glibc, use AC_CHECK_DECLS rather than AC_EGREP_HEADER.
2004-02-29 Kevin Ryde <[email protected]>
* configure.in: Use AC_COPYRIGHT and AH_TOP to get copyright notice
into generated configure and config.h.in.
* configure.in (AC_CHECK_FUNCS): Add DINFINITY and DQNAN.
2004-02-21 Kevin Ryde <[email protected]>
* configure.in (crypt): Test with AC_SEARCH_LIBS, for the benefit of
HP-UX. Define HAVE_CRYPT rather than HAVE_LIBCRYPT. Reported by
Andreas Voegele.
2004-02-18 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_HEADERS): Add crt_externs.h.
(AC_CHECK_FUNCS): Add _NSGetEnviron.
2004-02-15 Mikael Djurfeldt <[email protected]>
* configure.in: Use AC_PROG_LIBTOOL instead of AM_PROG_LIBTOOL.
2004-01-25 Neil Jerram <[email protected]>
* configure.in (GUILE_FUNC_DECLARED), acinclude.m4
(GUILE_STRUCT_UTIMBUF, GUILE_NAMED_CHECK_FUNC): Correctly quote
macros being defined.
2003-12-26 Marius Vollmer <[email protected]>
* configure.in: Find a suitable type for the new scm_t_intmax and
scm_t_uintmax.
2003-11-17 Rob Browning <[email protected]>
* configure.in: rewrite ALLOCA related code as multiple lines so
it doesn't break with current autoconf substitutions.
2003-11-15 Kevin Ryde <[email protected]>
* configure.in (--with-guile-for-build): Remove this option, it's not
normal style for --with.
(GUILE_FOR_BUILD): Use AC_ARG_VAR.
* README (Cross building Guile): Describe GUILE_FOR_BUILD rather than
--with-guile-for-build.
2003-11-11 Neil Jerram <[email protected]>
* .cvsignore: Add elisp-comp.
2003-10-30 Neil Jerram <[email protected]>
* configure.in (AC_CONFIG_FILES): Add `emacs/Makefile'.
(AM_PATH_LISPDIR): Added.
* Makefile.am (SUBDIRS): Add `emacs'.
2003-07-27 Marius Vollmer <[email protected]>
* configure.in: Look for sched_yield in -lrt; this is needed for
Solaris. Thanks to Matthias Koeppe!
(setgroups): Check for it.
* configure.in (__libc_stack_end): Actually use the value in
__libc_stack_end for something so that the access doesn't get
optimized away. Thanks to Matthias Koeppe!
2003-07-08 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add sincos.
2003-06-21 Kevin Ryde <[email protected]>
* configure.in (AC_CHECK_FUNCS): Add asinh, acosh, atanh and trunc.
2003-06-19 Marius Vollmer <[email protected]>
* configure.in: use "-Werror" only with GCC. Thanks to Matthias
Koeppe!
2003-06-19 Kevin Ryde <[email protected]>
* README (Guile Documentation): Update to manuals now available,
remove notes about the reference manual being in progress.
2003-06-14 Stefan Jahn <[email protected]>
* configure.in: Checking for __int64 as possible candidate for
the SCM_I_GSC_T_INT64 define.
2003-05-30 Stefan Jahn <[email protected]>
* configure.in: Checking for unsetenv().
2003-05-29 Stefan Jahn <[email protected]>
* configure.in: Removed -lm check and added a cached check for
__libc_stack_end to get it building for mingw32 hosts.
2003-05-19 Kevin Ryde <[email protected]>
* README (Cross building Guile): Remove --with-cc-for-build in favour
of CC_FOR_BUILD.
2003-05-16 Kevin Ryde <[email protected]>
* configure.in (--with-cc-for-build): Remove this option, CC_FOR_BUILD
variable is more or less standard, and is adequate for the task.
2003-05-12 Kevin Ryde <[email protected]>
* configure.in (CC_FOR_BUILD): Use AC_ARG_VAR.
* configure.in (SCM_SINGLES): Use AC_CHECK_SIZEOF(float), to
eliminate guess-yes when cross compiling.
* configure.in (SCM_I_GSC_STACK_GROWS_UP): Fix missing comma in
AC_TRY_RUN.
2003-04-20 Dirk Herrmann <[email protected]>
* libguile.h: Removed uses of DEBUG_EXTENSIONS to fix compile
errors with --disable-deprecated.
2003-04-07 Rob Browning <[email protected]>
* pre-inst-guile-env.in: new script -- can be used to run commands
in an envt set up using the development libs, Guile, etc.
* configure.in: handle pre-inst-guile-env and add
test-suite/standalone/Makefile.
2003-04-06 Marius Vollmer <[email protected]>
* configure.in: Check for mpz_import, which is required but only
available in GMP 4.1.
2003-04-05 Marius Vollmer <[email protected]>
* Changed license terms to the plain LGPL thru-out.
2003-04-04 Rob Browning <[email protected]>
* configure.in: add GMP test (require GMP).
2003-03-26 Marius Vollmer <[email protected]>
* libguile.h: Include "libguile/deprecated.h".
2003-03-25 Rob Browning <[email protected]>
* configure.in: big overhaul to shift us to have separate private,
config.h, and public, scmconfig.h, configuration headers. Added a
fair amount of code to track down new required types: scm_t_uint8,
scm_t_uint16, scm_t_uint32, scm_t_int8, scm_t_int16, scm_t_int32,
and to detect optional types scm_t_uint64, scm_t_in64, long long,
unsigned long long, scm_t_ptrdiff, intptr_t, and uintptr_t.
(SCM_I_GSC_T_PTRDIFF): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_NEEDS_INTTYPES_H): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_NEEDS_STDINT_H): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_UINT8): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_UINT16): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_UINT32): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_UINT64): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_INT8): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_INT16): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_INT32): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_T_INT64): gen-scmconfig.h.in AC_SUBST var.
(USE_PTHREAD_THREADS): removed - handled by gen-scmconfig.c.
(USE_NULL_THREADS): removed - handled by gen-scmconfig.c.
(USE_COOP_THREADS): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_USE_PTHREAD_THREADS): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_USE_NULL_THREADS): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_USE_COOP_THREADS): gen-scmconfig.h.in AC_SUBST var.
(STACK_GROWS_UP): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_STACK_GROWS_UP): gen-scmconfig.h.in AC_SUBST var.
(GUILE_DEBUG_FREELIST): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_GUILE_DEBUG_FREELIST): gen-scmconfig.h.in AC_SUBST var.
(GUILE_DEBUG): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_GUILE_DEBUG): gen-scmconfig.h.in AC_SUBST var.
(SCM_ENABLE_DEPRECATED): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_ENABLE_DEPRECATED): gen-scmconfig.h.in AC_SUBST var.
(HAVE_ARRAYS): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_HAVE_ARRAYS): gen-scmconfig.h.in AC_SUBST var.
(SCM_ENABLE_ELISP): removed - handled by gen-scmconfig.c.
(SCM_I_GSC_ENABLE_ELISP): gen-scmconfig.h.in AC_SUBST var.
(SCM_I_GSC_C_INLINE): gen-scmconfig.h.in AC_SUBST var.
(DEBUG_EXTENSIONS): removed - handled by gen-scmconfig.c.
(READER_EXTENSIONS): removed - handled by gen-scmconfig.c.
(USE_THREADS): removed - handled by gen-scmconfig.c.
(GUILE_ISELECT): removed - handled by gen-scmconfig.c.
(DYNAMIC_LINKING): removed - handled by gen-scmconfig.c.
* README: merge information from INSTALL and remove at least some
of the stale bits.
* LICENSE: new file -- we should change this to the LGPL soon and
add COPYING.LIB to the distribution.
* autogen.sh: call autoreconf with --force. This may fix the
"order" problem below without having to have two calls.
* INSTALL: use the automake installed INSTALL file. The Guile
specific instructions are now in README.
2003-03-21 Marius Vollmer <[email protected]>
* autogen.sh: Invoke autoreconf twice since the required files do
not seem to be generated in the right order. XXX - investigate