*** empty log message ***
[bpt/guile.git] / ChangeLog
1 2004-09-28 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2
3 * configure.in: Do use AM_GNU_GETTEXT, since gettextize is not run
4 with autoconf 2.59.
5
6 2004-09-25 Marius Vollmer <mvo@zagadka.de>
7
8 * configure.in: Do not use AM_GNU_GETTEXT for now, it causes
9 gettextize to run during autogen.sh, which we do not want.
10 Explicitely check for libintl, gettext, bindtextdomain, and
11 textdomain instead.
12
13 2004-09-24 Marius Vollmer <mvo@zagadka.de>
14
15 * libguile.h: Include <gmp.h> outside of extern "C" block.
16 (Note that numbers.h still includes gmp.h to make it
17 self-contained.)
18
19 * configure.in: Do not include PTHREAD_CFLAGS in CFLAGS, CFLAGS is
20 for the user and is often overwritten temporarily.
21 (GUILE_CFLAGS): New, include PTHREAD_CFLAGS here.
22 (GUILE_LIBS): Remove THREAD_LIBS_INSTALLED, which is unused now.
23
24 2004-09-22 Marius Vollmer <mvo@zagadka.de>
25
26 * configure.in: Add AM_GNU_GETTEXT invocation. From Bruno Haible.
27
28 2004-09-21 Marius Vollmer <mvo@zagadka.de>
29
30 * acinclude.m4 (ACX_PTHREAD): New.
31 * configure.in: Use it instead of simply looking for -lpthread.
32 Thanks to Andreas Vögele!
33
34 2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
35
36 * configure.in: Fail when alloca can not be found natively.
37
38 2004-09-03 Stefan Jahn <stefan@lkcc.org>
39
40 * configure.in (isinf): Let configure find the isinf() function
41 on MinGW32 systems.
42
43 2004-08-27 Kevin Ryde <user42@zip.com.au>
44
45 * configure.in (AC_CHECK_MEMBERS): Add struct sockaddr.sin_len and
46 struct sockaddr_in6.sin6_len. Reported by Michael Tuexen.
47
48 2004-08-27 Marius Vollmer <mvo@zagadka.de>
49
50 Guile 1.7.1 as been released.
51
52 2004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
53
54 * GUILE-VERSION: Bumped all versions for the 1.7.1 release. Added
55 LIBGUILE_*_MAJOR variables for inclusion in the names of shared
56 libraries such as "libguile-srfi-srfi-1-v-MAJOR.la". Removed
57 LIBQTHREADS_*.
58 * configure.in: Updated for the new set of variables defined in
59 GUILE-VERSION.
60
61 2004-08-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
62
63 * libguile.h: Include srfi-13.h and srfi-14.h, do not include
64 strop.h.
65
66 2004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
67
68 * README: Document the new --disable-discouraged option.
69
70 * configure.in (SCM_I_GSC_ENABLE_DISCOURAGED): New, for the new
71 --enable-discouraged option.
72
73 * libguile.h: Include libguile/discouraged.h.
74
75 2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
76
77 * configure.in: Bugfix: logic in detecting ptrdiff_t was inverted;
78 assume ptrdiff_t is available when its size is non-zero, not when
79 it is zero. Do no longer define SCM_I_GSC_*_LIMITS macros. Check
80 for sizes of size_t and intmax_t.
81
82 2004-07-09 Marius Vollmer <mvo@zagadka.de>
83
84 * configure.in: Bugfix: set SCM_I_GSC_T_UINTMAX, not
85 SCM_I_GSC_T_INTMAX in two places. Thanks to Andreas Vögele!
86
87 2004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
88
89 * configure.in: When checking for suitable types for scm_t_int8,
90 etc, try int8_t first, so that we pick them up when they are
91 defined. Also, substitute limit macros like INT8_MIN into the
92 configure header for all these types.
93
94 2004-07-05 Kevin Ryde <user42@zip.com.au>
95
96 * configure.in (isinf, isnan): Detect macro versions as well as
97 functions, since C99 specifies them as macros and that's all HP-UX
98 has. Reported by Andreas Voegele.
99
100 2004-06-28 Marius Vollmer <marius.vollmer@uni-dortmund.de>
101
102 * configure.in: Removed code for --enable-htmldoc; support for
103 HTML is now included in automake.
104
105 2004-06-16 Rob Browning <rlb@defaultvalue.org>
106
107 * pre-inst-guile.in: modify to handle move of readline.scm to
108 ice-9 subdir of guile-readline.
109
110 * pre-inst-guile-env.in: modify to handle move of readline.scm to
111 ice-9 subdir of guile-readline.
112
113 * configure.in: move package and version args to AC_INIT as is now
114 recommended. This also requires m4_esyscmd to read GUILE-VERSION
115 given the way AC_INIT handles its args.
116
117 2004-04-22 Kevin Ryde <user42@zip.com.au>
118
119 * configure.in (AC_CHECK_HEADERS): Add fenv.h.
120 (AC_CHECK_FUNCS): Add fesetround.
121
122 2004-04-18 Kevin Ryde <user42@zip.com.au>
123
124 * configure.in (AC_CHECK_FUNCS): Add readdir_r.
125
126 2004-03-23 Kevin Ryde <user42@zip.com.au>
127
128 * configure.in (AC_CHECK_FUNCS): Add sysconf.
129 (AC_CHECK_HEADERS): Add netdb.h and sys/param.h.
130
131 2004-03-21 Kevin Ryde <user42@zip.com.au>
132
133 * configure.in (AC_CHECK_FUNCS): Add gmtime_r.
134
135 2004-03-14 Kevin Ryde <user42@zip.com.au>
136
137 * configure.in (strptime): Use #define _GNU_SOURCE to get the
138 prototype from glibc, use AC_CHECK_DECLS rather than AC_EGREP_HEADER.
139
140 2004-02-29 Kevin Ryde <user42@zip.com.au>
141
142 * configure.in: Use AC_COPYRIGHT and AH_TOP to get copyright notice
143 into generated configure and config.h.in.
144
145 * configure.in (AC_CHECK_FUNCS): Add DINFINITY and DQNAN.
146
147 2004-02-21 Kevin Ryde <user42@zip.com.au>
148
149 * configure.in (crypt): Test with AC_SEARCH_LIBS, for the benefit of
150 HP-UX. Define HAVE_CRYPT rather than HAVE_LIBCRYPT. Reported by
151 Andreas Voegele.
152
153 2004-02-18 Kevin Ryde <user42@zip.com.au>
154
155 * configure.in (AC_CHECK_HEADERS): Add crt_externs.h.
156 (AC_CHECK_FUNCS): Add _NSGetEnviron.
157
158 2004-02-15 Mikael Djurfeldt <mdj@chunk.mit.edu>
159
160 * configure.in: Use AC_PROG_LIBTOOL instead of AM_PROG_LIBTOOL.
161
162 2004-01-25 Neil Jerram <neil@ossau.uklinux.net>
163
164 * configure.in (GUILE_FUNC_DECLARED), acinclude.m4
165 (GUILE_STRUCT_UTIMBUF, GUILE_NAMED_CHECK_FUNC): Correctly quote
166 macros being defined.
167
168 2003-12-26 Marius Vollmer <mvo@zagadka.de>
169
170 * configure.in: Find a suitable type for the new scm_t_intmax and
171 scm_t_uintmax.
172
173 2003-11-17 Rob Browning <rlb@defaultvalue.org>
174
175 * configure.in: rewrite ALLOCA related code as multiple lines so
176 it doesn't break with current autoconf substitutions.
177
178 2003-11-15 Kevin Ryde <user42@zip.com.au>
179
180 * configure.in (--with-guile-for-build): Remove this option, it's not
181 normal style for --with.
182 (GUILE_FOR_BUILD): Use AC_ARG_VAR.
183 * README (Cross building Guile): Describe GUILE_FOR_BUILD rather than
184 --with-guile-for-build.
185
186 2003-11-11 Neil Jerram <neil@ossau.uklinux.net>
187
188 * .cvsignore: Add elisp-comp.
189
190 2003-10-30 Neil Jerram <neil@ossau.uklinux.net>
191
192 * configure.in (AC_CONFIG_FILES): Add `emacs/Makefile'.
193 (AM_PATH_LISPDIR): Added.
194
195 * Makefile.am (SUBDIRS): Add `emacs'.
196
197 2003-07-27 Marius Vollmer <mvo@zagadka.de>
198
199 * configure.in: Look for sched_yield in -lrt; this is needed for
200 Solaris. Thanks to Matthias Koeppe!
201 (setgroups): Check for it.
202
203 * configure.in (__libc_stack_end): Actually use the value in
204 __libc_stack_end for something so that the access doesn't get
205 optimized away. Thanks to Matthias Koeppe!
206
207 2003-07-08 Kevin Ryde <user42@zip.com.au>
208
209 * configure.in (AC_CHECK_FUNCS): Add sincos.
210
211 2003-06-21 Kevin Ryde <user42@zip.com.au>
212
213 * configure.in (AC_CHECK_FUNCS): Add asinh, acosh, atanh and trunc.
214
215 2003-06-19 Marius Vollmer <mvo@zagadka.de>
216
217 * configure.in: use "-Werror" only with GCC. Thanks to Matthias
218 Koeppe!
219
220 2003-06-19 Kevin Ryde <user42@zip.com.au>
221
222 * README (Guile Documentation): Update to manuals now available,
223 remove notes about the reference manual being in progress.
224
225 2003-06-14 Stefan Jahn <stefan@lkcc.org>
226
227 * configure.in: Checking for __int64 as possible candidate for
228 the SCM_I_GSC_T_INT64 define.
229
230 2003-05-30 Stefan Jahn <stefan@lkcc.org>
231
232 * configure.in: Checking for unsetenv().
233
234 2003-05-29 Stefan Jahn <stefan@lkcc.org>
235
236 * configure.in: Removed -lm check and added a cached check for
237 __libc_stack_end to get it building for mingw32 hosts.
238
239 2003-05-19 Kevin Ryde <user42@zip.com.au>
240
241 * README (Cross building Guile): Remove --with-cc-for-build in favour
242 of CC_FOR_BUILD.
243
244 2003-05-16 Kevin Ryde <user42@zip.com.au>
245
246 * configure.in (--with-cc-for-build): Remove this option, CC_FOR_BUILD
247 variable is more or less standard, and is adequate for the task.
248
249 2003-05-12 Kevin Ryde <user42@zip.com.au>
250
251 * configure.in (CC_FOR_BUILD): Use AC_ARG_VAR.
252
253 * configure.in (SCM_SINGLES): Use AC_CHECK_SIZEOF(float), to
254 eliminate guess-yes when cross compiling.
255
256 * configure.in (SCM_I_GSC_STACK_GROWS_UP): Fix missing comma in
257 AC_TRY_RUN.
258
259 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
260
261 * libguile.h: Removed uses of DEBUG_EXTENSIONS to fix compile
262 errors with --disable-deprecated.
263
264 2003-04-07 Rob Browning <rlb@defaultvalue.org>
265
266 * pre-inst-guile-env.in: new script -- can be used to run commands
267 in an envt set up using the development libs, Guile, etc.
268
269 * configure.in: handle pre-inst-guile-env and add
270 test-suite/standalone/Makefile.
271
272 2003-04-06 Marius Vollmer <mvo@zagadka.de>
273
274 * configure.in: Check for mpz_import, which is required but only
275 available in GMP 4.1.
276
277 2003-04-05 Marius Vollmer <mvo@zagadka.de>
278
279 * Changed license terms to the plain LGPL thru-out.
280
281 2003-04-04 Rob Browning <rlb@defaultvalue.org>
282
283 * configure.in: add GMP test (require GMP).
284
285 2003-03-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
286
287 * libguile.h: Include "libguile/deprecated.h".
288
289 2003-03-25 Rob Browning <rlb@defaultvalue.org>
290
291 * configure.in: big overhaul to shift us to have separate private,
292 config.h, and public, scmconfig.h, configuration headers. Added a
293 fair amount of code to track down new required types: scm_t_uint8,
294 scm_t_uint16, scm_t_uint32, scm_t_int8, scm_t_int16, scm_t_int32,
295 and to detect optional types scm_t_uint64, scm_t_in64, long long,
296 unsigned long long, scm_t_ptrdiff, intptr_t, and uintptr_t.
297 (SCM_I_GSC_T_PTRDIFF): gen-scmconfig.h.in AC_SUBST var.
298 (SCM_I_GSC_NEEDS_INTTYPES_H): gen-scmconfig.h.in AC_SUBST var.
299 (SCM_I_GSC_NEEDS_STDINT_H): gen-scmconfig.h.in AC_SUBST var.
300 (SCM_I_GSC_T_UINT8): gen-scmconfig.h.in AC_SUBST var.
301 (SCM_I_GSC_T_UINT16): gen-scmconfig.h.in AC_SUBST var.
302 (SCM_I_GSC_T_UINT32): gen-scmconfig.h.in AC_SUBST var.
303 (SCM_I_GSC_T_UINT64): gen-scmconfig.h.in AC_SUBST var.
304 (SCM_I_GSC_T_INT8): gen-scmconfig.h.in AC_SUBST var.
305 (SCM_I_GSC_T_INT16): gen-scmconfig.h.in AC_SUBST var.
306 (SCM_I_GSC_T_INT32): gen-scmconfig.h.in AC_SUBST var.
307 (SCM_I_GSC_T_INT64): gen-scmconfig.h.in AC_SUBST var.
308 (USE_PTHREAD_THREADS): removed - handled by gen-scmconfig.c.
309 (USE_NULL_THREADS): removed - handled by gen-scmconfig.c.
310 (USE_COOP_THREADS): removed - handled by gen-scmconfig.c.
311 (SCM_I_GSC_USE_PTHREAD_THREADS): gen-scmconfig.h.in AC_SUBST var.
312 (SCM_I_GSC_USE_NULL_THREADS): gen-scmconfig.h.in AC_SUBST var.
313 (SCM_I_GSC_USE_COOP_THREADS): gen-scmconfig.h.in AC_SUBST var.
314 (STACK_GROWS_UP): removed - handled by gen-scmconfig.c.
315 (SCM_I_GSC_STACK_GROWS_UP): gen-scmconfig.h.in AC_SUBST var.
316 (GUILE_DEBUG_FREELIST): removed - handled by gen-scmconfig.c.
317 (SCM_I_GSC_GUILE_DEBUG_FREELIST): gen-scmconfig.h.in AC_SUBST var.
318 (GUILE_DEBUG): removed - handled by gen-scmconfig.c.
319 (SCM_I_GSC_GUILE_DEBUG): gen-scmconfig.h.in AC_SUBST var.
320 (SCM_ENABLE_DEPRECATED): removed - handled by gen-scmconfig.c.
321 (SCM_I_GSC_ENABLE_DEPRECATED): gen-scmconfig.h.in AC_SUBST var.
322 (HAVE_ARRAYS): removed - handled by gen-scmconfig.c.
323 (SCM_I_GSC_HAVE_ARRAYS): gen-scmconfig.h.in AC_SUBST var.
324 (SCM_ENABLE_ELISP): removed - handled by gen-scmconfig.c.
325 (SCM_I_GSC_ENABLE_ELISP): gen-scmconfig.h.in AC_SUBST var.
326 (SCM_I_GSC_C_INLINE): gen-scmconfig.h.in AC_SUBST var.
327 (DEBUG_EXTENSIONS): removed - handled by gen-scmconfig.c.
328 (READER_EXTENSIONS): removed - handled by gen-scmconfig.c.
329 (USE_THREADS): removed - handled by gen-scmconfig.c.
330 (GUILE_ISELECT): removed - handled by gen-scmconfig.c.
331 (DYNAMIC_LINKING): removed - handled by gen-scmconfig.c.
332
333 * README: merge information from INSTALL and remove at least some
334 of the stale bits.
335
336 * LICENSE: new file -- we should change this to the LGPL soon and
337 add COPYING.LIB to the distribution.
338
339 * autogen.sh: call autoreconf with --force. This may fix the
340 "order" problem below without having to have two calls.
341
342 * INSTALL: use the automake installed INSTALL file. The Guile
343 specific instructions are now in README.
344
345 2003-03-21 Marius Vollmer <marius.vollmer@uni-dortmund.de>
346
347 * autogen.sh: Invoke autoreconf twice since the required files do
348 not seem to be generated in the right order. XXX - investigate
349 further.
350
351 2003-03-19 Marius Vollmer <mvo@zagadka.de>
352
353 * guile-tools.in (guileversion): Use $GUILE_EFFECTIVE_VERSION
354 instead of $GUILE_VERSION. Thanks to Kevin Ryde!
355
356 2003-02-27 Rob Browning <rlb@defaultvalue.org>
357
358 * configure.in (AC_CONFIG_SRCDIR): use GUILE-VERSION.
359 (AM_CONFIG_HEADER): change to config.h
360
361 * Makefile.am (EXTRA_DIST): remove $(ACLOCAL).
362 (ACLOCAL_AMFLAGS): replaces ACLOCAL.
363
364 * autogen.sh: switch to autoreconf -- see how it goes. remove
365 call to guile-aclocal.sh -- we now do the same thing with an
366 automake setting.
367
368 * guile-aclocal.sh: deleted in favor of ACLOCAL_AMFLAGS in
369 Makefile.am.
370
371 2003-02-26 Rob Browning <rlb@defaultvalue.org>
372
373 * configure.in: change our config header from libguile/scmconfig.h
374 to be the traditional ./config.h. libguile/scmconfig.h is now
375 built from that during the build process. More changes coming...
376
377 2003-01-23 Mikael Djurfeldt <djurfeldt@nada.kth.se>
378
379 * libguile.h: #include "futures.h"
380
381 2002-12-16 Mikael Djurfeldt <djurfeldt@nada.kth.se>
382
383 * configure.in: Test if pthread.h declares
384 pthread_mutexattr_settype ().
385
386 2002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
387
388 * configure.in (SCM_MUTEX_FAST, SCM_MUTEX_RECURSIVE): Test for
389 ways to get fast and recursive mutexes.
390
391 2002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
392
393 * configure.in (_THREAD_SAFE): Define when pthreads are enabled in
394 order to get thread safe versions of glibc functions.
395
396 2002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
397
398 * configure.in: Temporarily replaced "copt" threads option with new
399 option "pthreads".
400 (USE_PTHREAD_THREADS): Define if pthreads configured.
401
402 2002-12-08 Rob Browning <rlb@defaultvalue.org>
403
404 * configure.in (GUILE_EFFECTIVE_VERSION): AC_SUBST it.
405 (AC_CONFIG_FILES): separate out the files that need to be chmodded
406 at the end of config.status. Our "default" approach using
407 AC_CONFIG_COMMANDS quit working (and would have needed to be
408 changed to AC_CONFIG_COMMANDS(,,CMDS) rather than our previous
409 AC_CONFIG_COMMANDS(default,CMDS), but I the new approach, using
410 per-file AC_CONFIG_FILES calls appears to be more "correct" in the
411 current autoconf docs.
412
413 * GUILE-VERSION (GUILE_EFFECTIVE_VERSION): new variable.
414
415 2002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
416
417 * Makefile.am (SUBDIRS): Removed qt.
418
419 * configure.in: Do not configure QTHREADS. Do not define
420 USE_COOP_THREADS. Changed logic for thread package selection so
421 that the default is "coop-pthread" when -lpthread is found, "null"
422 otherwise.
423
424 2002-12-01 Mikael Djurfeldt <mdj@linnaeus>
425
426 * GUILE-VERSION: Added versioning info for srfi 1.
427
428 * configure.in (LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT,
429 LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION,
430 LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE,
431 LIBGUILE_SRFI_SRFI_1_INTERFACE): New AC_SUBST.
432
433 2002-11-10 Marius Vollmer <mvo@zagadka.ping.de>
434
435 * configure.in (USE_THREADS, GUILE_ISELECT): Define always. We
436 define them with AC_DEFINE and not in some header file so that
437 they are visible exactly in the same way as they used to be.
438
439 2002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
440
441 * configure.in: Do not add "threads.o" to the libobjs, it is now
442 always compiled.
443 (USE_THREADS, GUILE_ISELECT): Do not define.
444
445 2002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
446
447 * configure.in: Handle thread package "coop-pthread" with alias
448 "copt" and define USE_COPT_THREADS when it is selected.
449 Always define GUILE_ISELECT.
450
451 2002-10-26 Neil Jerram <neil@ossau.uklinux.net>
452
453 * configure.in (AC_CONFIG_FILES): Add ice-9/debugger/Makefile and
454 ice-9/debugger/breakpoints/Makefile.
455
456 2002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
457
458 * configure.in: Changed logic in thread support configuration such
459 that --with-threads=no is equivalent to --with-threads=null. On
460 platforms that are not supported by QuickThreads, we also use the
461 null-threads. Thus, USE_THREADS is always defined now.
462
463 2002-10-16 Marius Vollmer <marius.vollmer@uni-dortmund.de>
464
465 * configure.in: Shuffled around and extended the thread
466 configuration code to allow the "null" thread package to be
467 selected. Define USE_NULL_THREADS in that case.
468
469 2002-10-13 Gary Houston <ghouston@arglist.com>
470
471 * autogen.sh (ac_version): try automake 1.7 too.
472
473 2002-10-05 Marius Vollmer <mvo@zagadka.ping.de>
474
475 * autogen.sh: Make sure that $autoheader is always set. When we
476 would use the plain "autoconf", $autoheader would end up empty and
477 libguile/scmconfig.h.in would not be updated.
478
479 2002-10-04 Rob Browning <rlb@defaultvalue.org>
480
481 * libltdl: moved to libguile-ltdl.
482
483 * Makefile.am (SUBDIRS): remove libltdl.
484
485 * autogen.sh: remove support for libltdl sub-configure.
486 (ac_version): widen support check to any 2.5? autoconf version.
487 2.54 is out now.
488
489 * configure.in: turn on -Werror by default. We're now clean. I'd
490 like to stay that way. If we want, we can turn it off by default
491 when we make the stable release, but I caught a lot of bugs this
492 way. Accomodate libguile-ltdl -- therea are some ltdl things that
493 are commented out now INCLTDL and LIBLTDL. I think we may not
494 need them anymore, but I'll leave them until we're sure. We also
495 killed off the libltdl dir and related options including the
496 AC_CONFIG_SUBDIRS. I also added some explicit tests for some
497 headers and functions that weren't listed but were in
498 scmconfig.h.in. though this may have been unnecessary.
499
500 2002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
501
502 * configure.in: Use AC_LIBLTDL_CONVENIENCE instead of
503 AC_LIBLTDL_INSTALLABLE.
504
505 2002-10-03 Marius Vollmer <mvo@zagadka.ping.de>
506
507 * autogen.sh: Do not instruct libtoolize to copy libltdl into our
508 sources. Do not patch it. We have our own version now that is
509 only being used as a convenience library.
510
511 2002-08-24 Marius Vollmer <mvo@zagadka.ping.de>
512
513 * configure.in: Check for __libc_stack_end.
514
515 2002-08-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
516
517 * configure.in: add snprintf
518
519 2002-08-04 Han-Wen <hanwen@cs.uu.nl>
520
521 * NEWS: add entries for GC and vector WB.
522
523 2002-07-22 Han-Wen <hanwen@cs.uu.nl>
524
525 * autogen.sh (mscripts): find and check version number of
526 automake. Complain if 1.6 is not found.
527
528 2002-07-20 Han-Wen <hanwen@cs.uu.nl>
529
530 * autogen.sh (mscripts): find and check version number of
531 autoconf. Complain if 2.53 is not found.
532
533 2002-07-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
534
535 * benchmark-guile.in: Copied from check-guile.in and adapted for
536 use with benchmarks.
537
538 * Makefile.am: Recurse into the benchmark-suite subdir.
539
540 * configure.in: Added benchmarking files.
541
542 2002-07-12 Gary Houston <ghouston@arglist.com>
543
544 * configure.in: check dynamic linking before modules. Add dynl.c
545 if dynamic linking is available, i.e., unless --with-modules=no
546 was given to configure.
547
548 2002-07-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
549
550 * autogen.sh: Patch libltdl/ltdl.c to avoid a nasty bug in
551 libtool-1.4.2.
552
553 2002-07-07 Marius Vollmer <mvo@zagadka.ping.de>
554
555 * autogen.sh: Do not copy INSTALL from workbook since it is not
556 uniform across branches.
557 * INSTALL: Re-added to repository.
558
559 Crosscompiling and Cygwin fixes from Jan Nieuwenhuizen. Thanks!
560
561 * autogen.sh: Only fix libltdl/configure.in if it exists. Current
562 libtool CVS does not need this fix.
563
564 * configure.in (AC_LIBTOOL_WIN32_DLL): Add for shared Cygwin
565 build.
566 Add --with-cc-for-build option to re-enable cross building.
567 Add --with-guile-for-build option to re-enable cross building.
568
569 2002-06-30 Gary Houston <ghouston@arglist.com>
570
571 * autogen.sh: Changed the path to the scripts directory.
572 In libltdl, run aclocal before autoconf and automake: this
573 eliminated various warnings after upgrading to newer automake.
574
575 2002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
576
577 From John W. Eaton <jwe@bevo.che.wisc.edu>
578
579 * configure.in (AC_CHECK_FUNCS): Check for copysign.
580
581 2002-05-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
582
583 * libguile.h: Added inclusion of "extensions.h".
584
585 2002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
586
587 * configure.in: Include <sys/types.h> before <netinet/in.h> when
588 checking vor IPv6. This is for NetBSD 1.5. Thanks to Greg
589 Troxel!
590
591 From John W. Eaton.
592
593 * configure.in (AC_CHECK_HEADERS): Check for floatingpoint.h
594 ieeefp.h, and nan.h.
595 (AC_CHECK_FUNCS): Check for finite, isinf, and isnan.
596
597 2002-05-01 Thien-Thi Nguyen <ttn@giblet.glug.org>
598
599 * autogen.sh: Add call to $mscripts/render-bugs
600 to create BUGS file.
601
602 * BUGS: bye bye
603
604 2002-04-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
605
606 * Makefile.am (EXTRA_DIST): Remove qthreads.m4.
607
608 2002-04-26 Marius Vollmer <mvo@zagadka.ping.de>
609
610 * guile-aclocal.sh: Replaced with a simple invocation of "aclocal
611 -I guile-config". This works as of automake 1.5.
612 * qthreads.m4: Moved to guile-config/.
613
614 2002-04-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
615
616 * autogen.sh: Call automake twice for guile-core so that two
617 copies of mdate-sh get a chance of being installed (one in
618 doc/ref/ and one in doc/tutorial/).
619
620 2002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
621
622 * Makefile.am (AUTOMAKE_OPTIONS): New, to request version 1.5.
623 (EXTRA_DIST): Don't distribute acconfig.h, which is gone.
624 (dist-hook): Removed.
625 (DISTCLEANFILES): Added check-guile.log.
626 (EXTRA_DIST): Don't distribute TODO.
627
628 * configure.in: Bump required autoconf version to 2.53. Move uses
629 of AC_LIBOBJ after AC_PROG_CC. AC_LIBOBJ needs OBJEXT which is
630 set by AC_PROG_CC.
631
632 2002-04-10 Rob Browning <rlb@defaultvalue.org>
633
634 * configure.in: updates for new autoconf -- add definitions to
635 AC_DEFINE calls, and convert occurences of LIBOBJS to AC_LIBOBJ
636 calls.
637
638 * acinclude.m4: add definitions to AC_DEFINE calls for new
639 autoconf.
640
641 * acconfig.h: removed -- newer autoconf doesn't like it, and now
642 we don't need it.
643
644 * .cvsignore: add autom4te.cache and pre-inst-guile.
645
646 2002-04-03 Thien-Thi Nguyen <ttn@giblet.glug.org>
647
648 * RELEASE: bye bye
649
650 2002-03-31 Thien-Thi Nguyen <ttn@giblet.glug.org>
651
652 * Makefile.am: Update copyright.
653 (dist-hook): Add, including related am/maintainers-dirs,
654 surrounded by "if MAINTAINER_MODE".
655
656 * TODO: bye bye
657
658 * autogen.sh: Add usage comment.
659 Add workbook specification.
660 Add dist-files symlinking.
661
662 * ANON-CVS, HACKING, INSTALL, SNAPSHOTS: bye bye
663
664 2002-03-06 Thien-Thi Nguyen <ttn@giblet.glug.org>
665
666 * guile-tools.in: Handle "--source" option.
667
668 2002-03-04 Thien-Thi Nguyen <ttn@giblet.glug.org>
669
670 * configure.in (top_srcdir_absolute): New AC_SUBST var.
671
672 * pre-inst-guile.in, check-guile.in (top_srcdir):
673 Use `top_srcdir_absolute' AC_SUBST var.
674
675 * pre-inst-guile.in (top_srcdir): Fix ref bug: Force absolute.
676
677 2002-02-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
678
679 * pre-inst-guile.in: Typofix; nfc.
680
681 2002-02-27 Stefan Jahn <stefan@lkcc.org>
682
683 * Makefile.am (SUBDIRS): Added the `am' directory.
684
685 2002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
686
687 * pre-inst-guile.in: New file.
688
689 * pre-inst-guile, pre-inst-guile.am: bye bye
690
691 * configure.in (top_builddir_absolute): New AC_SUBST var.
692 (AC_CONFIG_FILES): Add am/Makefile, pre-inst-guile.
693 (AC_CONFIG_COMMANDS): Also chmod +x pre-inst-guile.
694
695 * check-guile.in (top_builddir): Use AC_SUBST var
696 `top_builddir_absolute'.
697 (guile): Look for pre-inst-guile in $top_builddir.
698
699 * Makefile.am (EXTRA_DIST): Remove pre-inst-guile,
700 pre-inst-guile.am.
701
702 2002-02-24 Rob Browning <rlb@defaultvalue.org>
703
704 * GUILE-VERSION: move all but guile-readline library versioning
705 information here. guile-readline is still standalone. Bump
706 CURRENT interfaces to 15 to allow some headroom for 1.6 release at
707 Thi-Thien's request.
708
709 * configure.in: AC_SUBST the centralized shared lib versioning
710 variables from ./GUILE-VERSION.
711 (LIBQTHREADS_INTERFACE_CURRENT): new AC_SUBST.
712 (LIBQTHREADS_INTERFACE_REVISION): new AC_SUBST.
713 (LIBQTHREADS_INTERFACE_AGE): new AC_SUBST.
714 (LIBQTHREADS_INTERFACE): new AC_SUBST.
715 (LIBGUILE_INTERFACE_CURRENT): new AC_SUBST.
716 (LIBGUILE_INTERFACE_REVISION): new AC_SUBST.
717 (LIBGUILE_INTERFACE_AGE): new AC_SUBST.
718 (LIBGUILE_INTERFACE): new AC_SUBST.
719 (LIBGUILE_SRFI_SRFI_4_INTERFACE_CURRENT): new AC_SUBST.
720 (LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION): new AC_SUBST.
721 (LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE): new AC_SUBST.
722 (LIBGUILE_SRFI_SRFI_4_INTERFACE): new AC_SUBST.
723 (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT): new AC_SUBST.
724 (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION): new AC_SUBST.
725 (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE): new AC_SUBST.
726 (LIBGUILE_SRFI_SRFI_13_14_INTERFACE): new AC_SUBST.
727
728 * autogen.sh: make absolutely sure we can't have stale files from
729 old versions lying around the libltdl dir since libtoolize
730 doesn't. Also hack libltdl's configure.in to require autoconf 2.5
731 so the main tree and libltdl can't get out of sync again.
732
733 * RELEASE: update release building instructions.
734
735 2002-02-21 Neil Jerram <neil@ossau.uklinux.net>
736
737 * acinclude.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): Use [] rather than
738 "" for multiword string. Thanks to Christopher Cramer for
739 pointing this out.
740
741 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
742
743 * acconfig.h (GUILE_DEBUG_MALLOC): Refer to scm_gc_malloc, etc,
744 instead of to scm_must_malloc.
745
746 2002-02-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
747
748 * Makefile.am (EXTRA_DIST): Added pre-inst-guile and
749 pre-inst-guile.am.
750
751 2002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
752
753 * pre-inst-guile.am, pre-inst-guile: New files.
754
755 * check-guile.in (srcdir): Delete var.
756 (top_builddir, top_srcdir, guile_opts): New vars.
757
758 Use "set -e".
759 No longer set LTDL_LIBRARY_PATH.
760 Use ${top_srcdir}/pre-inst-guile instead of libguile/guile.
761
762 * configure.in (libguile/guile-snarf-docs-texi): Remove
763 from `AC_CONFIG_FILES' and `AC_CONFIG_COMMANDS'.
764
765 * check-guile.in (top_builddir): Fix bug: Use cwd.
766 (TEST_SUITE_DIR): Fix bug: Use `top_srcdir'.
767 (GUILE_LOAD_PATH): No longer include $top_srcdir.
768
769 * pre-inst-guile: Fix bug: Use ":" in `case' pattern to prevent
770 prefix aliasing.
771
772 2002-01-31 Stefan Jahn <stefan@lkcc.org>
773
774 * configure.in: Add -DLIBLTDL_DLL_IMPORT to INCLTDL when using
775 `libltdl.dll'.
776
777 2002-01-28 Stefan Jahn <stefan@lkcc.org>
778
779 * configure.in (guile_cv_have_uint32_t): Look also in
780 `stdint.h' for uint32_t.
781
782 2002-01-13 Neil Jerram <neil@ossau.uklinux.net>
783
784 * Makefile.am (SUBDIRS): Added lang.
785
786 * configure.in (AC_CONFIG_FILES): Added Makefiles in lang,
787 lang/elisp, lang/elisp/internals and lang/elisp/primitives.
788
789 2002-01-11 Neil Jerram <neil@ossau.uklinux.net>
790
791 * acconfig.h (SCM_ENABLE_ELISP): New conditional.
792
793 * configure.in (SCM_ENABLE_ELISP): Define this conditional (or
794 not) according to absence (or presence) of `--disable-elisp'
795 in the configure args.
796
797 2001-12-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
798
799 * TODO: Added two items.
800
801 2001-12-26 Marius Vollmer <mvo@zagadka.ping.de>
802
803 * configure.in (HAVE_MAKEINFO): Check for the makeinfo program and
804 set this conditional accordingly.
805
806 2001-12-01 Thien-Thi Nguyen <ttn@giblet.glug.org>
807
808 * README: Fix virulent typo.
809
810 2001-11-25 Marius Vollmer <mvo@zagadka.ping.de>
811
812 * acconfig.h (HAVE_INLINE): Added template.
813 * configure.in (HAVE_INLINE): Define it when the compiler supports
814 inline functions.
815
816 * libguile.h: Include "libguile/inline.h".
817
818 2001-11-22 Gary Houston <ghouston@arglist.com>
819
820 * HACKING: Modified the Hacking It Yourself section. Removed the
821 version numbers from the tools.
822 HACKING, README, ANON-CVS: updates.
823
824 2001-11-21 Gary Houston <ghouston@arglist.com>
825
826 * HACKING: Removed reference to no longer practiced * in ChangeLog
827 convention.
828
829 2001-11-19 Thien-Thi Nguyen <ttn@glug.org>
830
831 * BUGS (11): Set "fixed: no-need".
832
833 * TODO (write emacs/patch.el): New item, self-assigned.
834
835 2001-11-19 Rob Browning <rlb@defaultvalue.org>
836
837 * configure.in: switch to AC_LIBLTDL_INSTALLABLE so we'll use the
838 system libltdl when it's available. Aside from the normal reasons
839 to prefer installed shared libs, this means other apps that link
840 with libguile and also use libltdl will be more likely to work
841 right.
842
843 2001-11-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
844
845 * BUGS (4): Set "fixed: 2001-11-17 (1.7.x)".
846
847 2001-11-15 Thien-Thi Nguyen <ttn@glug.org>
848
849 * guile-tools.in: Handle command "list" specially: list scripts dir.
850
851 (help): Make more informative.
852
853 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
854
855 * autogen.sh: Recurse into libltdl directory and invoke autoconf
856 there.
857
858 2001-11-11 Thien-Thi Nguyen <ttn@glug.org>
859
860 * HACKING: Restrict documentation change log
861 waiver to only apply to ChangeLog files.
862
863 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
864
865 * configure.in: Check for sizes of short, size_t, uintptr_t, and
866 ptrdiff_t. Checking for a size also checks automatically for the
867 existence of the type, so we don't check for the existence of
868 uintptr_t, ptrdiff_t and long long ourselves.
869
870 2001-11-10 Thien-Thi Nguyen <ttn@glug.org>
871
872 * BUGS (11): New.
873
874 2001-11-07 Stefan Jahn <stefan@lkcc.org>
875
876 * configure.in: Include `win32-socket.o' in the list of object
877 files if networking is enabled on Win32.
878
879 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
880
881 * TODO (sync srfi-modules.texi): New, done.
882
883 * BUGS (9, 10): New.
884
885 2001-11-04 Stefan Jahn <stefan@lkcc.org>
886
887 * NEWS: Corrected remarks about SCM_API.
888
889 * configure.in: Defining USE_DLL_IMPORT definition to indicate
890 usage of DLL import macros in `libguile/__scm.h'.
891 (LIBOBJS): Removed `fileblocks.o' from the list of object files.
892 Somehow Jim Blandy's patch from 1997 did not survive.
893
894 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
895
896 Support for native Win32. Thanks to Stefan Jahn!
897
898 * check-guile.in: Replaced `ln -s' by `@LN_S@' to supports
899 build systems which do not have symbolic links.
900 * configure.in: Define AC_LIBTOOL_WIN32_DLL to build clean dlls
901 on Win32 platforms.
902 Checking for `ws2_32.dll', `winsock2.h', add `win32-uname.o'
903 and `win32-dirent.o' and define extra compiler flags necessary
904 to build clean dlls.
905 Check for `regcomp()' inside `-lregex'.
906
907 2001-10-26 Thien-Thi Nguyen <ttn@glug.org>
908
909 * BUGS (7, 8): New.
910
911 2001-10-25 Thien-Thi Nguyen <ttn@glug.org>
912
913 * BUGS: Expand on file format description.
914
915 (1): Update "fixed" field.
916 (2, 3, 4, 5, 6): New.
917
918 2001-10-14 Gary Houston <ghouston@arglist.com>
919
920 * configure.in: include sys/types.h when testing uint32_t.
921 thanks to Bill Schottstaedt.
922
923 2001-10-14 Marius Vollmer <mvo@zagadka.ping.de>
924
925 * configure.in: Do not use an absolute path for <unistd.h> when
926 checking for return type of usleep. Thanks to Michael Carmack.
927
928 2001-09-30 Thien-Thi Nguyen <ttn@glug.org>
929
930 * BUGS: New file.
931 * Makefile.am (EXTRA_DIST): Add BUGS file.
932
933 2001-09-25 Thien-Thi Nguyen <ttn@glug.org>
934
935 * TODO: Add bugfix item to "Eventually".
936
937 2001-09-20 Rob Browning <rlb@defaultvalue.org>
938
939 * configure.in (AC_CONFIG_FILES): add libguile/version.h.
940
941 2001-09-11 Rob Browning <rlb@defaultvalue.org>
942
943 * RELEASE: Deleted Ian Grant and Julian Satchell's addresses from
944 the testing list since they're no longer functional.
945
946 2001-09-04 Thien-Thi Nguyen <ttn@revel.glug.org>
947
948 * TODO:
949 Use outline mode instead of text.
950 Reword protocol explanation.
951 Add "make error-signalling functions more consistent" to Eventually.
952 Move some C-related GOOPS tasks to 1.8.0, take ownership.
953
954 2001-08-31 Thien-Thi Nguyen <ttn@revel.glug.org>
955
956 * HACKING (Sample GDB Initialization File): New section.
957
958 * TODO (1.8.0): Add "move .gdbinit" entry.
959
960 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
961
962 * TODO: Added some points, and eliminated all done items.
963
964 * acconfig.h, configure.in (SCM_DEBUG_DEPRECATED,
965 SCM_ENABLE_DEPRECATED): Renamed SCM_DEBUG_DEPRECATED to
966 SCM_ENABLE_DEPRECATED with the logic reversed.
967
968 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
969
970 * libguile.h: Removed bogus comment, rearranged includes, removed
971 deprecated definitions.
972
973 (LIBGUILEH, SCM_LIBGUILE_H): Renamed <foo>H to SCM_<foo>_H.
974
975 2001-08-30 Thien-Thi Nguyen <ttn@revel.glug.org>
976
977 * HACKING: Mention libtool ./configure-regeneration requirement.
978
979 2001-08-27 Marius Vollmer <mvo@zagadka.ping.de>
980
981 * check-guile.in: Do not include ".libs" in LTDL_LIBRARY_PATH,
982 libltdl provides it itself.
983
984 2001-08-24 Neil Jerram <neil@ossau.uklinux.net>
985
986 * configure.in (AC_CONFIG_FILES): Add per-manual doc directory
987 Makefiles.
988
989 2001-08-15 Rob Browning <rlb@defaultvalue.org>
990
991 * configure.in
992 (LIBGUILE_INTERFACE_CURRENT): use libtool versioning scheme.
993 (LIBGUILE_INTERFACE_REVISION): use libtool versioning scheme.
994 (LIBGUILE_INTERFACE_AGE): use libtool versioning scheme.
995 (LIBGUILE_INTERFACE): use libtool versioning scheme.
996 (LIBGUILEQTHREADS_INTERFACE_CURRENT): use libtool versioning scheme.
997 (LIBGUILEQTHREADS_INTERFACE_REVISION): use libtool versioning scheme.
998 (LIBGUILEQTHREADS_INTERFACE_AGE): use libtool versioning scheme.
999 (LIBGUILEQTHREADS_INTERFACE): use libtool versioning scheme.
1000
1001 * GUILE-VERSION (GUILE_MINOR_VERSION): bump for new unstable.
1002 (GUILE_MICRO_VERSION): reset for new unstable.
1003 (LIBGUILE_INTERFACE_CURRENT): use libtool versioning scheme.
1004 (LIBGUILE_INTERFACE_REVISION): use libtool versioning scheme.
1005 (LIBGUILE_INTERFACE_AGE): use libtool versioning scheme.
1006 (LIBGUILE_INTERFACE): use libtool versioning scheme.
1007 (LIBGUILEQTHREADS_INTERFACE_CURRENT): use libtool versioning scheme.
1008 (LIBGUILEQTHREADS_INTERFACE_REVISION): use libtool versioning scheme.
1009 (LIBGUILEQTHREADS_INTERFACE_AGE): use libtool versioning scheme.
1010 (LIBGUILEQTHREADS_INTERFACE): use libtool versioning scheme.
1011
1012 2001-08-07 Marius Vollmer <mvo@zagadka.ping.de>
1013
1014 * Makefile.am (EXTRA_DIST, SUBDIRS): Move test-suite from
1015 EXTRA_DIST to SUBDIRS.
1016
1017 * configure.in: Added "test-suite/Makefile".
1018
1019 2001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
1020
1021 * configure.in: Added `--disable-linuxthreads' option and do not
1022 define GUILE_PTHREAD_COMPAT nor link with -lpthread when it is
1023 given. Thanks to Cris Cramer!
1024
1025 2001-07-23 Marius Vollmer <mvo@zagadka.ping.de>
1026
1027 * Makefile.am (SUBDIRS): Build libguile before ice-9.
1028
1029 2001-07-22 Marius Vollmer <mvo@zagadka.ping.de>
1030
1031 * configure.in: Check for "inttypes.h".
1032
1033 2001-07-19 Rob Browning <rlb@defaultvalue.org>
1034
1035 * configure.in: add checks for setitimer and getitimer.
1036 Add --enable-error-on-warning.
1037
1038 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1039
1040 * INSTALL, Makefile.am, configure.in: Updated copyright notice.
1041
1042 2001-07-15 Thien-Thi Nguyen <ttn@revel.glug.org>
1043
1044 * HACKING: Remove onerous authorship-info deletion clause.
1045
1046 2001-07-13 Keisuke Nishida <knishida@nurs.or.jp>
1047
1048 * autogen.sh: Call libtoolize with --force.
1049
1050 2001-07-10 Thien-Thi Nguyen <ttn@revel.glug.org>
1051
1052 * INSTALL: Point to HACKING for tool versions.
1053
1054 2001-07-08 Rob Browning <rlb@defaultvalue.org>
1055
1056 * TODO: updated to include relevant itemized post-1.6-RELEASE
1057 tasks that are distributable so we can check them off as they are
1058 done, and delete 1.6.0 tasks.
1059
1060 * RELEASE: add a note that the RELEASE instructions are out of
1061 date now that we're using branches.
1062
1063 * AUTHORS: add "many files throughout" for myself.
1064
1065 2001-06-28 Thien-Thi Nguyen <ttn@revel.glug.org>
1066
1067 * README: Also mention guile-tools.
1068
1069 * README: Mention libguile-srfi-*, oop/*, scripts/* and srfi/*.
1070
1071 2001-06-27 Thien-Thi Nguyen <ttn@revel.glug.org>
1072
1073 * RELEASE: Move todo items to file TODO.
1074
1075 * TODO: Initial revision
1076
1077 * Makefile.am (EXTRA_DIST): Add TODO.
1078
1079 * HACKING: Refer to TODO and SNAPSHOTS.
1080 No longer refer to devel/tasks.text.
1081
1082 * SNAPSHOTS: Fix reference bug; recommended tool
1083 versions are in HACKING.
1084
1085 * TODO: Add completion and ownership protocol to header comments.
1086
1087 * RELEASE: Add TODO-processing to spiffing checklist.
1088
1089 * HACKING: Update deprecation procedure to refer to TODO.
1090
1091 2001-06-27 Michael Livshin <mlivshin@bigfoot.com>
1092
1093 * autogen.sh: don't run flex here.
1094
1095 * HACKING: clarify that newer versions of flex should be just
1096 fine.
1097
1098 2001-06-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1099
1100 * HACKING, ANON-CVS: Removed mentioning of guile-doc CVS module.
1101
1102 * configure.in: Added some header and function checks.
1103
1104 2001-06-25 Neil Jerram <neil@ossau.uklinux.net>
1105
1106 * autogen.sh: Quoting fix for `--enable-maintainer-mode'.
1107
1108 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
1109
1110 * autogen.sh: Added message about what to do next. Tell them to
1111 use `--enable-maintainer-mode'.
1112
1113 2001-06-25 Michael Livshin <mlivshin@bigfoot.com>
1114
1115 * HACKING: mention flex.
1116
1117 * autogen.sh: generate libguile/c-tokenize.c.
1118
1119 2001-06-20 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1120
1121 * libguile.h: Removed inclusion of libguile/tag.h.
1122
1123 2001-06-16 Marius Vollmer <mvo@zagadka.ping.de>
1124
1125 * libguile.h (scm_cond_t, scm_key_t, scm_mutex_t): Only define
1126 these when using threads.
1127
1128 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
1129
1130 * libguile.h: Added deprecated section with the olde type names.
1131
1132 * configure.in: Check for header <stdint.h>. Check for uintptr_t
1133 type. Use AC_CHECK_TYPES for this. Do not caus ptrdiff_t to be
1134 `#defined'.
1135
1136 * acconfig.h (ptrdiff_t): Removed.
1137
1138 2001-06-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1139
1140 * configure.in: Generate examples/box-dynamic-module/Makefile.
1141
1142 2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
1143
1144 * configure.in (AC_CONFIG_FILES, AC_CONFIG_COMMANDS): Add
1145 guile-snarf.
1146
1147 2001-06-02 Rob Browning <rlb@cs.utexas.edu>
1148
1149 * configure.in: changes for autoconf 2.50.
1150 (AC_PREREQ): require at least autoconf 2.50.
1151 (AC_INIT): no longer takes an arg.
1152 (AC_CONFIG_SRCDIR): takes arg AC_INIT used to take.
1153 (AC_STRUCT_ST_RDEV): changed -> AC_CHECK_MEMBERS.
1154 (AC_STRUCT_ST_BLKSIZE): deprecated -> AC_CHECK_MEMBERS.
1155 (AC_STRUCT_ST_BLOCKS): use it rather than our version.
1156 (AC_CONFIG_FILES): now generated files go here, not in AC_OUTPUT.
1157 (AC_CONFIG_COMMANDS): now actions go here, not in AC_OUTPUT.
1158 (AC_OUTPUT): no longer takes args.
1159
1160 * acinclude.m4: AC_LANG not a variable now -- use __cplusplus
1161 unconditionally .
1162
1163 2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
1164
1165 * configure.in: Check for mkstemp via AC_REPLACE_FUNCS. Thanks to
1166 I. N. Golubev!
1167
1168 2001-06-01 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1169
1170 * configure.in: Generate examples/box-dynamic/Makefile.
1171
1172 2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1173
1174 * Makefile.am (EXTRA_DIST): New subdirectory `examples'.
1175
1176 * configure.in: Added all Makefiles in the `examples' directory to
1177 AC_OUTPUT.
1178
1179 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
1180
1181 * configure.in: generate guile-snarf-docs & guile-snarf-docs-texi.
1182 don't generate guile-snarf.awk.
1183
1184 * Makefile.am (EXTRA_DIST): add test-suite.
1185
1186 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
1187
1188 * check-guile.in: fix to be runnable when srcdir!=builddir.
1189
1190 2001-05-26 Michael Livshin <mlivshin@bigfoot.com>
1191
1192 revert the controversial part of the 2001-05-23 changes
1193
1194 2001-05-23 Michael Livshin <mlivshin@bigfoot.com>
1195
1196 * configure.in: configury for SCM_[U]BITS_T, some more sizeofs.
1197 also, make sure that the integral type choosen to represent an SCM
1198 has exactly the same size as a void pointer.
1199
1200 * acconfig.h: add undefs for SCM_BITS_T, SCM_UBITS_T,
1201 SCM_SIZEOF_BITS_T, ptrdiff_t.
1202
1203 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
1204
1205 * configure.in: add AC_SUBST for GUILE_MICRO_VERSION.
1206
1207 * GUILE-VERSION
1208 (GUILE_VERSION): now MAJOR.MINOR.MICRO
1209 (GUILE_MICRO_VERSION): new variable, records final revision.
1210 i.e. the 5 in 1.6.5. MINOR_VERSION is now just the middle number,
1211 i.e. the 6.
1212
1213 2001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
1214
1215 * acconfig.h, configure.in: Renamed
1216 GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
1217
1218 2001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
1219
1220 * acinclude.m4: Removed copy of "libtool.m4".
1221
1222 2001-05-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
1223
1224 * configure.in (SCM_DEBUG_DEPRECATED): Always defined.
1225
1226 2001-05-13 Thien-Thi Nguyen <ttn@revel.glug.org>
1227
1228 * AUTHORS (Martin Grabmueller, Thien-Thi Nguyen): Update.
1229
1230 * HACKING: Update copyright.
1231 Add blurb pointing to devel/tasks.text.
1232
1233 2001-05-11 Thien-Thi Nguyen <ttn@revel.glug.org>
1234
1235 * check-guile.in: For SRFI testing, set and export env
1236 var `LTDL_LIBRARY_PATH'.
1237
1238 2001-05-07 Neil Jerram <neil@ossau.uklinux.net>
1239
1240 * AUTHORS: Add docs-related authorship details.
1241
1242 2001-05-05 Marius Vollmer <mvo@zagadka.ping.de>
1243
1244 * configure.in (--enable-deprecated): Recognize "shutup" option
1245 argument and turn it into the default warning level "no".
1246
1247 2001-05-05 Gary Houston <ghouston@arglist.com>
1248
1249 * acconfig.h: add HAVE_IPV6.
1250 * configure.in: check whether we can compile with IPv6 support.
1251
1252 2001-05-04 Thien-Thi Nguyen <ttn@revel.glug.org>
1253
1254 * guile-tools.in: New file.
1255
1256 * configure.in (AC_OUTPUT): Add guile-tools, and make
1257 executable.
1258
1259 * Makefile.am (bin_SCRIPTS): New var.
1260
1261 2001-05-04 Gary Houston <ghouston@arglist.com>
1262
1263 * configure.in: check whether uint32_t is defined when netdb.h
1264 is included.
1265 acconfig.h: added HAVE_UINT32_T.
1266
1267 2001-05-02 Marius Vollmer <mvo@zagadka.ping.de>
1268
1269 * configure.in: Added handling of `--enable-deprecated'.
1270
1271 * acconfig.h (SCM_DEBUG_DEPRECATED,
1272 GUILE_WARN_DEPRECATED_DEFAULT): Added.
1273
1274 2001-04-29 Thien-Thi Nguyen <ttn@revel.glug.org>
1275
1276 * Makefile.am (SUBDIRS): Add "scripts".
1277
1278 * configure.in (AC_OUTPUT): Add scripts/Makefile.
1279
1280 2001-04-29 Gary Houston <ghouston@arglist.com>
1281
1282 * libguile.h: include rw.h.
1283
1284 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
1285
1286 * GUILE-VERSION (GUILE_MINOR_VERSION): change to 5.0, switching to
1287 the new odd/even ustable/stable version numbering scheme.
1288 (LIBGUILEQTHREADS_MAJOR_VERSION): change to 10 to match Debian and
1289 libguile. In the future, libguile and libguileqthreads may not
1290 stay in sync. This still doesn't appear to affect
1291 libguileqthreads, but we'll fix that next.
1292
1293 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1294
1295 * configure.in: Don't treat srfi directory specially, just create
1296 the Makefile there (thanks to Neil Jerram for the patch).
1297
1298 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1299
1300 * Makefile.am (SUBDIRS): Added `srfi'.
1301
1302 * configure.in: Added subdirectory `srfi' to build process.
1303
1304 * libguile.h: Added inclusion of `values.h'.
1305
1306 2001-04-22 Gary Houston <ghouston@arglist.com>
1307
1308 * configure.in: check for inet_pton and inet_ntop.
1309
1310 2001-04-20 Gary Houston <ghouston@arglist.com>
1311
1312 * acconfig.h: include HAVE_SIN6_SCOPE_ID.
1313 * configure.in: check for sin6_scope_id in sockaddr_in6.
1314
1315 2001-04-19 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
1316
1317 * RELEASE: Added deprecated macro SCM_ARRAY_CONTIGUOUS
1318
1319 2001-04-17 Gary Houston <ghouston@arglist.com>
1320
1321 * configure.in: run the autoconf BIGENDIAN check.
1322
1323 2001-04-12 Niibe Yutaka <gniibe@m17n.org>
1324
1325 * GUILE-VERSION (LIBGUILEQTHREADS_MAJOR_VERSION,
1326 LIBGUILEQTHREADS_MINOR_VERSION, LIBGUILEQTHREADS_REVISION_VERSION,
1327 LIBGUILEQTHREADS_VERSION): Added libguileqthreads version info.
1328
1329 * configure.in: Likewise.
1330
1331 2001-04-11 Keisuke Nishida <kxn30@po.cwru.edu>
1332
1333 * configure.in (AC_CHECK_FUNCS): Don't check bzero.
1334 (GUILE_FUNC_DECLARED): Removed checking of bzero.
1335 Thanks to NIIBE Yutaka.
1336
1337 2001-04-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
1338
1339 * Undeprecated scm_init_oop_goopscore_module.
1340
1341 2001-03-25 Thien-Thi Nguyen <ttn@revel.glug.org>
1342
1343 * check-guile.in: Fix sh standard conformance bug: Replace
1344 "test -e" with "test -f". Thanks to Alexander Klimov.
1345
1346 2001-03-19 Gary Houston <ghouston@arglist.com>
1347
1348 * check-guile.in: rename $parent to $srcdir. if it's equal to "."
1349 set it to `pwd`.
1350
1351 * check-guile.in: 16 documentation tests were failing if "make
1352 check" was run before Guile had been installed with the current
1353 --prefix. made various changes to the script so that it runs
1354 without a cd to the test-suite directory. For the -i option,
1355 don't point GUILE_LOAD_PATH to the current directory, but let it
1356 use it's own scheme library.
1357
1358 2001-03-18 Gary Houston <ghouston@arglist.com>
1359
1360 * check-guile.in: use @srcdir@ instead of @test_suite_dir@. use
1361 the current directory (build dir) not srcdir to find guile
1362 executable. otherwise "make check" doesn't work with a separate
1363 build directory. create the test log in
1364 $build_dir/check-guile.log instead of in srcdir/test-suite
1365 directory.
1366 * configure.in: don't define or substitute test_suite_dir.
1367
1368 2001-03-17 Gary Houston <ghouston@arglist.com>
1369
1370 * configure.in: don't append threads.doc to EXTRA_DOT_DOC_FILES,
1371 since EXTRA_DOT_DOC_FILES is redefined later. define
1372 EXTRA_DOT_X_FILES and hand it to AC_SUBST.
1373
1374 2001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1375
1376 * configure.in: Added header checks for crypt.h, sys/resource.h
1377 and sys/file.h, function checks for chroot, flock, getlogin,
1378 cuserid, getpriority, setpriority, getpass, sethostname,
1379 gethostname, and for crypt() in libcrypt.
1380
1381 2001-03-09 Neil Jerram <neil@ossau.uklinux.net>
1382
1383 * configure.in (htmldoc): Merge handling of `--enable-htmldoc'
1384 option from guile-doc/configure.in.
1385
1386 2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
1387
1388 * libguile.h: Removed #include "libguile/dump.h".
1389
1390 2001-02-02 Keisuke Nishida <kxn30@po.cwru.edu>
1391
1392 * libguile.h: Added #include "libguile/dump.h".
1393
1394 2001-01-29 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
1395
1396 * libguile.h: Added #include "libguile/rdelim.h".
1397
1398 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
1399
1400 The following patch was sent by Thien-Thi Nguyen.
1401
1402 * check-guile.in: New file.
1403
1404 * Makefile.am: Add TESTS rule.
1405
1406 * configure.in: Add support for "make check".
1407
1408 2000-11-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
1409
1410 * acconfig.h: Removed bogus #ifndef. Thanks to Lars J. Aas.
1411
1412 2000-10-25 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
1413
1414 * GUILE-VERSION (LIBGUILE_MAJOR_VERSION): Incremented major
1415 version number to 10 due to the merge of GOOPS.
1416
1417 * oop: New directory.
1418
1419 2000-09-20 Keisuke Nishida <kxn30@po.cwru.edu>
1420
1421 * libguile.h: #include "libguile/properties.h".
1422
1423 2000-09-17 Gary Houston <ghouston@arglist.com>
1424
1425 * configure.in, acconfig.h: remove the GCSE test: it doesn't seem
1426 to be reliable on all platforms.
1427
1428 2000-08-18 Gary Houston <ghouston@arglist.com>
1429
1430 * acconfig.h: added BROKEN_GCSE.
1431 * configure.in: check for a gcc GCSE optimisation bug.
1432
1433 2000-07-31 Gary Houston <ghouston@arglist.com>
1434
1435 * acconfig.h: added HAVE_H_ERRNO
1436 * configure.in: removed some dnl'd & obsolete cygwin stuff.
1437 added a test for h_errno.
1438
1439 2000-06-21 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1440
1441 * Guile 1.4 released.
1442
1443 2000-06-20 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1444
1445 * GUILE-VERSION: Changed to work also when included by a Makefile
1446 (e.g. debian/rules). (Thanks to Karl M. Hegbloom.)
1447 (LIBGUILE_MAJOR_VERSION): Bumped to 9.
1448 (GUILE_MINOR_VERSION): Bumped to 4.
1449
1450 2000-06-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1451
1452 * libguile.h: Removed #include "libguile/kw.h".
1453
1454 * Makefile.am (ACLOCAL): Define as ./guile-aclocal.sh.
1455 (The rule will cd to $(top_srcdir).)
1456
1457 * configure.in (EXTRA_DOT_DOC_FILES): Create from LIBOBJS and
1458 substitute it into libguile/Makefile.
1459
1460 * HACKING: Updated recommended libtool version to be 1.3.5.
1461
1462 * RELEASE: Say that we should update HACKING to reflect the
1463 versions of the tools we're using rather than README.
1464
1465 2000-06-02 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1466
1467 * NOTES: Removed.
1468
1469 * TODO: Moved to devel/.
1470
1471 2000-06-01 Craig Brozefsky <craig@red-bean.com>
1472
1473 * GUILE-VERSION: added defnitions for LIBGUILE_MAJOR_VERSION,
1474 LIBGUILE_MINOR_VERSION, LIBGUILE_REVISION_VERSION so that we now
1475 define libguile.so version in a well-lit place.
1476
1477 * configure.in: added AC_SUBST lines for the new LIBGUILE version
1478 variables.
1479
1480 2000-06-01 Michael Livshin <mlivshin@bigfoot.com>
1481
1482 * autogen.sh: call ./guile-aclocal.sh instead of aclocal.
1483
1484 * guile-aclocal.sh: new file, works around aclocal problems.
1485
1486 2000-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
1487
1488 * acconfig.h (USE_FSU_PTHREADS, USE_MIT_PTHREADS,
1489 USE_PCTHREADS_PTHREADS): Removed.
1490
1491 2000-05-01 Gary Houston <ghouston@arglist.com>
1492
1493 * Makefile.am: add include_HEADERS.
1494 libguile.h: moved from libguile directory. maybe libguile.h should
1495 be installed in $prefix/include/libguile/libguile.h instead?
1496
1497 2000-04-21 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1498
1499 * qthreads.m4: Removed THREADS_CPPFLAGS.
1500
1501 * acinclude.m4: Removed qthreads macros. They are provided in
1502 qthreads.m4, so these were redundant.
1503
1504 * acconfig.h (GUILE_DEBUG_MALLOC): New.
1505
1506 * configure.in: New --enable-debug-malloc configuration option.
1507
1508 2000-03-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1509
1510 * acconfig.h (GUILE_PTHREAD_COMPAT): New config variable.
1511
1512 * configure.in: Enable workaround for COOP-linuxthreads
1513 compatibility on Linux systems.
1514
1515 2000-03-19 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1516
1517 * devel: New directory. Intended to carry documentation related
1518 to Guile development (as opposed to the doc directory which
1519 contains documentation related to the use of the current Guile).
1520 This directory (devel) is not included in the Guile distribution,
1521 but is accessible via anonymous CVS.
1522
1523 2000-03-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1524
1525 * configure.in: Don't add iselect.o to LIBOBJS.
1526
1527 2000-03-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1528
1529 * configure.in: Added end-tag for local variables. (Thanks to
1530 Thien-Thi Nguyen.)
1531
1532 2000-03-12 Gary Houston <ghouston@arglist.com>
1533
1534 * README (Guile Documentation, About This Distribution): updated.
1535
1536 2000-03-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1537
1538 * configure.in (ac_cv_struct_timespec): Added test for struct
1539 timespec.
1540
1541 * acconfig.h (HAVE_STRUCT_TIMESPEC): Added.
1542
1543 2000-01-25 Marius Vollmer <mvo@zagadka.ping.de>
1544
1545 * autogen.sh: Call libtoolize. Pass --add-missing option to
1546 automake. Do not decent into libltdl directory. The libltdl
1547 directory is now populated by libtoolize and does not need any
1548 further autogeneration.
1549
1550 2000-01-23 Gary Houston <ghouston@arglist.com>
1551
1552 * configure.in: check for fchown.
1553
1554 Tue Jan 18 12:55:15 2000 Mikael Djurfeldt <mdj@r11n07-s.pdc.kth.se>
1555
1556 * acinclude.m4 (AC_LIBLTDL_CONVENIENCE): Add $(top_srcdir)/libltdl
1557 instead of $(top_builddir)/libltdl to includepath.
1558
1559 2000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1560
1561 * emacs: New subdirectory for elisp tools.
1562
1563 2000-01-15 Marius Vollmer <mvo@zagadka.ping.de>
1564
1565 * README, HACKING: Moved "Hacking it yourself" section from README
1566 to HACKING. Updated recommended libtool version to be 1.3.4.
1567
1568 2000-01-14 Gary Houston <ghouston@arglist.com>
1569
1570 * configure.in: needs to have --disable-networking, not
1571 --disable-net.
1572
1573 2000-01-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1574
1575 * libltdl/acconfig.h: New file: Needed by autogen.sh.
1576
1577 Tue Jan 11 13:42:35 2000 Greg J. Badros <gjb@cs.washington.edu>
1578
1579 * autogen.sh: Added messages as we run autogen in subdirectories.
1580
1581 * configure.in: Output libugile/guile-func-name-check script, and
1582 chmod +x it.
1583
1584 2000-01-11 Marius Vollmer <mvo@zagadka.ping.de>
1585
1586 * libltdl/autogen.sh: New file.
1587 * autogen.sh: Invoke libltdl/autogen.sh.
1588
1589 2000-01-09 Marius Vollmer <mvo@zagadka.ping.de>
1590
1591 Finally applied the libltdl patch from Thomas Tanner, with slight
1592 modifications. All code copied from the libtool package is from
1593 libtool-1.3.4.
1594
1595 * configure.in: Make "--with-modules=yes" the default. Do not
1596 clear INCLTDL, LIBLTDL prior to processing "--with-modules".
1597
1598 1999-07-25 Thomas Tanner <tanner@ffii.org>
1599
1600 * Makefile.am: add libltdl to SUBDIRS, automake automatically
1601 includes ltconfig, ltmain.sh and acconfig.h in EXTRA_DIST
1602 * acinclude.m4: remove GUILE_DLSYM_USCORE, add libtool.m4
1603 (no need to install libtool any more)
1604 * configure.in: replace --enable-dynamic-linking with
1605 --with-modules, required modules can be specified using
1606 --with-modules="/path/to/mod.la" and will be linked
1607 statically on platforms that don't support dynamic loading,
1608 configure libltdl, configure libtool for dlopening
1609 * libltdl: added using libtoolize -c --ltdl
1610
1611 2000-01-09 Gary Houston <ghouston@arglist.com>
1612
1613 * configure.in: check whether localtime caches TZ. copied from
1614 Emacs 20.5.
1615 * acconfig.h: add LOCALTIME_CACHE.
1616
1617 Tue Dec 14 09:12:22 1999 Greg J. Badros <gjb@cs.washington.edu>
1618
1619 * configure.in: Make it be guile-snarf.awk, since we'll be
1620 switching names for guile-doc-snarf. (I wouldn't have changed
1621 this, but I was getting ready to commit this way when the below
1622 change was committed).
1623
1624 1999-12-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1625
1626 * configure.in: Create guile-doc-snarf.awk.
1627
1628 1999-12-12 Greg J. Badros <gjb@cs.washington.edu>
1629
1630 * configure.in: Create guile-doc-snarf, chmod +x that script after
1631 AC_OUTPUTted.
1632
1633 1999-12-10 Greg J. Badros <gjb@cs.washington.edu>
1634
1635 * NEWS: More complete description for --enable-debug-freelist.
1636
1637 1999-12-09 Gary Houston <ghouston@freewire.co.uk>
1638
1639 * configure.in (CFLAGS): don't add -Wpointer-arith, since it
1640 causes numerous spurious warnings with recent gcc and/or glibc
1641 versions.
1642
1643 1999-11-19 Gary Houston <ghouston@freewire.co.uk>
1644
1645 * acconfig.h: add HAVE_ARRAYS.
1646
1647 * configure.in: add --disable-arrays option, probably temporary.
1648
1649 1999-11-17 Gary Houston <ghouston@freewire.co.uk>
1650
1651 * configure.in: check for hstrerror.
1652
1653 1999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
1654
1655 * autogen.sh: Don't call autoreconf at all; it's not reliable.
1656 Instead, call the various tools explicitly. Invoke
1657 guile-readline's autogen.sh script.
1658
1659 Straighten up the situation regarding guile.m4 and qthreads.m4.
1660
1661 We can't have .m4 files which are installed where aclocal can
1662 see them, but also used by guile's own configure.in, because
1663 aclocal will read both copies, complain about duplicate macro
1664 definitions, and refuse to generate aclocal.m4 at all. This
1665 happens if you invoke it as `aclocal -I .', as autoreconf does.
1666 This is probably a flaw in the autotools, but Guile doesn't need
1667 that flaw fixed immediately.
1668
1669 guile.m4 is intended for use by people linking against guile, so
1670 it needs to be installed. But Guile itself doesn't use it. So
1671 move guile.m4 into guile-config. That makes sense, since
1672 guile.m4's GUILE_FLAGS macro is just an easy way to call
1673 guile-config.
1674
1675 qthreads.m4 is indented to help configure a qthreads tree. It's
1676 only useful to a package which actually includes a qthreads tree,
1677 and it's intimately related to that tree, so it's not useful to
1678 install this. So don't install it.
1679
1680 * guile.m4: Moved to guile-config.
1681 * Makefile.am (aclocaldir, aclocal_DATA): Delete.
1682 (EXTRA_DIST): Move qthreads.m4 here.
1683
1684 Don't store generated files in the repository any more. Instead,
1685 require people to run autogen.sh on trees from snapshots and CVS.
1686 * Makefile.in, aclocal.m4, configure: Deleted.
1687 * autogen.sh: New file.
1688 * ANON-CVS, SNAPSHOTS: Updated instructions.
1689
1690 1999-10-02 Jim Blandy <jimb@zwingli.cygnus.com>
1691
1692 * acconfig.h (HAVE_POSIX, HAVE_NETWORKING): Add comments.
1693
1694 1999-09-27 Greg J. Badros <gjb@cs.washington.edu>
1695
1696 * configure.in: Added --enable-debug-freelist option.
1697
1698 * acconfig.h: Added GUILE_DEBUG_FREELIST.
1699
1700 1999-09-23 Gary Houston <ghouston@freewire.co.uk>
1701
1702 * acconfig.h: add HAVE_POSIX, HAVE_NETWORKING. remove FD_SETTER,
1703 FILE_CNT_FIELD, FILE_CNT_GPTR, FILE_CNT_READPTR.
1704
1705 * configure.in: new options --disable-posix, --disable-net
1706 and --disable-regex
1707 export HAVE_POSIX and HAVE_NETWORKING definitions.
1708 don't add regex-posix.o to LIBOBJS if regex disabled.
1709
1710 LIBOBJS: add filesys.c, posix.c, net_db.c, socket.c,
1711 conditionally.
1712
1713 1999-09-25 Jim Blandy <jimb@savonarola.red-bean.com>
1714
1715 * Guile 1.3.4 released.
1716
1717 1999-09-22 Jim Blandy <jimb@savonarola.red-bean.com>
1718
1719 * configure.in: Call AM_PROG_CC_STDC before AM_PROG_LIBTOOL, so
1720 libtool knows how to get ANSI C behavior from the compiler.
1721 * configure: Regenerated.
1722
1723 1999-09-20 Gary Houston <ghouston@freewire.co.uk>
1724
1725 * configure.in: check availability of siginterrupt.
1726
1727 1999-09-18 Gary Houston <ghouston@freewire.co.uk>
1728
1729 * configure.in: use AC_SYS_RESTARTABLE_SYSCALLS instead of
1730 testing for SA_RESTART.
1731
1732 1999-09-12 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
1733
1734 * configure.in: Removed ice-9/version.scm from AC_OUTPUT.
1735
1736 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
1737
1738 * configure.in (GUILE_STAMP): Don't set this variable, or
1739 substitute it into anything. Full explanation in ice-9/ChangeLog.
1740 * configure, Makefile.in: Regenerated.
1741
1742 1999-09-06 James Blandy <jimb@mule.m17n.org>
1743
1744 Propagate the changes of 2 Sept the rest of the way through.
1745 * configure: Regenerated.
1746 * Makefile.in: Regenerated. Not sure why this diff is so big.
1747
1748 1999-09-02 Jim Blandy <jimb@savonarola.red-bean.com>
1749
1750 * acinclude.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): Fix typo in
1751 variable name. (Thanks to Bill Schottstaedt.)
1752 * aclocal.m4: Regenerated.
1753
1754 1999-09-02 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
1755
1756 * configure.in: Test for presence of function on_exit.
1757
1758 1999-09-01 James Blandy <jimb@mule.m17n.org>
1759
1760 * configure.in: Use AC_REPLACE_FUNCS to grab libguile/memmove.c if
1761 the system doesn't have memmove. Don't test for memmove and bcopy
1762 with AC_CHECK_FUNCS.
1763 * configure: Regenerated.
1764
1765 1999-08-30 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
1766
1767 * configure.in: Test for atexit.
1768
1769 1999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1770
1771 * acinclude.m4: Updated. (Thanks to Karl Eichwalder.)
1772
1773 * configure.in: Test for presence of S_ISLNK in sys/stat.h.
1774 (Thanks to Bernard Urban.)
1775 Test for memmove and bcopy. (Thanks to
1776 suzukis@file.phys.tohoku.ac.jp.)
1777
1778 * acconfig.h: Added HAVE_S_ISLNK.
1779
1780 1999-08-20 James Blandy <jimb@mule.m17n.org>
1781
1782 * Guile 1.3.2 released.
1783
1784 * Makefile.in: Regenerated.
1785
1786 1999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1787
1788 * README, config.guess, config.sub, liconfig, ltmain.sh: Switched
1789 to libtool-1.3.3.
1790
1791 1999-07-22 Marius Vollmer <mvo@zagadka.ping.de>
1792
1793 Added guile-readline subdirectory with the removed readline
1794 support.
1795 * guile-readline: New directory, see ChangeLog there.
1796 * configure.in: Cause configure to descend into guile-readline
1797 dir.
1798 * Makefile.am: Likewise for make.
1799 * NEWS: Explain how to activate the readline support.
1800 * configure, Makefile.in: Regenerated.
1801
1802 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
1803
1804 Fixes for EMX from Mikael Ståldal.
1805
1806 * configure.in: Check for <io.h>.
1807 * configure: Regenerated.
1808
1809 1999-07-18 Jim Blandy <jimb@savonarola.red-bean.com>
1810
1811 * qthreads.m4 (QTHREADS_CONFIGURE): 'alpha' in a configuration
1812 name can have suffixes, like alphaev56-unknown-linux-gnu.
1813 * aclocal.m4, configure: Rebuilt.
1814 (Thanks to Sebastien Villemot.)
1815
1816 1999-07-04 Gary Houston <ghouston@easynet.co.uk>
1817
1818 * configure.in: don't check for ways to violate stdio abstraction.
1819
1820 1999-05-02 Jim Blandy <jimb@savonarola.red-bean.com>
1821
1822 * configure.in (AC_CHECK_FUNCS): Fill in list of functions that
1823 libguile/net_db.h wants to use. (Add setprotoent, setservent.)
1824
1825 1999-04-17 Jim Blandy <jimb@savonarola.red-bean.com>
1826
1827 Remove all automatic readline support, to avoid copyright
1828 confusion.
1829 * INSTALL: Update text.
1830 * NEWS: Explain the situation.
1831 * configure.in: Remove configury for readline and its supporting
1832 libraries.
1833 * configure: Regenerated.
1834
1835 * README: Change URL's for automake and autoconf.
1836
1837 * Makefile.in, configure: Regenerated with autoconf 2.13, automake
1838 1.4, libtool 1.2f (1.385 1999/03/15 17:24:54). I've upgraded to
1839 all the right tools, according to README, but I'm still getting
1840 different results than Mikael is. Hmm.
1841
1842 1999-03-22 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1843
1844 * New libtool: 1.2f
1845 * ltmain.sh, ltconfig, config.guess, config.sub: New versions.
1846 * README: Mention new version number of libtool.
1847
1848 1999-03-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1849
1850 New automake: 1.4
1851 * config.guess, config.sub, install-sh, mdate-sh, missing,
1852 mkinstalldirs: New versions.
1853 * Makefile.in, aclocal.m4, configure: Regenerated.
1854 * README: Mention new version numbers on autoconf and automake.
1855
1856 1999-02-12 Jim Blandy <jimb@savonarola.red-bean.com>
1857
1858 * configure.in: Add --with-readline flag.
1859 * configure: Rebuilt.
1860
1861 1999-02-09 Maciej Stachowiak <mstachow@alum.mit.edu>
1862
1863 * NEWS: Added entry for optargs module.
1864
1865 1999-02-06 Jim Blandy <jimb@zwingli.cygnus.com>
1866
1867 * configure: Regenerated using autoconf 2.12.
1868
1869 1999-01-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1870
1871 * configure.in: Removed test AC_C_BIGENDIAN. (This test was
1872 considered to encourage bad coding style.)
1873
1874 1999-01-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1875
1876 * configure.in: Added test AC_C_BIGENDIAN.
1877
1878 1999-01-11 Jim Blandy <jimb@zwingli.cygnus.com>
1879
1880 * configure.in: Remove quotes around ac_cv_lib_readline_main and
1881 ac_cv_var_rl_getc_function. They should both always be set to
1882 non-null values; this way, we get error messages.
1883 * configure: Regenerated.
1884
1885 1999-01-10 Jim Blandy <jimb@savonarola.red-bean.com>
1886
1887 * configure.in: Cite the variable ac_cv_lib_readline_main, not
1888 ac_cv_lib_readline_readline; the latter isn't set any more, since
1889 we look for 'main' in libreadline now. Add quotes around
1890 reference to the variable references, too, so this will work even
1891 when a variable's value is the empty string.
1892 * configure: Regenerated.
1893
1894 1999-01-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1895
1896 * acconfig.h: Added HAVE_LONG_LONGS.
1897
1898 * configure.in: Added AC_CHECK_SIZEOF(long), AC_CHECK_SIZEOF(int);
1899 Added check for long longs.
1900
1901 1998-12-14 Jim Blandy <jimb@zwingli.cygnus.com>
1902
1903 * configure.in: Check for tgoto in ncurses, then termcap.
1904 S.u.S.E. Linux doesn't have a termcap. (Thanks to Karl
1905 Eichwalder.)
1906 * configure: Regenerated.
1907
1908 1998-10-24 Jim Blandy <jimb@zwingli.cygnus.com>
1909
1910 * configure.in: Call AM_PROG_CC_STDC, to see what flags we should
1911 pass the compiler to make it support ANSI. (Thanks to Bernard
1912 Urban.)
1913 * aclocal.m4, configure: Regenerated.
1914
1915 1998-10-20 Jim Blandy <jimb@zwingli.cygnus.com>
1916
1917 * Guile 1.3 released.
1918
1919 1998-10-19 Jim Blandy <jimb@zwingli.cygnus.com>
1920
1921 * GUILE-VERSION: Bump to 1.3.
1922
1923 * Makefile.am (EXTRA_DIST): Don't omit ANON-CVS and SNAPSHOTS.
1924 * Makefile.in: Regenerated.
1925
1926 1998-10-16 Jim Blandy <jimb@zwingli.cygnus.com>
1927
1928 * qthreads.m4 (QTHREADS_CONFIGURE): On NetBSD, pass through a flag
1929 to the Makefile which explicitly tells it to pass assembly files
1930 through the preprocessor. (Thanks to Perry Metzger.)
1931 * aclocal.m4, configure, Makefile.in: Regenerated.
1932
1933 1998-10-14 Jim Blandy <jimb@zwingli.cygnus.com>
1934
1935 * configure.in: Define SCM_SINGLES whenever a float can fit in a
1936 long, not only when a float is the same size as a long. This gets
1937 us SCM_SINGLES defined on alphas. (Thanks to Clark McGrew.)
1938 * configure: Regenerated.
1939
1940 * configure.in: Construct libguile/versiondat.h here; see
1941 log entry in libguile/ChangeLog for details.
1942 * configure: Regenerated.
1943
1944 * configure.in: Allow tabs and whitespace between `void' and
1945 `usleep'. (Thanks to Harvey J. Stein.)
1946 * configure: Regenerated.
1947
1948 Don't redefine sleep/usleep.
1949 * configure.in: Remove tests for usleep's argument type; we only
1950 need that if we're going to replace it.
1951
1952 * acconfig.h (USLEEP_ARG_TYPE): Delete. All the other SLEEP
1953 garbage is needed just to use usleep and sleep without compiler
1954 warnings.
1955 * configure: Regenerated.
1956
1957 1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
1958
1959 * configure: Regenerated.
1960
1961 * configure.in (GUILE_FUNC_DECLARED): Name the cache variables
1962 starting with guile_cv_; ac_cv_ is autoconf's namespace.
1963
1964 The type of the argument to usleep varies from system to system,
1965 as does the return type. We really shouldn't be redefining usleep
1966 at all, but I don't have time to clean that up before the 1.3
1967 release. It's on the schedule for afterwards.
1968 * configure.in: Cache results from usleep return value test.
1969 Test for the type of the usleep argument, and cache that too.
1970 * acconfig.h (USLEEP_ARG_TYPE): New macro.
1971
1972 1998-10-11 Jim Blandy <jimb@zwingli.cygnus.com>
1973
1974 * acconfig.h (HAVE_RL_GETC_FUNCTION): Fix this entry.
1975
1976 1998-10-10 Jim Blandy <jimb@zwingli.cygnus.com>
1977
1978 * GUILE-VERSION: bump to 1.2.91, since we're doing snapshots again.
1979
1980 * Guile 1.2.90 released --- beta.
1981 * GUILE-VERSION: Set to 1.2.90. This would appear to be a
1982 regression from 1.3a, but everyone knows that the next release is
1983 1.3, I want to switch to a more coherent version numbering system,
1984 and now is the time.
1985
1986 1998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
1987
1988 * configure.in: Call AC_C_INLINE, so we can use inline happily in
1989 libguile.
1990 * configure: Regenerated.
1991
1992 1998-10-07 Jim Blandy <jimb@zwingli.cygnus.com>
1993
1994 * configure.in: Don't forget to #define HAVE_RL_GETC_FUNCTION if
1995 we do find the rl_getc_function variable in the readline library;
1996 AC_CHECK_FUNCS used to do this for us, but we're not using it any
1997 more.
1998 * acconfig.h: Add an entry for HAVE_RL_GETC_FUNCTION.
1999
2000 * configure.in: Properly test for the presence of rl_getc_function;
2001 it's a variable, not a function.
2002 * configure: Regenerated.
2003
2004 * doc: New subdirectory.
2005 * Makefile.am (SUBDIRS): List it.
2006 * configure.in (AC_OUTPUT): Build its Makefile.
2007 * configure, Makefile.in: Regenerated.
2008
2009 * guile.m4 (GUILE_FLAGS): New macro.
2010
2011 * guile.m4 (AM_INIT_GUILE_MODULE): Deleted; it doesn't do anything
2012 terribly helpful any more, nobody's using it, and this is not
2013 really the way I want to handle modules anyway.
2014
2015 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
2016
2017 * configure.in (FD_SETTER, FILE_CNT_GPTR): New cases for SCO's
2018 stdio implementation. (Thanks to David Tillman.)
2019 * configure: Rebuilt.
2020
2021 * guile-config: Renamed from `build'.
2022 * Makefile.am (SUBDIRS): Mention `guile-config', not `build'.
2023 * configure.in: Create `guile-config/Makefile.in', not
2024 `build/Makefile.in'. Doc fix, too.
2025
2026 * qthreads.m4: Doc fix.
2027 * Makefile.in, aclocal.m4, configure: Regeneranegerederadea.
2028
2029 1998-10-03 <jimb@savonarola.red-bean.com>
2030
2031 * configure.in: Check for a missing `sleep' declaration.
2032 * acconfig.h (MISSING_SLEEP_DECL): Provide some text for this.
2033 * configure: Regenerated.
2034
2035 * configure.in: Don't use the canonical host name to decide
2036 whether `bzero' and `usleep' have declarations --- that's going
2037 back to the bad old days before autoconf. Remove the call to
2038 AC_CANONICAL_HOST and the subsequent case statement.
2039 (GUILE_FUNC_DECLARED): New m4 macro. Use it to check for
2040 declarations for `bzero', `usleep', and (new!) `strptime'.
2041 * acconfig.h: (DECLARE_BZERO, DECLARE_USLEEP): Removed.
2042 (MISSING_BZERO_DECL, MISSING_USLEEP_DECL, MISSING_STRPTIME_DECL):
2043 Added. I think this naming convention is more consistent with the
2044 rest of autoconf; names generally describes the system, not what
2045 the package should do to accomodate the system.
2046 * configure: Regenerated.
2047
2048 1998-09-05 Jim Blandy <jimb@zwingli.cygnus.com>
2049
2050 * configure.in: Remove --disable-debug option. The debugging
2051 support is pretty stable now, and it's confusing people.
2052 * configure: Regenerated.
2053
2054 * HACKING: Remove -Wstrict-prototypes from the list of requested
2055 flags (to match 1998-07-30 change).
2056
2057 1998-07-30 Jim Blandy <jimb@zwingli.cygnus.com>
2058
2059 * configure.in: Don't use -Wstrict-prototypes after all.
2060 * configure: Regenerated.
2061
2062 1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
2063
2064 * configure.in: Request more warnings.
2065 * configure: Regenerated.
2066 * HACKING: Ask people not to make changes that introduce those
2067 warnings. Now I have to go through the code and actually bring it
2068 up to standards... :(
2069
2070 * Makefile.in, aclocal.m4, configure: Regenerated using the last
2071 public version of automake, not the hacked Cygnus version.
2072 * config.guess, config.sub, ltconfig, ltmain.sh: New versions from
2073 libtool.
2074
2075 * configure.in, qthreads.m4: Display a message about how the
2076 threads configuration went.
2077 * aclocal.m4, configure: Regenerated.
2078
2079 1998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
2080
2081 Remove the TOTORO kludge. We're not doing snapshots any more, so
2082 totoro is completely uninvolved. (Poor Totoro!)
2083 * configure.in: Remove code to check the hostname and #define
2084 TOTORO.
2085 * acconfig.h: Remove comments for TOTORO symbol.
2086 * configure, Makefile.in: Regenerated.
2087
2088 * qthreads.m4 (QTHREADS_CONFIGURE): We *can* use AC_REQUIRE here
2089 to get AC_PROG_LN_S.
2090 * aclocal.m4, configure: Regenerated.
2091
2092 1998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
2093
2094 Clean up thread configuration.
2095 * qthreads.m4: New file, which knows how to configure the qthreads
2096 library.
2097 * configure.in: Replace all thread package selection code. Do the
2098 --with-threads argument processing here. Enable the appropriate
2099 thread interface files in libguile. Remove all qthreads
2100 configuration code; call QTHREADS_CONFIGURE instead. Set
2101 GUILE_LIBS using the info provided by QTHREADS_CONFIGURE.
2102 * threads.m4: Removed; not used any more.
2103 * Makefile.am (aclocal_DATA): Mention qthreads.m4, not threads.m4.
2104 * Makefile.in, aclocal.m4, configure: Rgnrtd. (Sv th vwls!)
2105 Note that these were regenerated with the tools available from
2106 Cygnus's source tree, which have patches not available to the
2107 general public. I'm not sure this was a good idea; feel free to
2108 revert them to the latest released versions of the tools.
2109
2110 Upgrade to the version of libtool available at Cygnus. See note
2111 above.
2112 * config.guess, config.sub, ltconfig, ltmain.sh: Upgraded.
2113
2114 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2115
2116 * configure.in: Changed variable HOSTNAME --> PROG_HOSTNAME in
2117 totoro kludge.
2118
2119 Sat Jul 11 21:54:29 1998 Mikael Djurfeldt <mdj@totoro.red-bean.com>
2120
2121 * acconfig.h, configure.in: Define TOTORO if configuring on
2122 totoro.red-bean.com.
2123
2124 * configure.in: Check for strdup.
2125
2126 1998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2127
2128 * configure.in: Check for rl_cleanup_after_signal.
2129
2130 1998-05-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2131
2132 * configure.in: Added test for rl_getc_function. Warn if
2133 libreadline is found but not this function.
2134
2135 1998-05-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2136
2137 * configure.in: Replaced some AC_CHECK_FUNC --> AC_CHECK_FUNCS so
2138 that suitable HAVE_<function name> symbols get defined.
2139
2140 1998-04-25 Mikael Djurfeldt <mdj@kenneth>
2141
2142 * configure.in: Define USLEEP_RETURNS_VOID on some systems.
2143 (Thanks to Julian Satchell.)
2144
2145 1998-04-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2146
2147 * configure.in: Check for usleep; Define DECLARE_BZERO and
2148 DECLARE_USLEEP on Solaris 2.5 since it supplies those functions
2149 without declaring them.
2150
2151 * acconfig.h: Added DECLARE_BZERO, DECLARE_USLEEP
2152
2153 1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2154
2155 * configure.in: Define HAVE_DLOPEN also when HAVE_LIBDL is
2156 defined.
2157
2158 1998-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2159
2160 * configure.in (GUILE_LIBS): New variable. Contains libraries
2161 which libguile needs to be linked with. Substituted into
2162 libpath.h.
2163
2164 * threads.m4 (threads_package): Don't add $LDFLAGS and $LIBS to
2165 $cy_cv_threads_libs.
2166
2167 1998-04-11 Mikael Djurfeldt <mdj@kenneth>
2168
2169 New libtool: 1.2
2170 * ltconfig, ltmain.sh, config.sub, config.guess: Updated.
2171 New automake: 1.3
2172 * Makefile.in, aclocal.m4, configure: Regenerated.
2173 * README: Mention new version numbers on libtool and automake.
2174
2175 1997-12-11 Tim Pierce <twp@skepsis.com>
2176
2177 * HACKING: Note that SSH is mandatory for CVS access.
2178
2179 Sun Dec 7 06:11:24 1997 Gary Houston <ghouston@actrix.gen.nz>
2180
2181 * README: using Automake 1.2d
2182 * configure.in: AC_CHECK_FUNCS: add "system".
2183
2184 1997-12-01 Tim Pierce <twp@skepsis.com>
2185
2186 * acconfig.h: Add USCORE.
2187
2188 1997-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2189
2190 * configure.in: Added code to enable GUILE_ISELECT on systems
2191 which have the necessary functions (gettimeofday, select).
2192
2193 * acconfig.h: Added GUILE_ISELECT.
2194
2195 1997-11-24 Tim Pierce <twp@twp.tezcat.com>
2196
2197 * acinclude.m4: Assume dlsym does not add underscore if
2198 cross-compiling.
2199 * aclocal.m4, configure: Regenderated.
2200
2201 1997-11-21 Tim Pierce <twp@twp.tezcat.com>
2202
2203 * acinclude.m4 (GUILE_DLSYM_USCORE): New macro, thanks Dan Hagerty
2204 <hag@ai.mit.edu>.
2205 * configure.in: Use it.
2206 * configure: Regenerated.
2207 * acconfig.h (DLSYM_ADDS_USCORE): New #define.
2208
2209 1997-10-26 Mikael Djurfeldt <mdj@nada.kth.se>
2210
2211 * README (libtool): Tell people to use version 1.0e.
2212
2213 Sat Oct 25 02:50:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
2214
2215 Call the QuickThreads library libqthreads.a, not libqt.a. The old
2216 name conflicts with the Qt user interface toolkit.
2217 * threads.m4 (CY_AC_WITH_THREADS): Use new library name.
2218 * configure.in: Same.
2219 * aclocal.m4, configure: Regenerated.
2220
2221 Thu Oct 23 00:58:06 1997 Jim Blandy <jimb@totoro.red-bean.com>
2222
2223 * configure.in: Check for the readline library, and the termcap
2224 library (on which readline relies).
2225 * configure: Regenerated.
2226
2227 Wed Oct 22 16:55:57 1997 Jim Blandy <jimb@totoro.red-bean.com>
2228
2229 New libtool: 1.0e
2230 * ltconfig, ltmain.sh, config.sub, config.guess: Updated.
2231 * configure, aclocal.m4: Regenerated.
2232
2233 1997-10-02 Marius Vollmer <mvo@zagadka.ping.de>
2234
2235 Make dynamic linking work on Dec Unix. (Thanks to Clark McGrew)
2236 * configure.in: Check whether dlopen can be found without -ldl.
2237
2238 Mon Sep 29 23:52:52 1997 Jim Blandy <jimb@totoro.red-bean.com>
2239
2240 * Makefile.in: Regenerated with automake 1.2c.
2241
2242 Sat Sep 27 23:01:58 1997 Jim Blandy <jimb@totoro.red-bean.com>
2243
2244 * Makefile.am: Add new `build' subdirectory to SUBDIRS.
2245 * configure.in: Add build/Makefile to AC_OUTPUT clause.
2246 * Makefile.in, configure: Regenerated.
2247
2248 * Makefile.in, aclocal.m4: Regenerated with automake 1.2a.
2249
2250 Tue Sep 16 00:19:46 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2251
2252 * README, ltconfig, ltmain.sh: New libtool: 1.0c.
2253
2254 Thu Sep 11 11:28:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2255
2256 * ltmain.sh: Added a missing '\' before \n on line 32.
2257
2258 Thu Aug 28 23:40:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
2259
2260 New libtool: 1.0b.
2261 * ltconfig, ltmain.sh, config.guess: Freshly libtoolized.
2262 * Makefile.in, aclocal.m4, configure: Regenerated, salamander-style.
2263
2264 Wed Aug 27 11:35:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
2265
2266 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
2267
2268 * configure.in: Use the QuickThreads assembler fragment with Irix
2269 dynamic linking support for Irix 6 as well as Irix 5. Thanks to
2270 Jesse Glick.
2271 * configure: Regenerated.
2272
2273 Sun Aug 24 15:51:12 1997 Mikael Djurfeldt <mdj@kenneth>
2274
2275 * acinclude.m4 (GUILE_NAMED_CHECK_FUNC): New macro: Tagged test,
2276 so that test for the same function can be performed multiple
2277 times.
2278
2279 * configure.in (AC_CHECK_HEADERS): Test for rxposix.h,
2280 rx/rxposix.h. Add library rx only if regcomp can't be found
2281 without it.
2282
2283 * acconfig.h (HAVE_REGCOMP): Added it here since autoheader misses
2284 it for some reason!
2285
2286 Fri Aug 22 21:21:49 1997 Jim Blandy <jimb@totoro.red-bean.com>
2287
2288 * THANKS: New file.
2289 * Makefile.in, aclocal.m4, configure: Regenerated.
2290
2291 Wed Jul 23 20:24:27 1997 Mikael Djurfeldt <djurf@zafir.e.kth.se>
2292
2293 * configure.in: Added thread support for the alpha architecture.
2294 configure: Regenerated.
2295
2296 Thu Jul 17 07:56:05 1997 Gary Houston <ghouston@actrix.gen.nz>
2297
2298 * configure.in: use AC_CHECK_FUNCS for sethostent etc.,
2299 so scmconfig.h is updated with the test results. this may
2300 disable one of the cygwin hacks.
2301
2302 Fri Jul 11 00:18:19 1997 Jim Blandy <jimb@floss.red-bean.com>
2303
2304 Changes to compile under gnu-win32, from Marcus Daniels:
2305 * configure.in: When sys/un.h exists, define HAVE_UNIX_DOMAIN_SOCKETS
2306 to indicate that Unix domain sockets will work.
2307 Check for socketpair, getgroups, setwent, pause, and tzset
2308 (cygwin currently lacks these them).
2309 Check for sethostent endhostent getnetent setnetent endnetent
2310 getprotoent endprotoent getservent endservent getnetbyaddr
2311 getnetbyname inet_lnaof inet_makeaddr inet_netof (cygwin currently
2312 lacks them). In the case of cygwin, temporarily prefix these
2313 functions with "cygwin32_", the way that netdb.h does.
2314 Don't define HAVE_REGCOMP unless both regcomp and regex.h are
2315 available (cygwin b18 came distributed without a working regex.h
2316 file).
2317 * acconfig.h (HAVE_UNIX_DOMAIN_SOCKETS): Add this.
2318 * configure: Regenerated.
2319
2320 Wed Jul 2 12:28:40 1997 Tim Pierce <twp@twp.tezcat.com>
2321
2322 * ltmain.sh: Remove any trailing colon on $shlibpath_var
2323 (i.e. LD_LIBRARY_PATH) for braindamaged linkers that choke on it.
2324 Patch sent to bug-libtool.
2325
2326 Sat Jun 28 16:13:43 1997 Tim Pierce <twp@twp.tezcat.com>
2327
2328 * configure.in: Add alloca.o explicitly to LIBOBJS (thanks Eric
2329 Backus for reporting this problem and suggesting a fix).
2330 * configure: Regenerated.
2331
2332 Thu Jun 26 20:43:31 1997 Jim Blandy <jimb@floss.red-bean.com>
2333
2334 * Guile 1.2 released.
2335
2336 * configure.in: Check for librx after libm; fundamentals need to
2337 come first.
2338 * configure: Regenerated.
2339
2340 Tue Jun 24 13:34:20 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
2341
2342 * aclocal.m4 (AM_PATH_PROG_LD): Change `ac_cv_path_LD' typo to
2343 `am_cv_path_LD'.
2344 * configure: Regenerated.
2345
2346 Sun Jun 22 15:43:07 1997 Jim Blandy <jimb@floss.red-bean.com>
2347
2348 Try to detect when people are using one version of libguile and a
2349 different version of ice-9. People have been skewing things and
2350 sending in bug reports.
2351 * configure.in: Provide libguile its version information through a
2352 separate header file generated by the Makefile, not through
2353 scmconfig.h.
2354 (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION, GUILE_VERSION):
2355 AC_SUBST these, instead of AC_DEFINE'ing them.
2356 (GUILE_STAMP): New AC_SUBST: the time we configured the tree.
2357 (AC_OUTPUT): Create ice-9/version.scm.
2358 * acconfig.h (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION,
2359 GUILE_VERSION): Deleted.
2360 * Makefile.in: Regenerated.
2361
2362 * aclocal.m4: Regenerated, using the libtool 0.9h m4 macros.
2363
2364 * Makefile.am (EXTRA_DIST): Include acconfig.h in the
2365 distribution.
2366 * Makefile.in: Regenerated.
2367
2368 Sat Jun 21 00:14:07 1997 Jim Blandy <jimb@floss.red-bean.com>
2369
2370 * ltmain.sh (line 1191): Don't forget 'test' in if statement.
2371
2372 * ltconfig, ltmain.sh: libtoolized, using libtool 0.9h.
2373
2374 Wed Jun 11 00:34:01 1997 Jim Blandy <jimb@floss.red-bean.com>
2375
2376 * ltconfig, ltmain.sh, config.guess: New files from libtool 0.9g.
2377
2378 * configure.in: By default, include functions in Guile to allow
2379 linking with dynamic libraries at run-time. In other words,
2380 --enable-dynamic-linking is now the default.
2381 * configure: Rebuilt.
2382
2383 * configure.in: Remove space between AC_CHECK_LIB and opening
2384 paren in check for Rx.
2385 * configure: Regenerated.
2386
2387 * configure.in: Remove all mention of xtra_PLUGIN_guile_libs.
2388 It's never used.
2389 * configure, Makefile.in: Regenerated.
2390
2391 Tue Jun 10 23:37:12 1997 Jim Blandy <jimb@floss.red-bean.com>
2392
2393 * configure.in: Move checks for libraries (-lm, -lnsl, -lsocket,
2394 -dl, -dld) before checks for functions.
2395 * configure: Regenerated.
2396
2397 Mon Jun 9 02:35:46 1997 Tim Pierce <twp@twp.tezcat.com>
2398
2399 * config.guess: New copy from autoconf-2.12, which recognizes
2400 OpenBSD.
2401
2402 Tue Jun 3 16:34:19 1997 Jim Blandy <jimb@totoro.cyclic.com>
2403
2404 * configure.in: Check for Rx, so we will use its routines (which I
2405 pretty much trust) if it is installed.
2406 * configure: Regenerated.
2407
2408 Sat May 31 03:48:45 1997 Gary Houston <ghouston@actrix.gen.nz>
2409
2410 * acconfig.h: mention HAVE_RESTARTS.
2411 * configure.in: check for sigaction and restartable system calls.
2412
2413 Tue May 27 22:47:52 1997 Tim Pierce <twp@twp.tezcat.com>
2414
2415 * configure.in: Check for presence of regcomp.
2416 * configure: Regenerated.
2417
2418 Mon May 26 12:14:20 1997 Jim Blandy <jimb@floss.cyclic.com>
2419
2420 * COPYING: New address for FSF.
2421
2422 * configure.in: We don't need to add fileblocks.o to LIBOBJS if
2423 struct stat doesn't have the st_blocks field. We take care of
2424 that case in the code. Replace AC_STRUCT_ST_BLOCKS with its
2425 definition, edited appropriately. (Bernard URBAN)
2426 * configure: Regenerated.
2427
2428 Sat May 17 13:49:28 1997 Jim Blandy <jimb@floss.cyclic.com>
2429
2430 * configure.in: Don't link against -lnsl or -lsocket unless we
2431 actually need to. This causes trouble on Irix. (Thanks to Larry
2432 Schwimmer.)
2433
2434 * config.sub: Get newer version, that recognizes the i686.
2435
2436 Fri May 16 17:26:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
2437
2438 * README: Changed Mikael's threads work attribution in order
2439 to sooth Anthony's enormous, but wounded, ego.
2440
2441 Fri May 16 17:26:53 1997 Jim Blandy <jimb@totoro.cyclic.com>
2442
2443 Just kidding!!!
2444
2445 Fri May 16 04:24:48 1997 Jim Blandy <jimb@floss.cyclic.com>
2446
2447 Guile 1.1 released.
2448 * GUILE-VERSION: Bump to 1.1.
2449
2450 Tue May 13 16:34:40 1997 Jim Blandy <jimb@floss.cyclic.com>
2451
2452 Switch to automake-1.1p.
2453 * Makefile.in, aclocal.m4, configure: Regenerated.
2454
2455 Mon May 12 18:29:45 1997 Jim Blandy <jimb@floss.cyclic.com>
2456
2457 * threads.m4: Copy Anthony's change here, so it'll actually
2458 survive.
2459
2460 Thu May 8 11:48:40 1997 Anthony Green <green@hoser.cygnus.com>
2461
2462 * aclocal.m4: Fixes for building with coop threads in a
2463 seperate compilation directory.
2464 * configure: Rebuilt.
2465
2466 Fri May 2 16:24:15 1997 Jim Blandy <jimb@floss.cyclic.com>
2467
2468 Upgrade to libtool 0.9e.
2469 * ltconfig, ltmain.sh, config.guess, config.sub: New versions,
2470 supplied by libtool.
2471
2472 * configure.in: When configuring qt, sunos needs the underscore
2473 files; Solaris and Linux both need the normal files.
2474 * configure: Reebilt.
2475
2476 Thu May 1 15:35:49 1997 Jim Blandy <jimb@floss.cyclic.com>
2477
2478 * configure.in: Get the paths for qt's md files right, so it can
2479 build correctly when using a separate compilation directory.
2480 * configure: Regenerated.
2481
2482 Thu Apr 24 01:20:34 1997 Jim Blandy <jimb@floss.cyclic.com>
2483
2484 Get threads to work again.
2485 * Makefile.am (SUBDIRS): List libguile last, so qt gets built
2486 first.
2487 * Makefile.in: Regenerated.
2488 * aclocal.m4, configure: Regenerate, with modern definition of
2489 CY_AC_WITH_THREADS. Where did the old text come from? Creepy...
2490
2491 Reduced Guile distribution: one configure script, no plugins.
2492 * configure.in: Merged the old text from qt/configure.in and
2493 libguile/configure.in; Tom Tromey says automake only wants one
2494 configure.in script. This seems fishy, but...
2495 * Makefile.am: List the subdirectories explicitly; no more PLUGIN
2496 gubbish.
2497 * acconfig.h, acinclude.m4: Moved here from libguile, since
2498 libguile's configure script lives here now.
2499 * AUTHORS, INSTALL, README: Updated.
2500 * Makefile.in, aclocal.m4 configure: Regenerated. Just like
2501 amputated amphibian limbs.
2502
2503 Tue Apr 22 16:57:38 1997 Jim Blandy <jimb@totoro.cyclic.com>
2504
2505 * newdoc/ref/Makefile.am (dist_texis): Distribute the index files.
2506 * newdoc/ref/Makefile.in: Regenerated.
2507
2508 Mon Apr 14 18:51:25 1997 Jim Blandy <jimb@floss.cyclic.com>
2509
2510 * threads.m4 (CY_AC_WITH_THREADS): When using coop threads, no
2511 need to link against libthreads; the files it used to contain
2512 are now a part of libguile.
2513
2514 Sun Apr 13 22:14:10 1997 Jim Blandy <jimb@floss.cyclic.com>
2515
2516 * guile.m4: Revert change of Mar 15, and use the new 'no-define'
2517 argument to the AM_INIT_AUTOMAKE macro.
2518
2519 Fri Apr 11 15:43:07 1997 Jim Blandy <jimb@totoro.cyclic.com>
2520
2521 * ltconfig, ltmain.sh: Upgraded libtool files to 0.9d.
2522 * README: Say where to find libtool 0.9d.
2523
2524 Wed Apr 9 17:51:13 1997 Jim Blandy <jimb@floss.cyclic.com>
2525
2526 Changes to work with automake-1.1n, which has better libtool
2527 support. Also use libtool 0.8.
2528 * README: Note new version numbers for automake and libtool.
2529 * missing: New file required by new automake.
2530 * Makefile.in: Regenerated.
2531
2532 Sat Apr 5 16:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
2533
2534 * newdoc/ref/scheme.texi (set-object-property!): Fix function name.
2535
2536 * Makefile.am: Omit doc subtree.
2537 * configure.in: Omit makefiles in doc subtree.
2538 * Makefile.in, configure: Rebuilt.
2539
2540 Sat Mar 15 01:11:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2541
2542 * guile.m4 (AM_INIT_GUILE_MODULE): Replaced AM_INIT_AUTOMAKE macro
2543 with its definition and commented out definition of PACKAGE. This
2544 changed seemed necessary after having removed PACKAGE from
2545 libguile/acconfig.h.
2546
2547 Mon Feb 24 21:43:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2548
2549 * ltconfig, ltmain.sh: New versions from libtool-0.9.
2550
2551 * configure.in: Added AM_MAINTAINER_MODE
2552
2553 Fri Feb 7 17:57:46 1997 Jim Blandy <jimb@floss.cyclic.com>
2554
2555 * config.sub, config.guess: New versions, that handle i686, etc.
2556
2557 Thu Jan 23 07:06:15 1997 Mark Galassi <rosalia@papageno.lanl.gov>
2558
2559 * newdoc/tutorial/guile-tut.texi: started checking in the Guile
2560 tutorial rewrite, but have not merged much into it yet.
2561
2562 Tue Jan 21 17:28:40 1997 Mark Galassi <rosalia@sarastro.lanl.gov>
2563
2564 * newdoc/ref/guile-ref.texi: started checking in parts of the
2565 reference manual re-write.
2566
2567 Sat Jan 11 14:40:17 1997 Marius Vollmer <mvo@zagadka.ping.de>
2568
2569 * ltconfig, ltmain.sh: New files for libtool support. libguile,
2570 rx, gh and gtcltk-lib can now be build as shared libraries.
2571 * Makefile.am (EXTRA_DIST): Added ltconfig and ltmain.sh
2572
2573 Sun Jan 5 16:57:10 1997 Jim Blandy <jimb@floss.cyclic.com>
2574
2575 * Guile 1.0 released. This is the first release by the Free
2576 Software Foundation; Cygnus has also released earlier versions of
2577 Guile.
2578
2579 * GUILE-VERSION: Updated version number.
2580 * NEWS: Added comments for all the user-visible changes marked in
2581 the ChangeLogs.
2582 * README: Updated for release.
2583
2584 Thu Dec 12 00:14:32 1996 Gary Houston <ghouston@actrix.gen.nz>
2585
2586 * scsh: new directory.
2587
2588 Mon Dec 2 17:33:04 1996 Tom Tromey <tromey@cygnus.com>
2589
2590 * configure.in: Generate doc/guile-programmer/Makefile and
2591 doc/guile-user/Makefile.
2592
2593 Sat Nov 30 23:45:54 1996 Tom Tromey <tromey@cygnus.com>
2594
2595 * aclocal.m4: Now automatically generated by aclocal.
2596 * threads.m4: New file.
2597 * guile.m4: New file.
2598 * Makefile.am, doc/Makefile.am: New files.
2599 * configure.in: Updated for Automake. Avoid excessively verbose
2600 "greet" messages.
2601
2602 Wed Oct 16 07:32:14 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
2603
2604 * lgh: directory renamed to gh, along with all prefixes of the
2605 high level library procedures.
2606
2607 Thu Oct 10 14:37:43 1996 Jim Blandy <jimb@floss.cyclic.com>
2608
2609 * Makefile.in (TAGS tags): Find the source files in $srcdir.
2610
2611 Wed Oct 9 19:37:14 1996 Jim Blandy <jimb@floss.cyclic.com>
2612
2613 * Makefile.in (DISTFILES): Add AUTHORS and aclocal.m4.
2614
2615 Tue Oct 1 00:13:55 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2616
2617 * configure.in: Added some configuration magic from the Cygnus
2618 distribution.
2619
2620 * aclocal.m4: New file. For now used for thread support
2621 configuration.
2622
2623 Fri Sep 13 14:39:30 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
2624
2625 * Makefile.in (DISTFILES): added mkinstalldirs to the DISTFILES
2626
2627 * PLUGIN: changed the PLUGIN/REQ files in the ice-9 and lgh
2628 directories, to arrange for lgh to the last thing
2629 configured/built.
2630
2631 Wed Sep 11 21:11:33 1996 Mark Galassi <rosalia@nis.lanl.gov>
2632
2633 * lgh/: added the directory in which I implement the high level
2634 libguile library (lgh_) for this release of Guile. See the
2635 ChangeLog in there for further details.
2636
2637 Wed Sep 11 16:12:53 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
2638
2639 * doc/ (guile-user and guile-programmer): added the guile-user and
2640 guile-programmer directories which contain the user and programmer
2641 manuals. See the ChangeLog entries there for detail.
2642
2643 Wed Sep 11 14:33:49 1996 Jim Blandy <jimb@floss.cyclic.com>
2644
2645 * Makefile.in (distclean): Don't forget to delete doc/Makefile.
2646
2647 * Makefile.in (distclean): Don't forget to delete
2648 config.build-subdirs.
2649
2650 Thu Sep 5 17:36:15 1996 Jim Blandy <jimb@floss.cyclic.com>
2651
2652 * Makefile.in (tags): New name for `TAGS' target, which will
2653 always run the commands.
2654
2655 Thu Sep 5 09:56:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
2656
2657 * README: Doc fixes.
2658
2659 Fri Aug 30 16:56:27 1996 Jim Blandy <jimb@floss.cyclic.com>
2660
2661 * Makefile.in (TAGS): Produce a single tags file for all of Guile.
2662
2663 Thu Aug 15 19:03:03 1996 Jim Blandy <jimb@floss.cyclic.com>
2664
2665 * configure.in: Check for -ldl, so the check for Tcl won't fail
2666 spuriously.
2667
2668 Thu Aug 15 01:29:29 1996 Jim Blandy <jimb@totoro.cyclic.com>
2669
2670 Change the way we decide whether to build gtcltk-lib, so that it's
2671 omitted from the build process when appropriate, but never from
2672 the dist process.
2673 * configure.in: Don't edit all_subdirs depending on the
2674 availability of Tk; let that be the list of all PLUGIN
2675 subdirectories present, as it used to be. Instead, edit a new
2676 variable, build_subdirs; write its final value, the list of
2677 subdirs we do want to compile in, to config.build-subdirs.
2678 Substitute that into the top-level Makefile too.
2679 * Makefile.in (subdirs): Set this to @build_subdirs@, so we only
2680 recurse on the subdirectories we should build.
2681 (distdirs): Set this to @existingdirs@, so it includes the subdirs
2682 we decided not to build.
2683
2684 * doc/gtcltk.texi: File resurrected from old Guile releases.
2685 * doc/Makefile.in (info): Build the gtcltk documentation.
2686 (DIST_FILES): Include it in the distribution.
2687
2688 * configure.in: If we can find the library for tcl7.5, build
2689 gtcltk-lib. Call AC_PROG_CC, to help run that test with the right
2690 compiler (not sure this is necessary).
2691
2692 Mon Aug 12 15:09:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
2693
2694 * NEWS: Fix bug reporting address.
2695
2696 Fri Aug 9 15:58:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
2697
2698 * AUTHORS: New file, in accordance with the GNU maintainers'
2699 standards.
2700
2701 Tue Aug 6 14:40:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
2702
2703 * README: Renamed from ANNOUNCE; include bug report address,
2704 description, and short tour.
2705 * INSTALL: Renamed from BUILDING.
2706 * NEWS: New file.
2707 * Makefile.in (DISTFILES): Update appropriately.
2708
2709 Thu Aug 1 02:31:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
2710
2711 * doc/Makefile.in: Added pattern targets for creating DVI and
2712 PostScript files.
2713 (%.ps, %.dvi, %.txt): New targets.
2714 (DVIPS, TEXI2DVI): New variables.
2715
2716 * GUILE-VERSION: Updated to 1.0b3.
2717
2718 Rehashed distribution system, in preparation for nightly
2719 snapshots. Other changes in subdirectories.
2720 * Makefile.in (dist): Rewritten --- the old target was out of
2721 date, dependent on files that we don't have, and relied on GNU
2722 tar. The new target is simpler.
2723 (VERSION, srcdir, dist_dirs): New variables.
2724 (DISTFILES): Renamed from localfiles. Added GUILE-VERSION and
2725 TODO.
2726 (localtreats): Variable removed. We don't have this file.
2727 (info): cd to doc and make info there; don't make info in every
2728 ${subdir}; those Makefiles don't know what to do.
2729 (distname, distdir, treats, announcefile): Variables removed.
2730 (manifest-file): Target removed.
2731 (dist-dir): New target, responsible for distributable files in
2732 this directory.
2733 (GZIP, GZIP_EXT, TAR_VERBOSE, DIST_NAME): New variables,
2734 controlling the 'dist' target.
2735 * configure.in: Substitute GUILE-VERSION into the top-level
2736 Makefile. Build doc/Makefile from doc/Makefile.in.
2737
2738 * doc/Makefile.in: New file.