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