*** empty log message ***
[bpt/guile.git] / ChangeLog
1 2000-01-25 Marius Vollmer <mvo@zagadka.ping.de>
2
3 * autogen.sh: Call libtoolize. Pass --add-missing option to
4 automake. Do not decent into libltdl directory. The libltdl
5 directory is now populated by libtoolize and does not need any
6 further autogeneration.
7
8 2000-01-23 Gary Houston <ghouston@arglist.com>
9
10 * configure.in: check for fchown.
11
12 Tue Jan 18 12:55:15 2000 Mikael Djurfeldt <mdj@r11n07-s.pdc.kth.se>
13
14 * acinclude.m4 (AC_LIBLTDL_CONVENIENCE): Add $(top_srcdir)/libltdl
15 instead of $(top_builddir)/libltdl to includepath.
16
17 2000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
18
19 * emacs: New subdirectory for elisp tools.
20
21 2000-01-15 Marius Vollmer <mvo@zagadka.ping.de>
22
23 * README, HACKING: Moved "Hacking it yourself" section from README
24 to HACKING. Updated recommended libtool version to be 1.3.4.
25
26 2000-01-14 Gary Houston <ghouston@arglist.com>
27
28 * configure.in: needs to have --disable-networking, not
29 --disable-net.
30
31 2000-01-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
32
33 * libltdl/acconfig.h: New file: Needed by autogen.sh.
34
35 Tue Jan 11 13:42:35 2000 Greg J. Badros <gjb@cs.washington.edu>
36
37 * autogen.sh: Added messages as we run autogen in subdirectories.
38
39 * configure.in: Output libugile/guile-func-name-check script, and
40 chmod +x it.
41
42 2000-01-11 Marius Vollmer <mvo@zagadka.ping.de>
43
44 * libltdl/autogen.sh: New file.
45 * autogen.sh: Invoke libltdl/autogen.sh.
46
47 2000-01-09 Marius Vollmer <mvo@zagadka.ping.de>
48
49 Finally applied the libltdl patch from Thomas Tanner, with slight
50 modifications. All code copied from the libtool package is from
51 libtool-1.3.4.
52
53 * configure.in: Make "--with-modules=yes" the default. Do not
54 clear INCLTDL, LIBLTDL prior to processing "--with-modules".
55
56 1999-07-25 Thomas Tanner <tanner@ffii.org>
57
58 * Makefile.am: add libltdl to SUBDIRS, automake automatically
59 includes ltconfig, ltmain.sh and acconfig.h in EXTRA_DIST
60 * acinclude.m4: remove GUILE_DLSYM_USCORE, add libtool.m4
61 (no need to install libtool any more)
62 * configure.in: replace --enable-dynamic-linking with
63 --with-modules, required modules can be specified using
64 --with-modules="/path/to/mod.la" and will be linked
65 statically on platforms that don't support dynamic loading,
66 configure libltdl, configure libtool for dlopening
67 * libltdl: added using libtoolize -c --ltdl
68
69 2000-01-09 Gary Houston <ghouston@arglist.com>
70
71 * configure.in: check whether localtime caches TZ. copied from
72 Emacs 20.5.
73 * acconfig.h: add LOCALTIME_CACHE.
74
75 Tue Dec 14 09:12:22 1999 Greg J. Badros <gjb@cs.washington.edu>
76
77 * configure.in: Make it be guile-snarf.awk, since we'll be
78 switching names for guile-doc-snarf. (I wouldn't have changed
79 this, but I was getting ready to commit this way when the below
80 change was committed).
81
82 1999-12-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
83
84 * configure.in: Create guile-doc-snarf.awk.
85
86 1999-12-12 Greg J. Badros <gjb@cs.washington.edu>
87
88 * configure.in: Create guile-doc-snarf, chmod +x that script after
89 AC_OUTPUTted.
90
91 1999-12-10 Greg J. Badros <gjb@cs.washington.edu>
92
93 * NEWS: More complete description for --enable-debug-freelist.
94
95 1999-12-09 Gary Houston <ghouston@freewire.co.uk>
96
97 * configure.in (CFLAGS): don't add -Wpointer-arith, since it
98 causes numerous spurious warnings with recent gcc and/or glibc
99 versions.
100
101 1999-11-19 Gary Houston <ghouston@freewire.co.uk>
102
103 * acconfig.h: add HAVE_ARRAYS.
104
105 * configure.in: add --disable-arrays option, probably temporary.
106
107 1999-11-17 Gary Houston <ghouston@freewire.co.uk>
108
109 * configure.in: check for hstrerror.
110
111 1999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
112
113 * autogen.sh: Don't call autoreconf at all; it's not reliable.
114 Instead, call the various tools explicitly. Invoke
115 guile-readline's autogen.sh script.
116
117 Straighten up the situation regarding guile.m4 and qthreads.m4.
118
119 We can't have .m4 files which are installed where aclocal can
120 see them, but also used by guile's own configure.in, because
121 aclocal will read both copies, complain about duplicate macro
122 definitions, and refuse to generate aclocal.m4 at all. This
123 happens if you invoke it as `aclocal -I .', as autoreconf does.
124 This is probably a flaw in the autotools, but Guile doesn't need
125 that flaw fixed immediately.
126
127 guile.m4 is intended for use by people linking against guile, so
128 it needs to be installed. But Guile itself doesn't use it. So
129 move guile.m4 into guile-config. That makes sense, since
130 guile.m4's GUILE_FLAGS macro is just an easy way to call
131 guile-config.
132
133 qthreads.m4 is indented to help configure a qthreads tree. It's
134 only useful to a package which actually includes a qthreads tree,
135 and it's intimately related to that tree, so it's not useful to
136 install this. So don't install it.
137
138 * guile.m4: Moved to guile-config.
139 * Makefile.am (aclocaldir, aclocal_DATA): Delete.
140 (EXTRA_DIST): Move qthreads.m4 here.
141
142 Don't store generated files in the repository any more. Instead,
143 require people to run autogen.sh on trees from snapshots and CVS.
144 * Makefile.in, aclocal.m4, configure: Deleted.
145 * autogen.sh: New file.
146 * ANON-CVS, SNAPSHOTS: Updated instructions.
147
148 1999-10-02 Jim Blandy <jimb@zwingli.cygnus.com>
149
150 * acconfig.h (HAVE_POSIX, HAVE_NETWORKING): Add comments.
151
152 1999-09-27 Greg J. Badros <gjb@cs.washington.edu>
153
154 * configure.in: Added --enable-debug-freelist option.
155
156 * acconfig.h: Added GUILE_DEBUG_FREELIST.
157
158 1999-09-23 Gary Houston <ghouston@freewire.co.uk>
159
160 * acconfig.h: add HAVE_POSIX, HAVE_NETWORKING. remove FD_SETTER,
161 FILE_CNT_FIELD, FILE_CNT_GPTR, FILE_CNT_READPTR.
162
163 * configure.in: new options --disable-posix, --disable-net
164 and --disable-regex
165 export HAVE_POSIX and HAVE_NETWORKING definitions.
166 don't add regex-posix.o to LIBOBJS if regex disabled.
167
168 LIBOBJS: add filesys.c, posix.c, net_db.c, socket.c,
169 conditionally.
170
171 1999-09-25 Jim Blandy <jimb@savonarola.red-bean.com>
172
173 * Guile 1.3.4 released.
174
175 1999-09-22 Jim Blandy <jimb@savonarola.red-bean.com>
176
177 * configure.in: Call AM_PROG_CC_STDC before AM_PROG_LIBTOOL, so
178 libtool knows how to get ANSI C behavior from the compiler.
179 * configure: Regenerated.
180
181 1999-09-20 Gary Houston <ghouston@freewire.co.uk>
182
183 * configure.in: check availability of siginterrupt.
184
185 1999-09-18 Gary Houston <ghouston@freewire.co.uk>
186
187 * configure.in: use AC_SYS_RESTARTABLE_SYSCALLS instead of
188 testing for SA_RESTART.
189
190 1999-09-12 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
191
192 * configure.in: Removed ice-9/version.scm from AC_OUTPUT.
193
194 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
195
196 * configure.in (GUILE_STAMP): Don't set this variable, or
197 substitute it into anything. Full explanation in ice-9/ChangeLog.
198 * configure, Makefile.in: Regenerated.
199
200 1999-09-06 James Blandy <jimb@mule.m17n.org>
201
202 Propagate the changes of 2 Sept the rest of the way through.
203 * configure: Regenerated.
204 * Makefile.in: Regenerated. Not sure why this diff is so big.
205
206 1999-09-02 Jim Blandy <jimb@savonarola.red-bean.com>
207
208 * acinclude.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): Fix typo in
209 variable name. (Thanks to Bill Schottstaedt.)
210 * aclocal.m4: Regenerated.
211
212 1999-09-02 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
213
214 * configure.in: Test for presence of function on_exit.
215
216 1999-09-01 James Blandy <jimb@mule.m17n.org>
217
218 * configure.in: Use AC_REPLACE_FUNCS to grab libguile/memmove.c if
219 the system doesn't have memmove. Don't test for memmove and bcopy
220 with AC_CHECK_FUNCS.
221 * configure: Regenerated.
222
223 1999-08-30 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
224
225 * configure.in: Test for atexit.
226
227 1999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
228
229 * acinclude.m4: Updated. (Thanks to Karl Eichwalder.)
230
231 * configure.in: Test for presence of S_ISLNK in sys/stat.h.
232 (Thanks to Bernard Urban.)
233 Test for memmove and bcopy. (Thanks to
234 suzukis@file.phys.tohoku.ac.jp.)
235
236 * acconfig.h: Added HAVE_S_ISLNK.
237
238 1999-08-20 James Blandy <jimb@mule.m17n.org>
239
240 * Guile 1.3.2 released.
241
242 * Makefile.in: Regenerated.
243
244 1999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
245
246 * README, config.guess, config.sub, liconfig, ltmain.sh: Switched
247 to libtool-1.3.3.
248
249 1999-07-22 Marius Vollmer <mvo@zagadka.ping.de>
250
251 Added guile-readline subdirectory with the removed readline
252 support.
253 * guile-readline: New directory, see ChangeLog there.
254 * configure.in: Cause configure to descend into guile-readline
255 dir.
256 * Makefile.am: Likewise for make.
257 * NEWS: Explain how to activate the readline support.
258 * configure, Makefile.in: Regenerated.
259
260 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
261
262 Fixes for EMX from Mikael Ståldal.
263
264 * configure.in: Check for <io.h>.
265 * configure: Regenerated.
266
267 1999-07-18 Jim Blandy <jimb@savonarola.red-bean.com>
268
269 * qthreads.m4 (QTHREADS_CONFIGURE): 'alpha' in a configuration
270 name can have suffixes, like alphaev56-unknown-linux-gnu.
271 * aclocal.m4, configure: Rebuilt.
272 (Thanks to Sebastien Villemot.)
273
274 1999-07-04 Gary Houston <ghouston@easynet.co.uk>
275
276 * configure.in: don't check for ways to violate stdio abstraction.
277
278 1999-05-02 Jim Blandy <jimb@savonarola.red-bean.com>
279
280 * configure.in (AC_CHECK_FUNCS): Fill in list of functions that
281 libguile/net_db.h wants to use. (Add setprotoent, setservent.)
282
283 1999-04-17 Jim Blandy <jimb@savonarola.red-bean.com>
284
285 Remove all automatic readline support, to avoid copyright
286 confusion.
287 * INSTALL: Update text.
288 * NEWS: Explain the situation.
289 * configure.in: Remove configury for readline and its supporting
290 libraries.
291 * configure: Regenerated.
292
293 * README: Change URL's for automake and autoconf.
294
295 * Makefile.in, configure: Regenerated with autoconf 2.13, automake
296 1.4, libtool 1.2f (1.385 1999/03/15 17:24:54). I've upgraded to
297 all the right tools, according to README, but I'm still getting
298 different results than Mikael is. Hmm.
299
300 1999-03-22 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
301
302 * New libtool: 1.2f
303 * ltmain.sh, ltconfig, config.guess, config.sub: New versions.
304 * README: Mention new version number of libtool.
305
306 1999-03-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
307
308 New automake: 1.4
309 * config.guess, config.sub, install-sh, mdate-sh, missing,
310 mkinstalldirs: New versions.
311 * Makefile.in, aclocal.m4, configure: Regenerated.
312 * README: Mention new version numbers on autoconf and automake.
313
314 1999-02-12 Jim Blandy <jimb@savonarola.red-bean.com>
315
316 * configure.in: Add --with-readline flag.
317 * configure: Rebuilt.
318
319 1999-02-09 Maciej Stachowiak <mstachow@alum.mit.edu>
320
321 * NEWS: Added entry for optargs module.
322
323 1999-02-06 Jim Blandy <jimb@zwingli.cygnus.com>
324
325 * configure: Regenerated using autoconf 2.12.
326
327 1999-01-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
328
329 * configure.in: Removed test AC_C_BIGENDIAN. (This test was
330 considered to encourage bad coding style.)
331
332 1999-01-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
333
334 * configure.in: Added test AC_C_BIGENDIAN.
335
336 1999-01-11 Jim Blandy <jimb@zwingli.cygnus.com>
337
338 * configure.in: Remove quotes around ac_cv_lib_readline_main and
339 ac_cv_var_rl_getc_function. They should both always be set to
340 non-null values; this way, we get error messages.
341 * configure: Regenerated.
342
343 1999-01-10 Jim Blandy <jimb@savonarola.red-bean.com>
344
345 * configure.in: Cite the variable ac_cv_lib_readline_main, not
346 ac_cv_lib_readline_readline; the latter isn't set any more, since
347 we look for 'main' in libreadline now. Add quotes around
348 reference to the variable references, too, so this will work even
349 when a variable's value is the empty string.
350 * configure: Regenerated.
351
352 1999-01-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
353
354 * acconfig.h: Added HAVE_LONG_LONGS.
355
356 * configure.in: Added AC_CHECK_SIZEOF(long), AC_CHECK_SIZEOF(int);
357 Added check for long longs.
358
359 1998-12-14 Jim Blandy <jimb@zwingli.cygnus.com>
360
361 * configure.in: Check for tgoto in ncurses, then termcap.
362 S.u.S.E. Linux doesn't have a termcap. (Thanks to Karl
363 Eichwalder.)
364 * configure: Regenerated.
365
366 1998-10-24 Jim Blandy <jimb@zwingli.cygnus.com>
367
368 * configure.in: Call AM_PROG_CC_STDC, to see what flags we should
369 pass the compiler to make it support ANSI. (Thanks to Bernard
370 Urban.)
371 * aclocal.m4, configure: Regenerated.
372
373 1998-10-20 Jim Blandy <jimb@zwingli.cygnus.com>
374
375 * Guile 1.3 released.
376
377 1998-10-19 Jim Blandy <jimb@zwingli.cygnus.com>
378
379 * GUILE-VERSION: Bump to 1.3.
380
381 * Makefile.am (EXTRA_DIST): Don't omit ANON-CVS and SNAPSHOTS.
382 * Makefile.in: Regenerated.
383
384 1998-10-16 Jim Blandy <jimb@zwingli.cygnus.com>
385
386 * qthreads.m4 (QTHREADS_CONFIGURE): On NetBSD, pass through a flag
387 to the Makefile which explicitly tells it to pass assembly files
388 through the preprocessor. (Thanks to Perry Metzger.)
389 * aclocal.m4, configure, Makefile.in: Regenerated.
390
391 1998-10-14 Jim Blandy <jimb@zwingli.cygnus.com>
392
393 * configure.in: Define SCM_SINGLES whenever a float can fit in a
394 long, not only when a float is the same size as a long. This gets
395 us SCM_SINGLES defined on alphas. (Thanks to Clark McGrew.)
396 * configure: Regenerated.
397
398 * configure.in: Construct libguile/versiondat.h here; see
399 log entry in libguile/ChangeLog for details.
400 * configure: Regenerated.
401
402 * configure.in: Allow tabs and whitespace between `void' and
403 `usleep'. (Thanks to Harvey J. Stein.)
404 * configure: Regenerated.
405
406 Don't redefine sleep/usleep.
407 * configure.in: Remove tests for usleep's argument type; we only
408 need that if we're going to replace it.
409
410 * acconfig.h (USLEEP_ARG_TYPE): Delete. All the other SLEEP
411 garbage is needed just to use usleep and sleep without compiler
412 warnings.
413 * configure: Regenerated.
414
415 1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
416
417 * configure: Regenerated.
418
419 * configure.in (GUILE_FUNC_DECLARED): Name the cache variables
420 starting with guile_cv_; ac_cv_ is autoconf's namespace.
421
422 The type of the argument to usleep varies from system to system,
423 as does the return type. We really shouldn't be redefining usleep
424 at all, but I don't have time to clean that up before the 1.3
425 release. It's on the schedule for afterwards.
426 * configure.in: Cache results from usleep return value test.
427 Test for the type of the usleep argument, and cache that too.
428 * acconfig.h (USLEEP_ARG_TYPE): New macro.
429
430 1998-10-11 Jim Blandy <jimb@zwingli.cygnus.com>
431
432 * acconfig.h (HAVE_RL_GETC_FUNCTION): Fix this entry.
433
434 1998-10-10 Jim Blandy <jimb@zwingli.cygnus.com>
435
436 * GUILE-VERSION: bump to 1.2.91, since we're doing snapshots again.
437
438 * Guile 1.2.90 released --- beta.
439 * GUILE-VERSION: Set to 1.2.90. This would appear to be a
440 regression from 1.3a, but everyone knows that the next release is
441 1.3, I want to switch to a more coherent version numbering system,
442 and now is the time.
443
444 1998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
445
446 * configure.in: Call AC_C_INLINE, so we can use inline happily in
447 libguile.
448 * configure: Regenerated.
449
450 1998-10-07 Jim Blandy <jimb@zwingli.cygnus.com>
451
452 * configure.in: Don't forget to #define HAVE_RL_GETC_FUNCTION if
453 we do find the rl_getc_function variable in the readline library;
454 AC_CHECK_FUNCS used to do this for us, but we're not using it any
455 more.
456 * acconfig.h: Add an entry for HAVE_RL_GETC_FUNCTION.
457
458 * configure.in: Properly test for the presence of rl_getc_function;
459 it's a variable, not a function.
460 * configure: Regenerated.
461
462 * doc: New subdirectory.
463 * Makefile.am (SUBDIRS): List it.
464 * configure.in (AC_OUTPUT): Build its Makefile.
465 * configure, Makefile.in: Regenerated.
466
467 * guile.m4 (GUILE_FLAGS): New macro.
468
469 * guile.m4 (AM_INIT_GUILE_MODULE): Deleted; it doesn't do anything
470 terribly helpful any more, nobody's using it, and this is not
471 really the way I want to handle modules anyway.
472
473 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
474
475 * configure.in (FD_SETTER, FILE_CNT_GPTR): New cases for SCO's
476 stdio implementation. (Thanks to David Tillman.)
477 * configure: Rebuilt.
478
479 * guile-config: Renamed from `build'.
480 * Makefile.am (SUBDIRS): Mention `guile-config', not `build'.
481 * configure.in: Create `guile-config/Makefile.in', not
482 `build/Makefile.in'. Doc fix, too.
483
484 * qthreads.m4: Doc fix.
485 * Makefile.in, aclocal.m4, configure: Regeneranegerederadea.
486
487 1998-10-03 <jimb@savonarola.red-bean.com>
488
489 * configure.in: Check for a missing `sleep' declaration.
490 * acconfig.h (MISSING_SLEEP_DECL): Provide some text for this.
491 * configure: Regenerated.
492
493 * configure.in: Don't use the canonical host name to decide
494 whether `bzero' and `usleep' have declarations --- that's going
495 back to the bad old days before autoconf. Remove the call to
496 AC_CANONICAL_HOST and the subsequent case statement.
497 (GUILE_FUNC_DECLARED): New m4 macro. Use it to check for
498 declarations for `bzero', `usleep', and (new!) `strptime'.
499 * acconfig.h: (DECLARE_BZERO, DECLARE_USLEEP): Removed.
500 (MISSING_BZERO_DECL, MISSING_USLEEP_DECL, MISSING_STRPTIME_DECL):
501 Added. I think this naming convention is more consistent with the
502 rest of autoconf; names generally describes the system, not what
503 the package should do to accomodate the system.
504 * configure: Regenerated.
505
506 1998-09-05 Jim Blandy <jimb@zwingli.cygnus.com>
507
508 * configure.in: Remove --disable-debug option. The debugging
509 support is pretty stable now, and it's confusing people.
510 * configure: Regenerated.
511
512 * HACKING: Remove -Wstrict-prototypes from the list of requested
513 flags (to match 1998-07-30 change).
514
515 1998-07-30 Jim Blandy <jimb@zwingli.cygnus.com>
516
517 * configure.in: Don't use -Wstrict-prototypes after all.
518 * configure: Regenerated.
519
520 1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
521
522 * configure.in: Request more warnings.
523 * configure: Regenerated.
524 * HACKING: Ask people not to make changes that introduce those
525 warnings. Now I have to go through the code and actually bring it
526 up to standards... :(
527
528 * Makefile.in, aclocal.m4, configure: Regenerated using the last
529 public version of automake, not the hacked Cygnus version.
530 * config.guess, config.sub, ltconfig, ltmain.sh: New versions from
531 libtool.
532
533 * configure.in, qthreads.m4: Display a message about how the
534 threads configuration went.
535 * aclocal.m4, configure: Regenerated.
536
537 1998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
538
539 Remove the TOTORO kludge. We're not doing snapshots any more, so
540 totoro is completely uninvolved. (Poor Totoro!)
541 * configure.in: Remove code to check the hostname and #define
542 TOTORO.
543 * acconfig.h: Remove comments for TOTORO symbol.
544 * configure, Makefile.in: Regenerated.
545
546 * qthreads.m4 (QTHREADS_CONFIGURE): We *can* use AC_REQUIRE here
547 to get AC_PROG_LN_S.
548 * aclocal.m4, configure: Regenerated.
549
550 1998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
551
552 Clean up thread configuration.
553 * qthreads.m4: New file, which knows how to configure the qthreads
554 library.
555 * configure.in: Replace all thread package selection code. Do the
556 --with-threads argument processing here. Enable the appropriate
557 thread interface files in libguile. Remove all qthreads
558 configuration code; call QTHREADS_CONFIGURE instead. Set
559 GUILE_LIBS using the info provided by QTHREADS_CONFIGURE.
560 * threads.m4: Removed; not used any more.
561 * Makefile.am (aclocal_DATA): Mention qthreads.m4, not threads.m4.
562 * Makefile.in, aclocal.m4, configure: Rgnrtd. (Sv th vwls!)
563 Note that these were regenerated with the tools available from
564 Cygnus's source tree, which have patches not available to the
565 general public. I'm not sure this was a good idea; feel free to
566 revert them to the latest released versions of the tools.
567
568 Upgrade to the version of libtool available at Cygnus. See note
569 above.
570 * config.guess, config.sub, ltconfig, ltmain.sh: Upgraded.
571
572 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
573
574 * configure.in: Changed variable HOSTNAME --> PROG_HOSTNAME in
575 totoro kludge.
576
577 Sat Jul 11 21:54:29 1998 Mikael Djurfeldt <mdj@totoro.red-bean.com>
578
579 * acconfig.h, configure.in: Define TOTORO if configuring on
580 totoro.red-bean.com.
581
582 * configure.in: Check for strdup.
583
584 1998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
585
586 * configure.in: Check for rl_cleanup_after_signal.
587
588 1998-05-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
589
590 * configure.in: Added test for rl_getc_function. Warn if
591 libreadline is found but not this function.
592
593 1998-05-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
594
595 * configure.in: Replaced some AC_CHECK_FUNC --> AC_CHECK_FUNCS so
596 that suitable HAVE_<function name> symbols get defined.
597
598 1998-04-25 Mikael Djurfeldt <mdj@kenneth>
599
600 * configure.in: Define USLEEP_RETURNS_VOID on some systems.
601 (Thanks to Julian Satchell.)
602
603 1998-04-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
604
605 * configure.in: Check for usleep; Define DECLARE_BZERO and
606 DECLARE_USLEEP on Solaris 2.5 since it supplies those functions
607 without declaring them.
608
609 * acconfig.h: Added DECLARE_BZERO, DECLARE_USLEEP
610
611 1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
612
613 * configure.in: Define HAVE_DLOPEN also when HAVE_LIBDL is
614 defined.
615
616 1998-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
617
618 * configure.in (GUILE_LIBS): New variable. Contains libraries
619 which libguile needs to be linked with. Substituted into
620 libpath.h.
621
622 * threads.m4 (threads_package): Don't add $LDFLAGS and $LIBS to
623 $cy_cv_threads_libs.
624
625 1998-04-11 Mikael Djurfeldt <mdj@kenneth>
626
627 New libtool: 1.2
628 * ltconfig, ltmain.sh, config.sub, config.guess: Updated.
629 New automake: 1.3
630 * Makefile.in, aclocal.m4, configure: Regenerated.
631 * README: Mention new version numbers on libtool and automake.
632
633 1997-12-11 Tim Pierce <twp@skepsis.com>
634
635 * HACKING: Note that SSH is mandatory for CVS access.
636
637 Sun Dec 7 06:11:24 1997 Gary Houston <ghouston@actrix.gen.nz>
638
639 * README: using Automake 1.2d
640 * configure.in: AC_CHECK_FUNCS: add "system".
641
642 1997-12-01 Tim Pierce <twp@skepsis.com>
643
644 * acconfig.h: Add USCORE.
645
646 1997-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
647
648 * configure.in: Added code to enable GUILE_ISELECT on systems
649 which have the necessary functions (gettimeofday, select).
650
651 * acconfig.h: Added GUILE_ISELECT.
652
653 1997-11-24 Tim Pierce <twp@twp.tezcat.com>
654
655 * acinclude.m4: Assume dlsym does not add underscore if
656 cross-compiling.
657 * aclocal.m4, configure: Regenderated.
658
659 1997-11-21 Tim Pierce <twp@twp.tezcat.com>
660
661 * acinclude.m4 (GUILE_DLSYM_USCORE): New macro, thanks Dan Hagerty
662 <hag@ai.mit.edu>.
663 * configure.in: Use it.
664 * configure: Regenerated.
665 * acconfig.h (DLSYM_ADDS_USCORE): New #define.
666
667 1997-10-26 Mikael Djurfeldt <mdj@nada.kth.se>
668
669 * README (libtool): Tell people to use version 1.0e.
670
671 Sat Oct 25 02:50:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
672
673 Call the QuickThreads library libqthreads.a, not libqt.a. The old
674 name conflicts with the Qt user interface toolkit.
675 * threads.m4 (CY_AC_WITH_THREADS): Use new library name.
676 * configure.in: Same.
677 * aclocal.m4, configure: Regenerated.
678
679 Thu Oct 23 00:58:06 1997 Jim Blandy <jimb@totoro.red-bean.com>
680
681 * configure.in: Check for the readline library, and the termcap
682 library (on which readline relies).
683 * configure: Regenerated.
684
685 Wed Oct 22 16:55:57 1997 Jim Blandy <jimb@totoro.red-bean.com>
686
687 New libtool: 1.0e
688 * ltconfig, ltmain.sh, config.sub, config.guess: Updated.
689 * configure, aclocal.m4: Regenerated.
690
691 1997-10-02 Marius Vollmer <mvo@zagadka.ping.de>
692
693 Make dynamic linking work on Dec Unix. (Thanks to Clark McGrew)
694 * configure.in: Check whether dlopen can be found without -ldl.
695
696 Mon Sep 29 23:52:52 1997 Jim Blandy <jimb@totoro.red-bean.com>
697
698 * Makefile.in: Regenerated with automake 1.2c.
699
700 Sat Sep 27 23:01:58 1997 Jim Blandy <jimb@totoro.red-bean.com>
701
702 * Makefile.am: Add new `build' subdirectory to SUBDIRS.
703 * configure.in: Add build/Makefile to AC_OUTPUT clause.
704 * Makefile.in, configure: Regenerated.
705
706 * Makefile.in, aclocal.m4: Regenerated with automake 1.2a.
707
708 Tue Sep 16 00:19:46 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
709
710 * README, ltconfig, ltmain.sh: New libtool: 1.0c.
711
712 Thu Sep 11 11:28:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
713
714 * ltmain.sh: Added a missing '\' before \n on line 32.
715
716 Thu Aug 28 23:40:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
717
718 New libtool: 1.0b.
719 * ltconfig, ltmain.sh, config.guess: Freshly libtoolized.
720 * Makefile.in, aclocal.m4, configure: Regenerated, salamander-style.
721
722 Wed Aug 27 11:35:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
723
724 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
725
726 * configure.in: Use the QuickThreads assembler fragment with Irix
727 dynamic linking support for Irix 6 as well as Irix 5. Thanks to
728 Jesse Glick.
729 * configure: Regenerated.
730
731 Sun Aug 24 15:51:12 1997 Mikael Djurfeldt <mdj@kenneth>
732
733 * acinclude.m4 (GUILE_NAMED_CHECK_FUNC): New macro: Tagged test,
734 so that test for the same function can be performed multiple
735 times.
736
737 * configure.in (AC_CHECK_HEADERS): Test for rxposix.h,
738 rx/rxposix.h. Add library rx only if regcomp can't be found
739 without it.
740
741 * acconfig.h (HAVE_REGCOMP): Added it here since autoheader misses
742 it for some reason!
743
744 Fri Aug 22 21:21:49 1997 Jim Blandy <jimb@totoro.red-bean.com>
745
746 * THANKS: New file.
747 * Makefile.in, aclocal.m4, configure: Regenerated.
748
749 Wed Jul 23 20:24:27 1997 Mikael Djurfeldt <djurf@zafir.e.kth.se>
750
751 * configure.in: Added thread support for the alpha architecture.
752 configure: Regenerated.
753
754 Thu Jul 17 07:56:05 1997 Gary Houston <ghouston@actrix.gen.nz>
755
756 * configure.in: use AC_CHECK_FUNCS for sethostent etc.,
757 so scmconfig.h is updated with the test results. this may
758 disable one of the cygwin hacks.
759
760 Fri Jul 11 00:18:19 1997 Jim Blandy <jimb@floss.red-bean.com>
761
762 Changes to compile under gnu-win32, from Marcus Daniels:
763 * configure.in: When sys/un.h exists, define HAVE_UNIX_DOMAIN_SOCKETS
764 to indicate that Unix domain sockets will work.
765 Check for socketpair, getgroups, setwent, pause, and tzset
766 (cygwin currently lacks these them).
767 Check for sethostent endhostent getnetent setnetent endnetent
768 getprotoent endprotoent getservent endservent getnetbyaddr
769 getnetbyname inet_lnaof inet_makeaddr inet_netof (cygwin currently
770 lacks them). In the case of cygwin, temporarily prefix these
771 functions with "cygwin32_", the way that netdb.h does.
772 Don't define HAVE_REGCOMP unless both regcomp and regex.h are
773 available (cygwin b18 came distributed without a working regex.h
774 file).
775 * acconfig.h (HAVE_UNIX_DOMAIN_SOCKETS): Add this.
776 * configure: Regenerated.
777
778 Wed Jul 2 12:28:40 1997 Tim Pierce <twp@twp.tezcat.com>
779
780 * ltmain.sh: Remove any trailing colon on $shlibpath_var
781 (i.e. LD_LIBRARY_PATH) for braindamaged linkers that choke on it.
782 Patch sent to bug-libtool.
783
784 Sat Jun 28 16:13:43 1997 Tim Pierce <twp@twp.tezcat.com>
785
786 * configure.in: Add alloca.o explicitly to LIBOBJS (thanks Eric
787 Backus for reporting this problem and suggesting a fix).
788 * configure: Regenerated.
789
790 Thu Jun 26 20:43:31 1997 Jim Blandy <jimb@floss.red-bean.com>
791
792 * Guile 1.2 released.
793
794 * configure.in: Check for librx after libm; fundamentals need to
795 come first.
796 * configure: Regenerated.
797
798 Tue Jun 24 13:34:20 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
799
800 * aclocal.m4 (AM_PATH_PROG_LD): Change `ac_cv_path_LD' typo to
801 `am_cv_path_LD'.
802 * configure: Regenerated.
803
804 Sun Jun 22 15:43:07 1997 Jim Blandy <jimb@floss.red-bean.com>
805
806 Try to detect when people are using one version of libguile and a
807 different version of ice-9. People have been skewing things and
808 sending in bug reports.
809 * configure.in: Provide libguile its version information through a
810 separate header file generated by the Makefile, not through
811 scmconfig.h.
812 (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION, GUILE_VERSION):
813 AC_SUBST these, instead of AC_DEFINE'ing them.
814 (GUILE_STAMP): New AC_SUBST: the time we configured the tree.
815 (AC_OUTPUT): Create ice-9/version.scm.
816 * acconfig.h (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION,
817 GUILE_VERSION): Deleted.
818 * Makefile.in: Regenerated.
819
820 * aclocal.m4: Regenerated, using the libtool 0.9h m4 macros.
821
822 * Makefile.am (EXTRA_DIST): Include acconfig.h in the
823 distribution.
824 * Makefile.in: Regenerated.
825
826 Sat Jun 21 00:14:07 1997 Jim Blandy <jimb@floss.red-bean.com>
827
828 * ltmain.sh (line 1191): Don't forget 'test' in if statement.
829
830 * ltconfig, ltmain.sh: libtoolized, using libtool 0.9h.
831
832 Wed Jun 11 00:34:01 1997 Jim Blandy <jimb@floss.red-bean.com>
833
834 * ltconfig, ltmain.sh, config.guess: New files from libtool 0.9g.
835
836 * configure.in: By default, include functions in Guile to allow
837 linking with dynamic libraries at run-time. In other words,
838 --enable-dynamic-linking is now the default.
839 * configure: Rebuilt.
840
841 * configure.in: Remove space between AC_CHECK_LIB and opening
842 paren in check for Rx.
843 * configure: Regenerated.
844
845 * configure.in: Remove all mention of xtra_PLUGIN_guile_libs.
846 It's never used.
847 * configure, Makefile.in: Regenerated.
848
849 Tue Jun 10 23:37:12 1997 Jim Blandy <jimb@floss.red-bean.com>
850
851 * configure.in: Move checks for libraries (-lm, -lnsl, -lsocket,
852 -dl, -dld) before checks for functions.
853 * configure: Regenerated.
854
855 Mon Jun 9 02:35:46 1997 Tim Pierce <twp@twp.tezcat.com>
856
857 * config.guess: New copy from autoconf-2.12, which recognizes
858 OpenBSD.
859
860 Tue Jun 3 16:34:19 1997 Jim Blandy <jimb@totoro.cyclic.com>
861
862 * configure.in: Check for Rx, so we will use its routines (which I
863 pretty much trust) if it is installed.
864 * configure: Regenerated.
865
866 Sat May 31 03:48:45 1997 Gary Houston <ghouston@actrix.gen.nz>
867
868 * acconfig.h: mention HAVE_RESTARTS.
869 * configure.in: check for sigaction and restartable system calls.
870
871 Tue May 27 22:47:52 1997 Tim Pierce <twp@twp.tezcat.com>
872
873 * configure.in: Check for presence of regcomp.
874 * configure: Regenerated.
875
876 Mon May 26 12:14:20 1997 Jim Blandy <jimb@floss.cyclic.com>
877
878 * COPYING: New address for FSF.
879
880 * configure.in: We don't need to add fileblocks.o to LIBOBJS if
881 struct stat doesn't have the st_blocks field. We take care of
882 that case in the code. Replace AC_STRUCT_ST_BLOCKS with its
883 definition, edited appropriately. (Bernard URBAN)
884 * configure: Regenerated.
885
886 Sat May 17 13:49:28 1997 Jim Blandy <jimb@floss.cyclic.com>
887
888 * configure.in: Don't link against -lnsl or -lsocket unless we
889 actually need to. This causes trouble on Irix. (Thanks to Larry
890 Schwimmer.)
891
892 * config.sub: Get newer version, that recognizes the i686.
893
894 Fri May 16 17:26:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
895
896 * README: Changed Mikael's threads work attribution in order
897 to sooth Anthony's enormous, but wounded, ego.
898
899 Fri May 16 17:26:53 1997 Jim Blandy <jimb@totoro.cyclic.com>
900
901 Just kidding!!!
902
903 Fri May 16 04:24:48 1997 Jim Blandy <jimb@floss.cyclic.com>
904
905 Guile 1.1 released.
906 * GUILE-VERSION: Bump to 1.1.
907
908 Tue May 13 16:34:40 1997 Jim Blandy <jimb@floss.cyclic.com>
909
910 Switch to automake-1.1p.
911 * Makefile.in, aclocal.m4, configure: Regenerated.
912
913 Mon May 12 18:29:45 1997 Jim Blandy <jimb@floss.cyclic.com>
914
915 * threads.m4: Copy Anthony's change here, so it'll actually
916 survive.
917
918 Thu May 8 11:48:40 1997 Anthony Green <green@hoser.cygnus.com>
919
920 * aclocal.m4: Fixes for building with coop threads in a
921 seperate compilation directory.
922 * configure: Rebuilt.
923
924 Fri May 2 16:24:15 1997 Jim Blandy <jimb@floss.cyclic.com>
925
926 Upgrade to libtool 0.9e.
927 * ltconfig, ltmain.sh, config.guess, config.sub: New versions,
928 supplied by libtool.
929
930 * configure.in: When configuring qt, sunos needs the underscore
931 files; Solaris and Linux both need the normal files.
932 * configure: Reebilt.
933
934 Thu May 1 15:35:49 1997 Jim Blandy <jimb@floss.cyclic.com>
935
936 * configure.in: Get the paths for qt's md files right, so it can
937 build correctly when using a separate compilation directory.
938 * configure: Regenerated.
939
940 Thu Apr 24 01:20:34 1997 Jim Blandy <jimb@floss.cyclic.com>
941
942 Get threads to work again.
943 * Makefile.am (SUBDIRS): List libguile last, so qt gets built
944 first.
945 * Makefile.in: Regenerated.
946 * aclocal.m4, configure: Regenerate, with modern definition of
947 CY_AC_WITH_THREADS. Where did the old text come from? Creepy...
948
949 Reduced Guile distribution: one configure script, no plugins.
950 * configure.in: Merged the old text from qt/configure.in and
951 libguile/configure.in; Tom Tromey says automake only wants one
952 configure.in script. This seems fishy, but...
953 * Makefile.am: List the subdirectories explicitly; no more PLUGIN
954 gubbish.
955 * acconfig.h, acinclude.m4: Moved here from libguile, since
956 libguile's configure script lives here now.
957 * AUTHORS, INSTALL, README: Updated.
958 * Makefile.in, aclocal.m4 configure: Regenerated. Just like
959 amputated amphibian limbs.
960
961 Tue Apr 22 16:57:38 1997 Jim Blandy <jimb@totoro.cyclic.com>
962
963 * newdoc/ref/Makefile.am (dist_texis): Distribute the index files.
964 * newdoc/ref/Makefile.in: Regenerated.
965
966 Mon Apr 14 18:51:25 1997 Jim Blandy <jimb@floss.cyclic.com>
967
968 * threads.m4 (CY_AC_WITH_THREADS): When using coop threads, no
969 need to link against libthreads; the files it used to contain
970 are now a part of libguile.
971
972 Sun Apr 13 22:14:10 1997 Jim Blandy <jimb@floss.cyclic.com>
973
974 * guile.m4: Revert change of Mar 15, and use the new 'no-define'
975 argument to the AM_INIT_AUTOMAKE macro.
976
977 Fri Apr 11 15:43:07 1997 Jim Blandy <jimb@totoro.cyclic.com>
978
979 * ltconfig, ltmain.sh: Upgraded libtool files to 0.9d.
980 * README: Say where to find libtool 0.9d.
981
982 Wed Apr 9 17:51:13 1997 Jim Blandy <jimb@floss.cyclic.com>
983
984 Changes to work with automake-1.1n, which has better libtool
985 support. Also use libtool 0.8.
986 * README: Note new version numbers for automake and libtool.
987 * missing: New file required by new automake.
988 * Makefile.in: Regenerated.
989
990 Sat Apr 5 16:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
991
992 * newdoc/ref/scheme.texi (set-object-property!): Fix function name.
993
994 * Makefile.am: Omit doc subtree.
995 * configure.in: Omit makefiles in doc subtree.
996 * Makefile.in, configure: Rebuilt.
997
998 Sat Mar 15 01:11:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
999
1000 * guile.m4 (AM_INIT_GUILE_MODULE): Replaced AM_INIT_AUTOMAKE macro
1001 with its definition and commented out definition of PACKAGE. This
1002 changed seemed necessary after having removed PACKAGE from
1003 libguile/acconfig.h.
1004
1005 Mon Feb 24 21:43:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1006
1007 * ltconfig, ltmain.sh: New versions from libtool-0.9.
1008
1009 * configure.in: Added AM_MAINTAINER_MODE
1010
1011 Fri Feb 7 17:57:46 1997 Jim Blandy <jimb@floss.cyclic.com>
1012
1013 * config.sub, config.guess: New versions, that handle i686, etc.
1014
1015 Thu Jan 23 07:06:15 1997 Mark Galassi <rosalia@papageno.lanl.gov>
1016
1017 * newdoc/tutorial/guile-tut.texi: started checking in the Guile
1018 tutorial rewrite, but have not merged much into it yet.
1019
1020 Tue Jan 21 17:28:40 1997 Mark Galassi <rosalia@sarastro.lanl.gov>
1021
1022 * newdoc/ref/guile-ref.texi: started checking in parts of the
1023 reference manual re-write.
1024
1025 Sat Jan 11 14:40:17 1997 Marius Vollmer <mvo@zagadka.ping.de>
1026
1027 * ltconfig, ltmain.sh: New files for libtool support. libguile,
1028 rx, gh and gtcltk-lib can now be build as shared libraries.
1029 * Makefile.am (EXTRA_DIST): Added ltconfig and ltmain.sh
1030
1031 Sun Jan 5 16:57:10 1997 Jim Blandy <jimb@floss.cyclic.com>
1032
1033 * Guile 1.0 released. This is the first release by the Free
1034 Software Foundation; Cygnus has also released earlier versions of
1035 Guile.
1036
1037 * GUILE-VERSION: Updated version number.
1038 * NEWS: Added comments for all the user-visible changes marked in
1039 the ChangeLogs.
1040 * README: Updated for release.
1041
1042 Thu Dec 12 00:14:32 1996 Gary Houston <ghouston@actrix.gen.nz>
1043
1044 * scsh: new directory.
1045
1046 Mon Dec 2 17:33:04 1996 Tom Tromey <tromey@cygnus.com>
1047
1048 * configure.in: Generate doc/guile-programmer/Makefile and
1049 doc/guile-user/Makefile.
1050
1051 Sat Nov 30 23:45:54 1996 Tom Tromey <tromey@cygnus.com>
1052
1053 * aclocal.m4: Now automatically generated by aclocal.
1054 * threads.m4: New file.
1055 * guile.m4: New file.
1056 * Makefile.am, doc/Makefile.am: New files.
1057 * configure.in: Updated for Automake. Avoid excessively verbose
1058 "greet" messages.
1059
1060 Wed Oct 16 07:32:14 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
1061
1062 * lgh: directory renamed to gh, along with all prefixes of the
1063 high level library procedures.
1064
1065 Thu Oct 10 14:37:43 1996 Jim Blandy <jimb@floss.cyclic.com>
1066
1067 * Makefile.in (TAGS tags): Find the source files in $srcdir.
1068
1069 Wed Oct 9 19:37:14 1996 Jim Blandy <jimb@floss.cyclic.com>
1070
1071 * Makefile.in (DISTFILES): Add AUTHORS and aclocal.m4.
1072
1073 Tue Oct 1 00:13:55 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1074
1075 * configure.in: Added some configuration magic from the Cygnus
1076 distribution.
1077
1078 * aclocal.m4: New file. For now used for thread support
1079 configuration.
1080
1081 Fri Sep 13 14:39:30 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
1082
1083 * Makefile.in (DISTFILES): added mkinstalldirs to the DISTFILES
1084
1085 * PLUGIN: changed the PLUGIN/REQ files in the ice-9 and lgh
1086 directories, to arrange for lgh to the last thing
1087 configured/built.
1088
1089 Wed Sep 11 21:11:33 1996 Mark Galassi <rosalia@nis.lanl.gov>
1090
1091 * lgh/: added the directory in which I implement the high level
1092 libguile library (lgh_) for this release of Guile. See the
1093 ChangeLog in there for further details.
1094
1095 Wed Sep 11 16:12:53 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
1096
1097 * doc/ (guile-user and guile-programmer): added the guile-user and
1098 guile-programmer directories which contain the user and programmer
1099 manuals. See the ChangeLog entries there for detail.
1100
1101 Wed Sep 11 14:33:49 1996 Jim Blandy <jimb@floss.cyclic.com>
1102
1103 * Makefile.in (distclean): Don't forget to delete doc/Makefile.
1104
1105 * Makefile.in (distclean): Don't forget to delete
1106 config.build-subdirs.
1107
1108 Thu Sep 5 17:36:15 1996 Jim Blandy <jimb@floss.cyclic.com>
1109
1110 * Makefile.in (tags): New name for `TAGS' target, which will
1111 always run the commands.
1112
1113 Thu Sep 5 09:56:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
1114
1115 * README: Doc fixes.
1116
1117 Fri Aug 30 16:56:27 1996 Jim Blandy <jimb@floss.cyclic.com>
1118
1119 * Makefile.in (TAGS): Produce a single tags file for all of Guile.
1120
1121 Thu Aug 15 19:03:03 1996 Jim Blandy <jimb@floss.cyclic.com>
1122
1123 * configure.in: Check for -ldl, so the check for Tcl won't fail
1124 spuriously.
1125
1126 Thu Aug 15 01:29:29 1996 Jim Blandy <jimb@totoro.cyclic.com>
1127
1128 Change the way we decide whether to build gtcltk-lib, so that it's
1129 omitted from the build process when appropriate, but never from
1130 the dist process.
1131 * configure.in: Don't edit all_subdirs depending on the
1132 availability of Tk; let that be the list of all PLUGIN
1133 subdirectories present, as it used to be. Instead, edit a new
1134 variable, build_subdirs; write its final value, the list of
1135 subdirs we do want to compile in, to config.build-subdirs.
1136 Substitute that into the top-level Makefile too.
1137 * Makefile.in (subdirs): Set this to @build_subdirs@, so we only
1138 recurse on the subdirectories we should build.
1139 (distdirs): Set this to @existingdirs@, so it includes the subdirs
1140 we decided not to build.
1141
1142 * doc/gtcltk.texi: File resurrected from old Guile releases.
1143 * doc/Makefile.in (info): Build the gtcltk documentation.
1144 (DIST_FILES): Include it in the distribution.
1145
1146 * configure.in: If we can find the library for tcl7.5, build
1147 gtcltk-lib. Call AC_PROG_CC, to help run that test with the right
1148 compiler (not sure this is necessary).
1149
1150 Mon Aug 12 15:09:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
1151
1152 * NEWS: Fix bug reporting address.
1153
1154 Fri Aug 9 15:58:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
1155
1156 * AUTHORS: New file, in accordance with the GNU maintainers'
1157 standards.
1158
1159 Tue Aug 6 14:40:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
1160
1161 * README: Renamed from ANNOUNCE; include bug report address,
1162 description, and short tour.
1163 * INSTALL: Renamed from BUILDING.
1164 * NEWS: New file.
1165 * Makefile.in (DISTFILES): Update appropriately.
1166
1167 Thu Aug 1 02:31:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
1168
1169 * doc/Makefile.in: Added pattern targets for creating DVI and
1170 PostScript files.
1171 (%.ps, %.dvi, %.txt): New targets.
1172 (DVIPS, TEXI2DVI): New variables.
1173
1174 * GUILE-VERSION: Updated to 1.0b3.
1175
1176 Rehashed distribution system, in preparation for nightly
1177 snapshots. Other changes in subdirectories.
1178 * Makefile.in (dist): Rewritten --- the old target was out of
1179 date, dependent on files that we don't have, and relied on GNU
1180 tar. The new target is simpler.
1181 (VERSION, srcdir, dist_dirs): New variables.
1182 (DISTFILES): Renamed from localfiles. Added GUILE-VERSION and
1183 TODO.
1184 (localtreats): Variable removed. We don't have this file.
1185 (info): cd to doc and make info there; don't make info in every
1186 ${subdir}; those Makefiles don't know what to do.
1187 (distname, distdir, treats, announcefile): Variables removed.
1188 (manifest-file): Target removed.
1189 (dist-dir): New target, responsible for distributable files in
1190 this directory.
1191 (GZIP, GZIP_EXT, TAR_VERBOSE, DIST_NAME): New variables,
1192 controlling the 'dist' target.
1193 * configure.in: Substitute GUILE-VERSION into the top-level
1194 Makefile. Build doc/Makefile from doc/Makefile.in.
1195
1196 * doc/Makefile.in: New file.