-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.XEmacs
5478 lines (3360 loc) · 158 KB
/
ChangeLog.XEmacs
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
2004-12-05 Vin Shelton <acs@xemacs.org>
* XEmacs 21.4.16 is released
2004-08-12 "Johann 'Myrkraverk' Oskarsson" <myrkraverk@users.sourceforge.net>
* config.guess: Detect PlayStation 2.
2004-08-10 Jerry James <james@xemacs.org>
* etc/SERVICE: Update to latest version from www.gnu.org.
2004-07-06 Steve Youngs <steve@youngs.au.com>
* etc/NEWS: Document the major user visible changes to PUI.
2003-07-21 Malcolm Purvis <malcolmpurvis@optushome.com.au>
* etc/gtkrc: New file. This is the GTK equivalent of the
app-default file.
2004-03-30 Norbert Koch <viteno@xemacs.org>
* PACKAGES: Introduce new packages escreen, xlib, and xwem.
2004-03-23 Malcolm Purvis <malcolmpurvis@optushome.com.au>
* configure (GTK_CONFIG): Check GTK version validity only when the
right instance of gtk-config is found.
2004-03-20 Adrian Aichner <adrian@xemacs.org>
* etc/sample.init.el: Sync typo and copycat fix from 21.5.
* etc/sample.init.el ((console-on-window-system-p)): Sync
"\C-x\C-c" definition from 21.5.
2004-03-20 Vin Shelton <acs@xemacs.org>
* configure.usage (--use-regex-malloc): Correct warning about
disabling regex-malloc.
2004-03-04 Malcolm Purvis <malcolmpurvis@optushome.com.au>
* configure.in (src/Makefile): No longer include a special linker
script for PowerPC Linux. Thanks to Stefan Bruda for reporting
this bug.
2004-02-10 Vin Shelton <acs@xemacs.org>
* etc/OXYMORONS: Added Jumbo Shrimp for 21.4.17.
2004-02-03 Vin Shelton <acs@xemacs.org>
* configure.in (XE_COMPUTE_RUNPATH): lucid_prefers_motif is a
variable, not a command.
2004-02-02 Vin Shelton <acs@xemacs.org>
* XEmacs 21.4.15 is released
2004-01-30 Vin Shelton <acs@xemacs.org>
* etc/OXYMORONS: Inserted "Corporate Culture" for 21.4.15.
2004-01-25 Steve Youngs <youngs@xemacs.org>
* etc/package-index.LATEST.gpg: New, replaces
`package-index.LATEST.pgp'.
* etc/package-index.LATEST.pgp: Removed, replaced with
`package-index.LATEST.gpg'.
2004-01-20 Jerry James <james@xemacs.org>
* configure.in: The icc compiler pretends to be gcc. It isn't.
2003-11-28 Norbert Koch <viteno@xemacs.org>
* etc/PACKAGES (ERC): new.
2003-11-19 Vin Shelton <acs@xemacs.org>
* configure.usage (--with-widgets): widgets now defaults to
--with-widgets=no. Patch inspired by Jim Schumacher.
2003-10-25 Norbert Koch <viteno@xemacs.org>
* etc/PACKAGES (riece): New package.
* etc/PACKAGES (liece): Mark as deprecated.
2003-10-26 Vin Shelton <acs@xemacs.org>
* configure.in: Add Intel C++ compiler detection to compiler
version reporting.
2003-10-16 Valdis Kletnieks <valdis.kletnieks@vt.edu>
* configure.in: record additional info about compiler and libc
versions, to assist in debugging.
2003-08-28 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (line 3573):
(Mule input methods):
Deprecate Motif for Linux.
(Installation): Report when LessTif is used.
2003-10-11 Jerry James <james@xemacs.org>
* configure.in: installexe.sh is under srcdir, not blddir.
2003-10-16 Jerry James <james@xemacs.org>
* aclocal.m4: Add icc (Intel compiler) support.
* configure.in: Ditto.
2003-09-13 Martin Buchholz <martin@xemacs.org>
* configure.in (OS_RELEASE): Add support for SunOS 5.10.
On current OSes produced by Sun, `uname -r' prints "5.9".
It seems likely that on future OSes, `uname -r' will print "5.10".
We need to accept multi-digit release numbers.
2003-09-12 Rodney Sparapani <rsparapa@mcw.edu>
* PROBLEMS: Propose bash as an alternative to buggy Solaris
/bin/sh.
2003-09-10 Martin Buchholz <martin@xemacs.org>
* configure.in: XEmacs failed to build on Solaris9.
Solaris9 comes with /usr/demo/SOUND, but no headers or libraries
therein.
2003-09-03 Vin Shelton <acs@xemacs.org>
* XEmacs 21.4.14 is released
2003-08-15 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (line 3593): Default widgets OFF for Athena/Motif.
2003-08-15 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (regex_malloc): New option.
configure.usage (--use-regex-malloc): Document it.
2003-08-14 Andrew Begel <abegel@CS.Berkeley.EDU>
* configure.in: Add code to detect Darwin/MacOSX dynamic linking
API.
2003-08-12 Stephen J. Turnbull <stephen@xemacs.org>
* configure.usage (GUI component): Improve lucid option doc.
2003-08-12 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (CFLAGS): Add -fno-strict-aliasing for GCC.
* PROBLEMS (Running): Strict aliasing crashes.
2003-08-04 Norbert Koch <viteno@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
* PACKAGES: Sync with package-tree contents. Style conformance.
2003-07-03 Stephen J. Turnbull <stephen@xemacs.org>
* etc/README.HYPERBOLE:
* etc/README.OO-BROWSER:
Update.
2003-05-23 Stephen J. Turnbull <stephen@xemacs.org>
* etc/sample.Xdefaults (menubar and popup fonts): Use X Font Sets.
2003-07-29 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Motif): Explain why Motif loses XtExposeCompressMaximal.
* configure.in (Installation): Bitch bitterly about Motif.
2003-06-17 Vin Shelton <acs@xemacs.org>
* PROBLEMS: Sync up with latest version from 21.5
2003-04-28 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Windows): New: auxiliary programs for Windows.
2003-05-24 Norbert Koch <viteno@xemacs.org>
* etc/package-index.LATEST.pgp: Official package release.
2003-05-25 XEmacs Build Bot <builds@cvs.xemacs.org>
* XEmacs 21.4.13 is released
2003-03-20 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (INTPTR_T_IN_CYGWIN_TYPES_H):
Cygwin defines these types in <cygwin/types.h>. Detect and don't
duplicate the definition.
2003-03-18 Stephen J. Turnbull <stephen@xemacs.org>
* configure.usage (Usage): Use an autodetected feature as an
example of how to disable features. A Martin Buchholz Suggestion.
2003-03-18 Stephen J. Turnbull <stephen@xemacs.org>
* INSTALL: Give location of Darwin X11 downloads.
2003-01-28 Stephen J. Turnbull <stephen@xemacs.org>
* INSTALL (--with-scrollbars):
(--with-dialogs):
(--with-widgets):
(--with-athena):
Update to current reality.
2003-01-18 Stephen J. Turnbull <stephen@xemacs.org>
* INSTALL:
* PROBLEMS:
Mention --site-includes and subdirectories for helping configure
to find 3rd-party add-ons.
2003-01-28 Martin Buchholz <martin@xemacs.org>
* configure.in (opsys): (AIX specific)
Use opsys=aix4-2 for AIX 5 and all future versions.
2003-01-28 Martin Buchholz <martin@xemacs.org>
* configure.in (-mthreads): (AIX specific)
Use either -mthreads or -pthread, depending on gcc versions.
gcc changed the name of the `-mthreads' option to `-pthread'
on 2000-06-12.
Be more careful when appending "_r" to various names of xlc,
so that users can specify --compiler=/absolute/path/to/xlc
2003-01-27 Martin Buchholz <martin@xemacs.org>
* configure.in: Don't disable athena just because the user
specified --with-widgets=no.
2003-01-27 Martin Buchholz <martin@xemacs.org>
* configure.in (athena_3d):
AC_CHECK_LIB must always take a function as
argument, never a global variable. Some linkers can tell the
difference. So change:
threeDClassRec ==> Xaw3dComputeBottomShadowRGB
2003-03-02 Vin Shelton <acs@xemacs.org>
* etc/BETA: synced up with 21.5. Original patch from
Chris Palmer <chris@nodewarrior.org>.
2003-03-02 Robert Pluim <rpluim@bigfoot.com>
* configure.in : Don't use the u_int8_t etc typedefs on FreeBSD
when detecting Berkeley DB, as they conflict with <sys/types.h>.
2003-02-01 Martin Buchholz <martin@xemacs.org>
* configure.in: Don't look for Motif if it's already present in
$x_includes and $x_libraries.
2003-02-23 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Fix darwin regexp for pdump.
2003-02-10 Stephen J. Turnbull <stephen@xemacs.org>
* INSTALL: Recommend Mule, deprecate stripped binaries.
2003-01-15 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.12 "Portable Code" is released.
2003-01-13 Ilya Golubev <golubev@xemacs.org>
* etc/photos/golubev.png, etc/photos/golubevm.png: New.
2003-01-05 Rick Rankin <rick_rankin@yahoo.com>
* configure.in: Add -lkernel32 to the list of system libraries
linked under Cygwin. Needed for IsBadReadPtr().
2003-01-03 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.11 "Native Windows TTY Support" is released.
2003-01-02 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (Generate Installation):
* configure.usage (--use-union-type):
* PROBLEMS (XEmacs crashes mysteriously):
Deprecate --use-union-type for production builds.
2002-12-16 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Running): Document general regex.c/alloca crash.
2002-12-05 Stephen J. Turnbull <stephen@xemacs.org>
* etc/OXYMORONS (21.4.11): Inadvertant contrib from Andy.
2002-12-04 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Move pdump default for Darwin to opsys default area.
2002-11-15 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (getaddrinfo): Disable for hpux11*, not hpux11.
2002-11-12 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Default pdump on for Linux.
Improve "broken compiler" panic message per V. Kletnieks.
2002-11-12 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Running/Linux): Lesstif 0.93.36 info, from F. McIngvale.
2002-10-30 Katsumi Yamaoka <yamaoka@jpl.org>
* etc/TUTORIAL.ja: Typo fix.
2002-10-31 John Paul Wallington <jpw@shootybangbang.com>
* info/dir (File): button1 on a highlighted word doesn't
follow that cross-reference.
2002-11-11 Stephen J. Turnbull <steve@tleepslib.sk.tsukuba.ac.jp>
* etc/Emacs.ad (Emacs.bold-italic.attributeFont): Per G. Boffi.
2002-11-04 Giacomo Boffi <giacomo.boffi@polimi.it>
* etc/sample.Xdefaults (Emacs.bold-italic.attributeFont): New.
2002-11-02 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.10 "Military Intelligence" is released.
2002-11-01 Stephen J. Turnbull <stephen@xemacs.org>
* Makefile.in.in (lisp/custom-load.el): Depend on auto-autoloads.el.
2002-10-31 Christopher Sekiya <wileyc@rezrov.net>
* etc/OXYMORONS: "Too much Mozart" is an oxymoron.
2002-10-25 Steve Youngs <youngs@xemacs.org>
* etc/TUTORIAL.fr (suivante): Typo fix.
From juergen stuber <stuberj@mines.inpl-nancy.fr>.
2002-10-23 Stephen J. Turnbull <stephen@xemacs.org>
* Makefile.in.in (lisp/auto-autoloads.el):
(lisp/custom-load.el):
Use -no-autoloads for these targets; can't load 'em if they ain't.
2002-10-18 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Running/Cygwin): "No cygXpm-noX" fatal error.
2002-10-17 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Missing charsets): Remove ambiguity.
2002-10-10 Stephen J. Turnbull <stephen@xemacs.org>
* INSTALL (PREREQUISITES): Recommend Texinfo 4.2.
2002-10-09 Stephen J. Turnbull <stephen@xemacs.org>
* etc/BETA: Improve descriptions of XEmacs Patches; mention Design.
2002-10-08 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (MacOS/X): Describe stack limitation.
(Digital Unix): Generalize to all regexp-using applications.
* INSTALL (PREQUISITES): Mention MacOS/X stack limitation.
(PROBLEMS): Point to PROBLEMS file for build notes.
Thanks to Skip Montanaro for the report.
2002-10-07 Stephen J. Turnbull <stephen@xemacs.org>
* Makefile.in.in (all-elcs): Depend on autoloads.
(autoloads): Depend on lib-src, lwlib, and src.
2002-10-04 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (Check for POSIX functions): New section head.
getaddrinfo is detected on HP-UX 11.XX, but appears to be
non-functional. Disable it. Based on work by Darryl Okahata.
2002-09-27 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Running, General): Missing charset in FontSet warnings.
* Emacs.ad: Add charsets to *menubar*FontSet and *popup*FontSet.
2002-08-29 Ville Skyttä <ville.skytta@xemacs.org>
* Emacs.ad: Add *menubar*FontSet and *popup*FontSet entries,
(self-)obtained from Red Hat.
2002-09-25 Stephen J. Turnbull <stephen@xemacs.org>
* etc/OXYMORONS: A couple new ones.
2002-09-03 Stephen J. Turnbull <stephen@xemacs.org>
* configure.usage: Complete rewrite and reorganization.
2002-08-23 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.9 "Informed Management" is released.
2002-05-22 Andy Piper <andy@xemacs.org>
* build-msw-release.sh (TMPINSTALL): install to a tmpdir so that
xemacs can be running while we build a dist.
2002-04-26 Andy Piper <andy@xemacs.org>
* configure.in: make sure that a combined X and windows build gets
widgets.
2002-08-10 Stephen J. Turnbull <stephen@xemacs.org>
* etc/package-index.LATEST.pgp: Update.
2002-08-10 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (General advice): Define runtime and build problems.
2002-07-24 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (Running, Linux): Rewrite "Hannibal Lecter" ld stuff.
2002-07-12 Stephen J. Turnbull <stephen@xemacs.org>
* etc/BETA (Large contributions): Typo fix per JPW.
2002-07-12 Stephen J. Turnbull <stephen@xemacs.org>
* etc/BETA (Large contributions): New section. Reorganize file.
2002-06-04 Jerry James <james@xemacs.org>
* configure.usage: Identify --with-modules as autodetecting.
2002-07-04 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS: Add two basic configuration questions.
2002-05-17 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS: Describe "Hannibal Lecter" crash on Linux. Reorder
Linux runtime issues section.
* INSTALL: Improve description of mail locking.
2002-05-10 Stephen J. Turnbull <stephen@xemacs.org>
* etc/OXYMORONS (21.4.15): New. Not a reference to Vin.
* build-msw-release.sh: Synch to Andy.
2002-03-18 Gregory Steuck <greg-xemacs-patch@nest.cx>
* configure.in: Improve OpenBSD support: correct check for
socklen_t, check for libtermcap is libncurses.
2002-02-28 Malcolm Purvis <malcolmpurvis@optushome.com.au>
* configure.in: Protect nocomboreloc linker arguments to avoid
problem on the ppc.
2002-05-09 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.8 "Honest Recruiter" is released.
2002-05-09 Stephen J. Turnbull <stephen@xemacs.org>
* info/.cvsignore: New file from 21.5.
2002-05-04 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.7 "Economic Science" is released.
2002-05-04 Stephen J. Turnbull <stephen@xemacs.org>
* etc/sample.init.el: Fix comment typo about resize-minibuffer.
* etc/sample.init.el: Add description of initialization process,
the custom.el file, and code to load custom.el early instead of
late.
2002-05-04 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS (General): Decribe failed AUTH with EFS.
2002-04-22 Hrvoje Niksic <hniksic@xemacs.org>
* etc/photos/hniksic.png, etc/photos/hniksic.png: Update.
2002-04-25 Mike Fabian <mfabian@suse.de>
* configure.in: add option moduledir as mentioned
in ./configure --help
2001-04-21 Martin Buchholz <martin@xemacs.org>
* configure.in: Detect MacOS/X "Darwin".
Thanks to Greg Parker <gparker@cs.stanford.edu>.
2002-03-30 Steve Youngs <youngs@xemacs.org>
* etc/package-index.LATEST.pgp: Update to current reality.
2002-02-28 Stephen J. Turnbull <stephen@xemacs.org>
* etc/TUTORIAL.se: New from Mats Lidell.
2002-01-07 Jan Vroonhof <jan@xemacs.org>
* configure.in: Make explicit "--with-widgets" mean "=yes".
If "--with-widgets=yes" autodetect athena.
2001-12-29 Steve Youngs <youngs@xemacs.org>
* etc/package-index.LATEST.pgp: Update.
2001-12-13 William M. Perry <wmperry@gnu.org>
* configure.in (GTK): add -Wno-shadow.
2002-02-04 Stephen J. Turnbull <stephen@xemacs.org>
* etc/BETA: Synch to 21.5.
2002-01-23 Jarl Friis <jarl@diku.dk>
* etc/BETA (http): Informing of xemacs-patches mailing list. Added
note on patch etiquette.
2001-12-17 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.6 "Common Lisp" is released.
2001-12-04 Jan Vroonhof <jan.vroonhof@ntlworld.com>
* etc/photos/jan.png: New photo.
2001-11-21 Robert Pluim <rpluim@bigfoot.com>
* PROBLEMS (Sun/Solaris): Document fix for Motif related crashes
2001-12-15 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (Miscellaneous Flags): test for -z nocombreloc,
instead of -z combreloc, to avoid confusing Solaris.
2001-11-24 Stephen J. Turnbull <stephen@xemacs.org>
* configure.usage: Makefile.in -> Makefile.in.in.
2001-11-21 Stephen J. Turnbull <stephen@xemacs.org>
* Makefile.in.in: HP-UX needs LDFLAGS. From Lutz Jaenicke
<Lutz.Jaenicke@aet.TU-Cottbus.DE>.
2001-11-17 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Fix typos in comments.
* (Miscellaneous flags): Use -z nocombreloc if supported and !pdump.
* (Installation): Suggest pdump instead of -z nocomboreloc.
* configure.usage: Document --quick-build.
2001-10-30 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Typo in reference to with_ipv6_cname.
2001-10-30 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Initialize with_ipv6_cname=no.
* configure.usage: Document it.
2001-10-23 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.5 "Civil Service" is released.
2001-10-05 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in: Document that autoconf 2.5x is unsupported.
2001-10-02 Stephen J. Turnbull <stephen@xemacs.org>
* PROBLEMS: configure doesn't support --with-{ld,as}, use environment
variables. Suggested by Goran Koruga <goran.koruga@hermes.si>.
2001-09-17 Ben Wing <ben@xemacs.org>
* configure.in (TAB):
* configure.in (XE_COMPUTE_RUNPATH):
Don't use -Wshadow when compiling with g++ or you get buried in
silly warnings. This patch was already applied but somehow got
unapplied. Stephen?
2001-08-19 Charles Wilson <cwilson@ece.gatech.edu>
* configure.in (for graphics libraries): Detect Cygwin xpm-nox.
2001-08-02 Peter Brown <rendhalver@users.sourceforge.net>
Synch options documentation with those in configure.in:
* configure.usage (--with-dialogs): added lucid to list of options
* configure.usage (--with-widgets): added lucid to list of options
* configure.usage (--with-dragndrop): added GTK to list of protocols
* configure.usage (--mail-locking): added `locking' or `mmdf'. to list
of options
2001-09-25 Didier Verna <didier@xemacs.org>
* configure.ac: new. Autoconf 2.5x guard.
2001-08-29 Jered Floyd <jered@MIT.EDU>
* configure.in (moduledir,sitemoduledir,archlibdir):
Place arch-specific files under ${libdir}, not under ${datadir}.
2001-07-28 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.4 "Artificial Intelligence" is released.
2001-07-22 Stephen J. Turnbull <stephen@xemacs.org>
* configure.in (with_esd_sound): Default to no.
* configure.usage: Various documentation improvements.
* configure.in (--with-ipv6-cname): New Boolean option. Defaults on.
* configure.usage:
* PROBLEMS (IPv6 CNAME lookup):
Document it.
2001-07-18 Adrian Aichner <adrian@xemacs.org>
* etc\TUTORIAL: Fix minor typo.
* etc\TUTORIAL.de: Sync with TUTORIAL.
2001-05-23 Ben Wing <ben@xemacs.org>
* etc\sample.init.el:
* etc\sample.init.el (Init-safe-require): New.
* etc\sample.init.el ((fboundp 'pending-delete-mode)):
* etc\sample.init.el ((eq system-type 'windows-nt)):
* etc\sample.init.el (dired):
* etc\sample.init.el ((Init-safe-require 'efs-auto)):
* etc\sample.init.el (completer):
* etc\sample.init.el (crypt):
* etc\sample.init.el (filladapt):
* etc\sample.init.el ((fboundp 'turn-on-lazy-lock)):
* etc\sample.init.el ((fboundp 'resize-minibuffer-mode)):
* etc\sample.init.el ((Init-safe-require 'scroll-in-place)):
Rewrite to be much more careful about loading features -- now
it decays gracefully even in the complete absence of packages.
Also avoid doing obnoxious things when loading efs.
2001-04-14 Gordon Sadler <gbsadler1@lcisp.com>
* configure.in: Add GTK_CFLAGS to CPPFLAGS for glade.h check.
2001-07-01 Alexey Mahotkin <alexm@hsys.msk.ru>
* configure.in (option processing): with_widgets=m is ambiguous;
don't allow it.
(AC_CHECKING for the Athena widgets): Don't check for Athena when
with_widgets=no.
2001-05-29 Martin Buchholz <martin@xemacs.org>
* configure.in: Remove stray backslash.
2001-05-27 Kazuo Oishi <oishi@n-pl.org>
* etc/xemacs-ja.1: Replace with new translation.
2001-05-17 Andrew Begel <abegel@eecs.berkeley.edu>
* aclocal.m4 (LTLD): Don't use "gcc", use the ld reported by gcc.
2001-05-17 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.3 "Academic Rigor" is released.
2001-05-10 Paul Stodghill <stodghil@cs.cornell.edu>
* configure.in: Reverse the order of Windows and Linux sound tests
so that Cygwin will find Windows first.
2001-05-15 Steve Youngs <youngs@xemacs.org>
* etc/photos/{youngs,youngsm}.png: New photos.
2001-05-15 Steve Youngs <youngs@xemacs.org>
* etc/PACKAGES: Update to reflect new package dir tree.
2001-05-10 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.2 "Developer-Friendly Unix APIs" is released.
2001-05-04 Martin Buchholz <martin@xemacs.org>
* configure.in (opsys):
Use lower-case `uname -s` as the default value for opsys.
The previous code effectively did the non-sensical
opsys=$canonical because [] magically disappear in configure.in.
2001-01-31 Jason R. Mastaler <jason@xemacs.org>
* etc/FTP: Updated FTP mirrors list.
2001-05-04 Ben Wing <ben@xemacs.org>
* etc\NEWS: Remove kill-whole-line changes.
2001-04-25 Ben Wing <ben@xemacs.org>
* PROBLEMS:
* PROBLEMS (Note):
* PROBLEMS (ftp):
Correct general info about init file.
Fix up Cygwin section.
2001-04-19 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.1 "Copyleft" is released.
2001-04-17 Ben Wing <ben@xemacs.org>
* etc\NEWS: More changes.
* etc\sample.init.el (grep-all-files-in-current-directory-and-below):
Missing argument.
* etc\photos\fabrice.png:
* etc\photos\fabricem.png:
* etc\photos\juhp.png:
* etc\photos\juhpm.png:
Add photos.
* etc\photos\jwz.png:
* etc\photos\jwzm.png:
Update photos.
2001-04-17 Stephen J. Turnbull <stephen@xemacs.org>
* README:
* etc/README:
* etc/MACHINES:
* etc/PACKAGES:
* etc/TUTORIAL.ja:
Fixup 21.2 -> 21.4.
* configure: Regenerate.
* PROBLEMS (Running/Linux): Add entries for ESD interrupts and
Debian Athena3d workarounds.
* PROBLEMS: s/xemacs@xemacs.org/xemacs-beta@xemacs.org/ in
requests for developer volunteers.
2001-04-16 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.4.0 "Solid Vapor" is released.
2001-04-16 Stephen J. Turnbull <stephen@xemacs.org>
* etc/photos/wing*.png: Rename to ben*.png.
2001-04-14 Stephen J. Turnbull <stephen@xemacs.org>
* XEmacs 21.2.47 "Zephir" is released.
2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu>
* configure.in: Don't #define __STDC__ in confdefs.h
2001-03-30 Ben Wing <ben@xemacs.org>
* etc\sample.init.el:
* etc\sample.init.el (Init-kill-entire-line):
* etc\sample.init.el (describe-foo-at-point):
* etc\sample.init.el (kill-current-buffer):
* etc\sample.init.el (kill-current-buffer-and-window):
* etc\sample.init.el (grep-c-files): Removed.
* etc\sample.init.el (grep-all-files-history): New.
* etc\sample.init.el (grep-all-files-omitted-expressions): New.
* etc\sample.init.el (grep-all-files-omitted-directories): New.
* etc\sample.init.el (construct-grep-all-files-command): New.
* etc\sample.init.el (grep-all-files-in-current-directory): New.
* etc\sample.init.el (grep-lisp-files): Removed.
* etc\sample.init.el (grep-all-files-in-current-directory-and-below): New.
* etc\sample.init.el (clear-select):
* etc\sample.init.el ((control kp-add)):
* etc\sample.init.el (pause):
* etc\sample.init.el ((eq system-type 'windows-nt)):
Add documentation for defined functions. Change grep functions to
be more generally useful. Document more specifically what the
`menu-force' setting actually does -- what commands are overridden
and how to access them.
2001-03-30 Stephen J. Turnbull <stephen@xemacs.org>
* configure.usage: Document --with-file-coding.
* etc/OXYMORONS: Add 2 oxymorons, clean up numbering, close RFC.
* etc/NEWS: Fix typo.
* configure.in:
* configure:
Fix typo, add -Wsign-compare if GCC, run autoconf.
2001-03-23 Stephen J. Turnbull <stephen@xemacs.org>
* etc/gnuserv.1 (UNIX_DOMAIN_SOCKETS:
* PROBLEMS (Problems with running XEmacs):
Document TMPDIR lossage in gnuserv/gnuclient.
2001-03-06 Ben Wing <ben@xemacs.org>
* etc\sample.init.el:
* etc\sample.init.el (Init-kill-entire-line): New.
Fix to take into account the removed kill-whole-line changes.
2001-03-21 Martin Buchholz <martin@xemacs.org>
* XEmacs 21.2.46 "Urania" is released.
2001-03-19 Andy Piper <andy@xemacs.org>
* configure.in: default rel-alloc to off under cygwin
2001-03-15 Stephen J. Turnbull <stephen@xemacs.org>
* ChangeLog: Fix CVS commit breakage from GTK merge, log GTK merge.
* CHANGES-beta:
* configure.in:
Fix gratuitous whitespace changes from GTK merge.
* configure.usage: Untabify --with-{gtk,gnome}.
2001-03-15 Stephen J. Turnbull <stephen@xemacs.org>
* etc/OXYMORONS: New file of 21.4 codenames.
2001-03-12 Andy Piper <andy@xemacs.org>
* configure.in: only pick up mingw directory.
2001-03-02 Ben Wing <ben@xemacs.org>
* info\dir: Update to 21.4; clean up descriptions of manuals;
replace misnomer "Local Packages" with more correct "Other
Documentation".
2001-03-02 Ben Wing <ben@xemacs.org>
* etc\README: sample.emacs -> sample.init.el.
2001-03-09 William M. Perry <wmperry@aventail.com>
* CHANGES-beta:
* configure.in:
* configure.usage:
The Great GTK Merge.
2001-02-23 Andy Piper <andy@xemacs.org>
* configure.usage (--with-netinstall): add docs.
* configure.in: with_netinstall is a new option. Default to off.
2001-02-23 Martin Buchholz <martin@xemacs.org>
* XEmacs 21.2.45 "Thelxepeia" is released.
2001-02-13 Martin Buchholz <martin@xemacs.org>
* aclocal.m4: Fix module support for AIX cc.
Support possible future OSes irix7, aix5, osf[56].
2001-02-12 Martin Buchholz <martin@xemacs.org>
* configure.in: No need for NON_GNU_CPP on SCO.
2001-02-10 Martin Buchholz <martin@xemacs.org>
* etc/MACHINES: Rewritten. Bitrot discarded.
2001-02-09 Martin Buchholz <martin@xemacs.org>
* configure.in: Prefer utime to utimes - it's more standard.
Remove explicit checking for struct utimbuf.
Remove explicit checking for <utime.h>.
Combined into one simpler test for utime.
Add explicit check for utimes, if utime not found.
2001-02-08 Martin Buchholz <martin@xemacs.org>
* XEmacs 21.2.44 "Thalia" is released.
2001-01-16 Mike Sperber <mike@xemacs.org>
* configure.in: Remove bogus path variable definitions.
Reflect the fact that specifying --datadir also affects docdir and
archlibdir.
2001-02-06 Martin Buchholz <martin@xemacs.org>
* configure.in: Only use -Wpointer-arith on non-glibc systems.
2001-02-02 Martin Buchholz <martin@xemacs.org>
* configure.in (wnn): Make sure wnn/commonhd.h can be #included,
for the sake of gcc 2.97 fixincludes, which breaks it.
2001-01-27 Martin Buchholz <martin@xemacs.org>
* configure.in: Check for util.h for NetBSD's openpty.
2001-01-28 Martin Buchholz <martin@xemacs.org>
* config.sub: Upgrade to offical version 2001-01-12.
* config.guess: Upgrade to offical version 2001-01-17.
2001-01-26 Martin Buchholz <martin@xemacs.org>
* XEmacs 21.2.43 "Terspichore" is released.
2001-01-21 Steve Youngs <youngs@xemacs.org>
* ./etc/PACKAGES: Doc fix.
* README.packages: Doc fix.
2001-01-17 Steve Youngs <youngs@xemacs.org>
* README.packages: Update.
* ./etc/PACKAGES: Update.
2001-01-20 Martin Buchholz <martin@xemacs.org>
* XEmacs 21.2.42 "Poseidon" is released.
2001-01-18 Martin Buchholz <martin@xemacs.org>
* PROBLEMS (Sun/Solaris): Yet another microimprovement.
2001-01-17 Martin Buchholz <martin@xemacs.org>
* PROBLEMS (Sun/Solaris): Replace --with-gnu-ld=no with
--with-ld=/usr/ccs/bin/ld
2001-01-16 Robert Pluim <rpluim@bigfoot.com>
* PROBLEMS (SunOS/Solaris): Document workaround for GNU ld bug on
Solaris. Half mine, half Raymond Toy, half Martin Buchholz.
2001-01-16 Didier Verna <didier@xemacs.org>
* NEWS: document the modeline horizontal scrolling feature.
2001-01-17 Martin Buchholz <martin@xemacs.org>
* XEmacs 21.2.41 "Polyhymnia" is released.
2001-01-16 Martin Buchholz <martin@xemacs.org>
* PROBLEMS: Document MIPSpro ICE problem workaround.
2001-01-06 Golubev I. N. <gin@mo.msk.ru>
* configure.in: check for dlopen by linking program with
<dlfcn.h>.
2001-01-08 Andy Piper <andy@xemacs.org>