-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
5133 lines (3127 loc) · 158 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2005-02-06 Richard M. Stallman <[email protected]>
* Version 21.4 released.
2003-03-18 Francesco Potort,Al(B <[email protected]>
* Version 21.3 released.
2003-03-16 Nelson H. F. Beebe <[email protected]> (tiny change)
* configure.in: Check for need for bigtoc support on IBM AIX for
solving a linker table overflow problem.
2003-02-17 Klaus Zeitler <[email protected]>
* configure.in: Set new hpux10-20.h as "major" include for 10.20.
2002-12-09 Dave Love <[email protected]>
* configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
2002-12-08 Dave Love <[email protected]>
* configure.in: Add targets s390-*-linux-gnu, mipsel-*-linux-gnu*.
2002-11-22 Juanma Barranquero <[email protected]>
* config.guess, config.sub: Updated from master source.
2002-11-14 Francesco Potorti` <[email protected]>
* configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
2002-10-15 Richard M. Stallman <[email protected]>
* Makefile.in (bootstrap-lisp): Don't ignore errors.
Fix typo in .PHONY spec.
2002-08-26 Kim F. Storm <[email protected]>
* Makefile.in (install-arch-indep): Do not remove DOC file
when it is the only DOC file installed; this is the case when
CANNOT_DUMP is defined. From Joe Buehler (tiny change).
2002-07-08 Dave Love <[email protected]>
* configure.in: Check safe/working versions of libjpeg and
libungif.
2002-05-26 Paul Eggert <[email protected]>
* config.guess, config.sub: Updated from master source.
2002-05-07 Andreas Schwab <[email protected]>
* configure.in: Fix the test for emacs_cv_speed_t.
2002-03-16 Eli Zaretskii <[email protected]>
* Version 21.2 released.
2002-03-15 Eli Zaretskii <[email protected]>
* configure.in: Support AIX 5.1.
2002-02-22 Eli Zaretskii <[email protected]>
* make-dist: Fix the change from 2002-02-02.
2002-02-18 Paul Eggert <[email protected]>
* make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
"sed q" is a portable equivalent to plain "head -1".
2002-02-02 Eli Zaretskii <[email protected]>
* make-dist: Remove the (empty) lisp/calc subdirectory after
linking.
2002-01-28 Eli Zaretskii <[email protected]>
* configure.in: Recognize BSD/OS 5.0.
2002-01-11 Eli Zaretskii <[email protected]>
* make-dist: Make version checking in emacs.texi consistent with
how we set it there.
2001-11-07 Eli Zaretskii <[email protected]>
* AUTHORS: Regenerate.
* make-dist (tempdir): Copy AUTHORS as well.
2001-11-01 Gerd Moellmann <[email protected]>
* configure.in: Remove doubled `;;'.
2001-11-01 Pavel Jan,Bm(Bk <[email protected]>
* configure.in: Reindent --help output.
From Per Starback ([email protected]).
2001-10-31 Eli Zaretskii <[email protected]>
* configure.in: New entry for HP/UX-11.
* Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
From Eric S. Raymond <[email protected]>.
2001-10-25 Gerd Moellmann <[email protected]>
* Makefile.in (maybe_bootstrap): New target.
(all): Add to prerequisites to bootstrap if abbrev.elc doesn't
exist.
2001-10-24 Gerd Moellmann <[email protected]>
* configure.in: Use $MAKE for `make' if set.
2001-10-22 Gerd Moellmann <[email protected]>
* Makefile.in (install-arch-indep): Add -h (follow symlinks)
to tar options.
2001-10-20 Gerd Moellmann <[email protected]>
* Version 21.1 released.
2001-10-19 Eli Zaretskii <[email protected]>
* aclocal.m4: Remove the commented-out AC_PREREQ (it caused
trouble on Debian woody with both Autoconf 2.13 and 2.52
installed: the wrong version would be selected by Debian).
2001-10-19 Gerd Moellmann <[email protected]>
* configure.in: Use `=' instead of `=='. From Kenichi Handa
2001-10-18 Ken Raeburn <[email protected]>
* configure.in: If --with-hesiod is given, look for
hes_getmailhost and res_send or __res_send; check hesiod and
resolv libraries respectively if system libraries don't supply
them.
2001-09-05 Gerd Moellmann <[email protected]>
* configure.in: Avoid `$@' which is handled specially in
Autoconf 2.52. From "Adam J. Richter" <[email protected]>.
2001-09-01 Eli Zaretskii <[email protected]>
* make-dist (nt): Add subdirs.el to the list of distributed files.
2001-08-14 Eli Zaretskii <[email protected]>
* configure.in (machine): Add an entry for
hppa1.1-hitachi-hiuxwe2*.
2001-05-28 Gerd Moellmann <[email protected]>
* make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
LC_MESSAGES and LANG. From Karl Eichwalder <[email protected]>.
2001-05-14 Gerd Moellmann <[email protected]>
* make-dist: Copy texinfo.tex unconditionally.
2001-04-25 Eli Zaretskii <[email protected]>
* Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
that are installed.
2001-04-06 Gerd Moellmann <[email protected]>
* make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
* make-dist: Handle leim/MISC-DIC. Only include
`[a-zA-Z]*.{el,elc}' from leim/quail.
2001-04-05 Gerd Moellmann <[email protected]>
* Makefile.in (install-arch-indep): Remove .cvsignore files.
2001-03-30 Gerd Moellmann <[email protected]>
* Makefile.in (.PHONY): Add for bootstrap targets.
(bootstrap-clean): New target.
(bootstrap): Use it instead of `clean'.
2001-03-29 Eli Zaretskii <[email protected]>
* Makefile.in (SUBDIR): Remove leim.
(all, .RECURSIVE, extraclean): Add leim explicitly.
(leim): Provide separate rule which exports PARALLEL=0 into the
environment.
2001-03-20 Gerd Moellmann <[email protected]>
* configure.in (HAVE_XPM): Don't print the result of the check for
XpmReturnAllocPixels if we don't have an xpm.h.
2001-03-05 Gerd Moellmann <[email protected]>
* COPYING: New file.
2001-03-04 Eli Zaretskii <[email protected]>
* config.bat: Update the copyright.
2001-02-23 Kenichi Handa <[email protected]>
* configure.in: Use AC_EGREP_CPP to check if the C preprocessor
converts `..' to `. .'. If it converts, set CPP_NEED_TRADITIONAL
to `yes'. Later in AC_OUTPUT, check this variable.
2001-02-09 Dave Love <[email protected]>
* AUTHORS: Updated.
2001-02-06 Eli Zaretskii <[email protected]>
* info/dir (Ebrowse): Fix the entry (was missing a dot).
2001-02-02 Gerd Moellmann <[email protected]>
* mkinstalldirs (errstatus): Chmod a+rx directories we create.
* Makefile.in (uninstall): Ignore exit code of `rm'.
* Makefile.in (uninstall): Remove more info files. Remove
${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
2001-01-31 Gerd Moellmann <[email protected]>
* noleim-Makefile.in (extraclean): Add.
2001-01-28 Gerd Moellmann <[email protected]>
* Makefile.in (extraclean): Added -f to -rm config-tmp-* to keep
it quiet.
2001-01-24 Colin Walters <[email protected]>
* Makefile.in (tags): Fix typo.
2001-01-13 Kenichi Handa <[email protected]>
* configure.in: Fix typo in the code setting x_search_path.
2001-01-10 Dave Love <[email protected]>
* configure.in: Don't reset LIBS at end of -lXmu test. Test for
-lXext.
(HAVE_XKBGETKEYBOARD): Fix reporting of result.
(HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
(HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
Don't frob CFLAGS. Remove extra X libs from AC_CHECK_LIB
(now in $LIBS).
2001-01-08 Eli Zaretskii <[email protected]>
* config.bat: Run the preprocessor with -traditional.
2001-01-01 Eli Zaretskii <[email protected]>
* INSTALL: Move copying conditions to end of file.
2000-12-27 Eli Zaretskii <[email protected]>
* INSTALL: Add basic installation procedure which assumes
`configure' does its job. Elaborate on image support libraries.
Add a pointer to Xaw3d library. Add advice about solving
configure-time problems by looking in config.log and setting
variables in the environment.
2000-12-27 Gerd Moellmann <[email protected]>
* Makefile.in (install-arch-indep): If tar fails, exit with
exit code 1.
2000-12-19 Gerd Moellmann <[email protected]>
* configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
source file includes XKBlib.h. On some broken Solaris systems,
there is an XKBlib.h, reportedly, but header files included by
XKBlib.h are missing.
2000-12-14 Gerd Moellmann <[email protected]>
* configure.in: AC_CHECK_FUNC XkbGetKeyboard.
2000-12-11 Dave Love <[email protected]>
* configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
2000-12-11 Paul Eggert <[email protected]>
* aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
Merge fixes from latest GNU tar version. These macros no longer
futz with _XOPEN_SOURCE, as that was not portable in practice.
(AC_FUNC_FSEEKO): New macro.
* configure.in: Use it instead of invoking AC_CHECK_FUNCS on
ftello.
2000-12-05 Dave Love <[email protected]>
* Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
2000-12-02 Eli Zaretskii <[email protected]>
* info/dir: Change the category to "Emacs".
2000-12-01 Gerd Moellmann <[email protected]>
* make-dist (tempdir): Remove epaths.h from the distribution
instead of paths.h.
2000-11-23 Eli Zaretskii <[email protected]>
* config.bat: Check for existence of djecho.exe, and print an
error message if it is not available.
* INSTALL: Describe possible problem with djecho.exe in old
versions of DJGPP v2.x.
2000-11-23 Gerd Moellmann <[email protected]>
* configure.in: Initialize HAVE_LIBXP to no.
2000-11-22 Gerd Moellmann <[email protected]>
* configure.in: Use m/macppc.h instead of the non-existent
m/powerpc.h.
2000-11-21 Gerd Moellmann <[email protected]>
* Makefile.in (install-arch-indep): Also install info/eshell*
and info/speedbar*.
* configure.in (HAVE_PNG): Check for the presence of
png_get_channels to rule out older PNG libs.
* configure.in (AC_OUTPUT): Arrange to emit definitions of
GCC and NON_GNU_CPP into config.status.
2000-11-20 Dave Love <[email protected]>
* configure.in: Fix last change.
* GETTING.GNU.SOFTWARE: Deleted.
* FTP: New file to replace it.
* make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
2000-11-20 Gerd Moellmann <[email protected]>
* configure.in: Use -traditional with GNU cpp.
2000-11-17 Gerd Moellmann <[email protected]>
* make-dist: Handle the Mac port. Distribute all makefile.w32-in.
Distribute more files from the nt/ subdir. Distribute PBM
image files from subdirs of lisp/. Distribute old change logs
from subdirs of lisp/. Distribute play/5x5.el.
2000-11-11 Dave Love <[email protected]>
* config.sub, config.guess: Updated from master source.
2000-11-07 Dave Love <[email protected]>
* configure.in: Test for mkstemp.
2000-11-01 Eli Zaretskii <[email protected]>
* info/dir (Top): Rearrange menu items more logically, and put
them into a single category. Add menu items for RefTeX and
Widget.
2000-10-29 Kai Gro,A_(Bjohann <[email protected]>
* Makefile.in (install-arch-indep): Use --info-dir instead of
--dir-file, and a simple argument instead of --info-file, so that
the Debian version of install-info also works.
2000-10-19 Eric M. Ludlam <[email protected]>
* info/dir (Speedbar): Add entry.
2000-10-16 Eli Zaretskii <[email protected]>
* INSTALL: Describe the new image-support options to the configure
script. List URLs where image support libraries can be found.
2000-10-14 Eli Zaretskii <[email protected]>
* info/dir (Top): Add an entry for Eshell.
2000-10-02 Dave Love <[email protected]>
* configure.in: Check for gai_strerror.
2000-10-01 Andreas Schwab <[email protected]>
* Makefile.in (install-arch-indep): Update list of installed info
files.
2000-09-30 Gerd Moellmann <[email protected]>
* configure.in: Support `sparc*-*-netbsd*'.
2000-09-29 Eli Zaretskii <[email protected]>
* info/dir (MIME): Add entry for emacs-mime.
2000-09-29 Dave Love <[email protected]>
* configure.in: Fix alpha*-dec-osf4 using the osf5 config.
2000-09-26 Gerd Moellmann <[email protected]>
* make-dist: Adapt to the change of leim/Makefile which was
necessary to ensure a reasonably working `make dist'.
* leim-Makefile.in: Moved to leim/Makefile.in..
* noleim-Makefile.in: New file, formerly leim/Makefile.in.
2000-09-21 Kenichi Handa <[email protected]>
* leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
(NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
(TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
files to .elc.
(${TIT}): Adjusted for the above change.
(clean mostlyclean): Likewise.
(.el.elc): New target.
2000-09-19 Gerd Moellmann <[email protected]>
* make-dist: Include XPM and XBM files in lisp/ and subdirs
in the distribution.
2000-09-18 Gerd Moellmann <[email protected]>
* make-dist (skk): Rename to `ja-dic' because the leim directory
was renamed.
2000-09-14 Dave Love <[email protected]>
* configure.in: Fix spurion in last change.
2000-09-14 Gerd Moellmann <[email protected]>
* configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
configuration files instead of REL_ALLOC_MMAP. Set REL_ALLOC
to `no' if defined. Change result report.
2000-09-08 Dave Love <[email protected]>
* configure.in: Remove spurious `@'s.
* aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
autoconf.
2000-09-06 Gerd Moellmann <[email protected]>
* configure.in (REL_ALLOC_MMAP): Recognize in system configuration
file and print informational message.
* configure.in (AC_FUNC_MMAP): Add.
2000-09-01 Gerd Moellmann <[email protected]>
* configure.in: Add ``checking'' messages for
XpmReturnAllocPixels.
2000-08-28 Gerd Moellmann <[email protected]>
* configure.in: Check <strings.h>; check `index' and `rindex'
functions.
2000-08-26 Kenichi Handa <[email protected]>
* configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
"case "${canonical}" in".
2000-08-25 Dave Love <[email protected]>
* configure.in <osf>: Use NON_GNU_CPP='cpp' always.
2000-08-25 Kenichi Handa <[email protected]>
* leim-Makefile.in: Rename skk to ja-dic throughout the file.
2000-08-24 Gerd Moellmann <[email protected]>
* configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
contains a relative path. Protect against unusable values of
$PWD.
2000-08-08 Eli Zaretskii <[email protected]>
* info/dir (WoMan): Add entry.
* config.bat (maindir): Update src/_gdbinit even if it does
already exist.
2000-08-07 Gerd Moellmann <[email protected]>
* Makefile.in (config.status): Prepend `$(srcdir)/' to
`configure'.
2000-08-03 Gerd Moellmann <[email protected]>
* configure.in: Add support for ia64*-*-linux*.
2000-07-27 Gerd Moellmann <[email protected]>
* make-dist (aclocal.m4): Include in distribution.
2000-07-26 Dave Love <[email protected]>
* configure.in (AC_SYS_LARGEFILE): Moved earlier.
2000-07-24 Dave Love <[email protected]>
* configure.in: Add AC_SIZE_T.
2000-07-18 Dave Love <[email protected]>
* configure.in: Reorder so that most tests are done after CPPFLAGS
is set from the C_SWITCH_... definitions.
2000-07-10 Gerd Moellmann <[email protected]>
* configure.in (HAVE_XPM): Undo previous change. Check for
preprocessor define XpmReturnAllocPixels.
2000-07-06 Gerd Moellmann <[email protected]>
* configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
instead of XpmReadFileToPixmap.
2000-07-05 Ken Raeburn <[email protected]>
* configure.in: Check for <soundcard.h>. Look for ossaudio
library, and set LIBSOUND accordingly.
2000-07-05 Dave Love <[email protected]>
* configure.in: Use AC_HEADER_SYS_WAIT.
2000-07-05 Gerd Moellmann <[email protected]>
* make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
lisp/Makefile. Distribute lisp/Makefile.in instead of
lisp/Makefile.
2000-06-30 Ken Raeburn <[email protected]>
* configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
while searching for image-handling libraries.
2000-06-26 Gerd Moellmann <[email protected]>
* configure.in (--with-xim): New option.
2000-06-23 Dave Love <[email protected]>
* configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
for struct timezone and test how we can call gettimeofday.
Check for OSF 5+. Check for term.h.
* aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
version.
2000-06-23 Gerd Moellmann <[email protected]>
* configure.in (HAVE_LIBXP): Change test for libXp.
2000-06-21 Dave Love <[email protected]>
* configure.in: Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not
simple test for getloadavg and substitute GETLOADAVG_LIBS.
Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
2000-06-19 Dave Love <[email protected]>
* configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
_XOPEN_SOURCE is defined.
2000-06-16 Gerd Moellmann <[email protected]>
* Makefile.in (distclean): Also make distclean in lisp/.
2000-06-15 Eli Zaretskii <[email protected]>
* config.bat: Generate lisp/Makefile from lisp/Makefile.in.
2000-06-15 Gerd Moellmann <[email protected]>
* make-dist: Add --help and --snapshot options.
2000-06-14 Gerd Moellmann <[email protected]>
* configure.in: Generate lisp/Makefile.
* configure.in: Add support for `*-lynxos*'.
Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
recommended by <[email protected]> to fix problems
on Tru64 UNIX v5.0.
2000-06-13 Ken Raeburn <[email protected]>
* Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
it's on a continuation line.
2000-06-02 Dave Love <[email protected]>
* Makefile.in: (install-arch-indep): Add pcl-cvs to list of info
files.
* configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
Check for struct exception. Use AC_SYS_LARGEFILE and move ftello
test.
* aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
(AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
2000-05-26 Gerd Moellmann <[email protected]>
* configure.in: Add check for speed_t typedef.
2000-05-25 Ken Raeburn <[email protected]>
* Makefile.in (install-arch-dep): Install fns-*.el only if it
exists; it won't in the CANNOT_DUMP case.
2000-05-25 Gerd Moellmann <[email protected]>
* Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
On FreeBSD, the exit status is 1 if CDPATH is not set.
(install-arch-indep): Install ebrowse.info.
2000-05-20 NIIBE Yutaka <[email protected]>
* configure.in: Check for grandpt and getpt.
2000-05-09 Dave Love <[email protected]>
* Makefile.in (install-arch-indep): Filter CVS as well as RCS.
2000-05-05 Gerd Moellmann <[email protected]>
* make-dist: Make a link for lib-src/grep-changelog. Copy
install-sh.
2000-05-01 Eli Zaretskii <[email protected]>
* config.bat: Identify the beginning of the cpp stuff in
src/Makefile.in and lib-src/Makefile.in more accurately.
2000-04-27 Gerd Moellmann <[email protected]>
* configure.in: Add support for `powerpc*-*-linux-gnu*'.
2000-04-19 Gerd Moellmann <[email protected]>
* configure.in: Add support for `powerpc-*-netbsd*'.
2000-04-19 Dave Love <[email protected]>
* configure.in: Don't use AC_FUNC_GETLOADAVG.
* aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
2000-04-16 Dave Love <[email protected]>
* Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
2000-04-14 Dave Love <[email protected]>
* configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
* aclocal.m4 (AC_FUNC_MKTIME): New.
2000-03-28 Ken Raeburn <[email protected]>
* configure.in: Line up "--help" output a little better.
2000-03-26 Gerd Moellmann <[email protected]>
* Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
New targets.
(bootstrap): Rewritten in terms of the new targets above. Make
info files, too.
2000-03-12 Gerd Moellmann <[email protected]>
* config.guess, config.sub: Use the versions of the files from
subversions.
2000-03-08 Dave Love <[email protected]>
* configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
AC_C_VOLATILE. Define POINTER_TYPE.
* aclocal.m4: New file.
2000-03-02 Gerd Moellmann <[email protected]>
* configure.in (machine): Add `mipsel-*-netbsd*' and
`arm-*-netbsd*'.
2000-03-01 Gerd Moellmann <[email protected]>
* configure.in (machine): Add support for `*-auspex-sunos*'.
2000-02-29 Gerd Moellmann <[email protected]>
* configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
2000-02-18 Dave Love <[email protected]>
* configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
2000-02-18 Andreas Schwab <[email protected]>
* Makefile.in (install-arch-indep): Add eudc to list of installed
info files.
2000-02-17 Ken Raeburn <[email protected]>
* configure.in: Include -lz and -ljpeg (if it's available) when
testing for the tiff library.
2000-02-17 Gerd Moellmann <[email protected]>
* configure.in: Remove LISP_FLOAT_TYPE.
2000-02-12 Dave Love <[email protected]>
* configure.in: Use AC_FUNC_VFORK.
2000-02-01 Gerd Moellmann <[email protected]>
* make-dist: Various fixes for new development tree.
* leim-Makefile.in: New file.
2000-01-31 Gerd Moellmann <[email protected]>
* Makefile.in (dist): Call ./make-dist.
2000-01-24 Dave Love <[email protected]>
* configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
2000-01-18 Gerd Moellmann <[email protected]>
* configure.in (HAVE_GIF): Check for DGifOpen instead of
DGifOpenFileName.
2000-01-11 Andreas Schwab <[email protected]>
* Makefile.in (install-arch-indep): Update list of info files to
be installed.
2000-01-05 Dave Love <[email protected]>
* configure.in: Check for jerror.h as well as libjpeg.
2000-01-03 Andreas Schwab <[email protected]>
* Makefile.in (install-arch-indep): Install autotype*. Run
install-info on autotype and emacs-faq.info.
1999-12-04 Dave Love <[email protected]>
* Makefile.in: (install-arch-indep): Depend on `info'.
(install-strip): Use `install' as sub-make target.
1999-11-23 Ken Raeburn <[email protected]>
* configure.in: Restore Kerberos code deleted on 1999-05-29 that
didn't need to be deleted. Check for the k5crypto library as well
as the crypto library; MIT Kerberos 1.1 changed the name.
1999-11-18 Dave Love <[email protected]>
* configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
1999-11-11 Erik Naggum <[email protected]>
* configure.in (bitmapdir): Allow for both "bitmaps" directories.
1999-11-08 Dave Love <[email protected]>
* configure.in: Fix change for --with-pop default.
1999-11-04 Dave Love <[email protected]>
* configure.in: Default to --with-pop. Change sense of with-gcc
and with-toolkit-scroll-bars messages to reflect the defaults.
1999-11-01 Gerd Moellmann <[email protected]>
* INSTALL: Mention the Emacs Lisp Reference.
1999-10-27 Noah Friedman <[email protected]>
* configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
1999-10-23 Gerd Moellmann <[email protected]>
* Makefile.in (bootstrap): New target.
1999-10-19 Paul Eggert <[email protected]>
Add support for large files. Merge glibc 2.1.2.
* configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
(HAVE_TM_GMTOFF): New symbol.
(AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
mbrlen, strsignal.
(LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
1999-10-09 Stefan Monnier <[email protected]>
* make-dist (dontcompile): look for the DONTCOMPILE variable rather
than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
1999-10-09 Richard M. Stallman <[email protected]>
* Makefile.in (uninstall, install-arch-indep, install-arch-dep):
Unset CDPATH to prevent cd from generating output.
1999-10-08 Stefan Monnier <[email protected]>
* update-subdirs: also ignore CVS subdirs.
1999-10-07 Gerd Moellmann <[email protected]>
* Makefile.in (install-arch-indep): Add ada-mode.
1999-10-06 Dave Love <[email protected]>
* Makefile.in: Add rules for config.status, configure.
1999-09-07 Gerd Moellmann <[email protected]>
* configure.in (--with-sound): Removed.
1999-08-30 Gerd Moellmann <[email protected]>
* configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
the test for Xaw3d.
(HAVE_TIFF): Add -lm to library check.
1999-08-28 Richard Stallman <[email protected]>
* configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
-lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
after the other X-related libraries.
1999-08-21 Dave Love <[email protected]>
* configure.in: Don't check for jpeglib.h.
1999-08-20 Gerd Moellmann <[email protected]>
* configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
(HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
1999-08-18 Dave Love <[email protected]>
* configure.in: : Check for termcap.h.
1999-08-15 Gerd Moellmann <[email protected]>
* configure.in: Add --with-toolkit-scroll-bars. If "no",
use Emacs' scroll bars, even if configured for Motif or when
Xaw3d is available.
1999-08-12 Wolfgang Rupprecht <[email protected]>
* configure.in: Check for getaddrinfo.
1999-08-04 Eli Zaretskii <[email protected]>
* config.bat: Make --no-debug work again by removing -gcoff.
1999-07-30 Dave Love <[email protected]>
* configure.in: Check for stdlib.h.
1999-07-19 Dave Love <[email protected]>
* configure.in: Grok sparc64-*-linux-gnu*.
1999-07-12 Richard Stallman <[email protected]>
* Version 20.4 released.
1999-06-23 Karl Heuer <[email protected]>
* make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
Quote $EMACS, in case it's a program with args.
1999-05-29 Richard M. Stallman <[email protected]>
* configure.in: Delete the Kerberos stuff.
1999-05-27 Greg Hudson <[email protected]>
* configure.in: Prefer kerberos 5 names.
1999-04-26 Richard M. Stallman <[email protected]>
* configure.in: Check for libXp.
1999-04-08 Richard Stallman <[email protected]>
* make-dist: Include change logs in subdirs of `lisp'.
1999-04-05 Richard Stallman <[email protected]>
* Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
(install-arch-indep): Make ${datadir}/emacs world-readable.
1999-03-30 Eli Zaretskii <[email protected]>
* config.bat: Use epaths.* instead of paths.*.
1999-03-07 Eli Zaretskii <[email protected]>
* INSTALL: Add detailed instructions to unpack and install
intlfonts on MS-DOS.
1999-02-26 Richard Stallman <[email protected]>
* configure.in: Use epaths.h and epaths-force instead of paths....
* Makefile.in (epaths-force): Renamed from paths-force;
operate on epaths.in and produce epaths.h.
1999-02-24 Richard Stallman <[email protected]>
* make-dist: Fix nt/icons directory handling.
1999-02-22 Simon Josefsson <[email protected]>
* configure.in (f301-fujitsu-uxpv4.1): New target.
1999-02-20 Richard Stallman <[email protected]>
* make-dist (tempparent): Fix command to update info files.
1999-02-09 Richard Stallman <[email protected]>
* configure.in (powerpc-apple-netbsd*): New alternative.
1999-01-25 Geoff Voelker <[email protected]>
* make-dist: Include the new directory nt/icons in distributions.
1999-01-19 Richard Stallman <[email protected]>
* configure.in: Change message about HAVE_XFREE386.
1999-01-07 Eli Zaretskii <[email protected]>
* config.bat: Support configuring with leim.
1998-12-16 Petri Kaurinkoski <[email protected]>
* configure.in (mips-sgi-irix6.5): New target.
1998-12-16 Jonathan I. Kamens <[email protected]>
* configure.in: Remove GSS-API support, since it has been removed
from movemail.
1998-12-04 Markus Rost <[email protected]>
* Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
1998-12-04 Andreas Schwab <[email protected]>
* Makefile.in: Don't install customize info file. Run
install-info on viper info file.
1998-11-29 Richard Stallman <[email protected]>
* Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.