-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8451 lines (5062 loc) · 252 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
2010-07-24 Juanma Barranquero <[email protected]>
* .bzrignore, .gitignore: Ignore README.W32 on the root directory.
2010-07-24 Ken Brown <[email protected]> (tiny change)
* configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
2010-07-12 Andreas Schwab <[email protected]>
* configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
(PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
(C_OPTIMIZE_SWITCH): Remove.
(TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
2010-07-11 Andreas Schwab <[email protected]>
* configure.in: Don't check for index and rindex, check for strchr
and strrchr. Define strchr and strrchr as index and rindex,
resp., in src/config.h if not available.
2010-07-08 Dan Nicolaescu <[email protected]>
* configure.in: Use -Wold-style-definition if available.
This helps with the transition to standard C code, it can be
removed when done.
* configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
* configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
and MSWindows.
2010-07-07 Andreas Schwab <[email protected]>
* configure.in: Don't check for bcopy, bcmp, bzero. Don't include
<strings.h> and don't define bcopy, bzero, BCMP in config.h.
2010-07-07 Dan Nicolaescu <[email protected]>
* configure.in (getenv): Remove K&R declaration.
2010-07-02 Jan Djärv <[email protected]>
* configure.in: Remove define __P.
2010-07-02 Dan Nicolaescu <[email protected]>
* configure.in (--enable-use-lisp-union-type): New flag.
2010-06-30 Dan Nicolaescu <[email protected]>
Fix CFLAGS for non-GCC compilers.
* configure.in (CFLAGS): Always use -g like it was done before the
2010-03-30 change.
(REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
(Bug#6538)
2010-06-30 Glenn Morris <[email protected]>
* configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
Set with AC_DEFINE rather than AH_BOTTOM.
* configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
(USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
Set with shell, not cpp.
(LIBX): Remove, just use -lX11 in the one place this was used.
(cannot_dump): Replace with CANNOT_DUMP.
2010-06-28 Jan Djärv <[email protected]>
* configure.in: Add --with-x-toolkit=gtk3. Remove HAVE_GTK_MULTIDISPLAY,
check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
by minimum required Gtk+ 2.6). Add checks for functions introduced
in Gtk+ 2.14 or newer (bug#6505).
2010-06-26 Eli Zaretskii <[email protected]>
* config.bat: Remove white space around "+" in COPY commands.
2010-06-23 Glenn Morris <[email protected]>
* info/dir: Start descriptions in column 32, per Texinfo convention.
2010-06-16 Chong Yidong <[email protected]>
* INSTALL: Update font information (Bug#6389).
2010-06-16 Glenn Morris <[email protected]>
* INSTALL: General update.
2010-06-12 Glenn Morris <[email protected]>
* Makefile.in (install-arch-indep): Delete any old info .gz files first.
2010-06-11 Glenn Morris <[email protected]>
* configure.in (--without-compress-info): New option.
(GZIP_INFO): New output variable.
* Makefile.in (GZIP_INFO): New, set by configure.
(install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
Handle man pages in the same way.
2010-06-10 Glenn Morris <[email protected]>
* Makefile.in (install-arch-indep): Gzip the info files too.
* make-dist: Remove references to non-existent directories and files.
2010-06-08 Dan Nicolaescu <[email protected]>
* configure.in: Include <strings.h> and <string.h> instead of
"strings.h" and "string.h".
2010-06-06 Dan Nicolaescu <[email protected]>
* configure.in: Remove code dealing with BSTRING.
2010-06-03 Dan Nicolaescu <[email protected]>
* configure.in (AC_PREREQ): Require autoconf 2.65.
* configure.in (unxec): Do not define and substitute.
(UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
2010-06-03 Glenn Morris <[email protected]>
* configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
2010-06-02 Dan Nicolaescu <[email protected]>
Fix alloca definition when using gcc on non-gnu systems.
* configure.in: Use the code sequence indicated by "info autoconf"
for alloca (bug#6170).
2010-05-30 Stefan Monnier <[email protected]>
* .bzrignore: Ignore new files from trunk, which appear if you use
colocated branches (i.e. "bzr switch").
2010-05-28 Glenn Morris <[email protected]>
* configure.in: Simplify some of the $canonical tests.
2010-05-27 Glenn Morris <[email protected]>
* config.bat: Do not preprocess src/Makefile.in.
* configure.in: Do not preprocess src/Makefile.in.
(cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
(AC_EGREP_CPP): Test no longer needed.
* make-dist: No more Makefile.c files.
2010-05-26 Glenn Morris <[email protected]>
* configure.in (YMF_PASS_LDFLAGS): Remove.
(PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
* configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
Add $GNUSTEP_LOCAL_HEADERS.
(LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
* configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
(GNUSTEP_MAKEFILES): Remove.
(LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
stuff to here.
2010-05-25 Glenn Morris <[email protected]>
* configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
(LD_SWITCH_SYSTEM_TEMACS): ... to here.
* configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
(LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
here instead.
2010-05-24 Romain Francoise <[email protected]>
* make-dist: Look for version in src/emacs.c.
Use lisp/subr.el rather than lisp/version.el for location check.
2010-05-21 Glenn Morris <[email protected]>
* configure.in (MKDEPDIR): Parallel build tweak.
* configure.in (ns_frag): New output file.
* configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
(OLDXMENU_TARGET): Set to empty if USE_GTK.
* configure.in (cannot_dump): New output variable.
2010-05-20 enami tsugutomo <[email protected]>
* configure.in: On NetBSD, if terminfo is found, use it in
preference to termcap. (Bug#6190)
2010-05-20 Glenn Morris <[email protected]>
* make-dist (src): Include *.mk.
* config.bat: Concatenate deps.mk onto the end of src/Makefile.
* configure.in (DEPFLAGS, MKDEPDIR): New output variables.
(deps_frag): New output file.
(AUTO_DEPEND): Remove this definition.
* configure.in (--with-gtk, --with-gcc): Remove option stubs.
2010-05-19 Glenn Morris <[email protected]>
* configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
(ORDINARY_LINK): New AC_DEFINE.
(LIB_GCC): No need to set if ORDINARY_LINK.
2010-05-18 Glenn Morris <[email protected]>
* configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
(POST_ALLOC_OBJ) [!cygwin]: Set to empty.
* config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
* configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
(RALLOC_OBJ): New output variable.
* config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
* configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
2010-05-17 Stefan Monnier <[email protected]>
* Makefile.in (src): Provide the name of the VCS file that witnesses
a pull.
($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
2010-05-17 Glenn Morris <[email protected]>
* configure.in (OLDXMENU_DEPS): New output variable.
2010-05-16 Glenn Morris <[email protected]>
* configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
* configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
* Makefile.in (install-arch-dep): Update for above change.
* Makefile.in (ns_appdir): Remove.
(install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
* configure.in (TEMACS_LDFLAGS2): New output variable.
* configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
(START_FILES): Set to empty if NS_IMPL_GNUSTEP.
(GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
nothing uses.
2010-05-16 Dan Nicolaescu <[email protected]>
* configure.in: Remove references to usg5-4 and bsd-common, $opsys
does not use them.
(X11R5_INHIBIT_I18N): Remove, unused.
2010-05-15 Glenn Morris <[email protected]>
* configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
* configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
2010-05-15 Ken Raeburn <[email protected]>
* configure.in: Look for version string in its new location.
2010-05-15 Eli Zaretskii <[email protected]>
* config.bat: Remove support for DJGPP v1.x.
2010-05-15 Glenn Morris <[email protected]>
* configure.in (OLDXMENU_TARGET): New output variable.
* Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
* Makefile.in (install-arch-indep): Remove references to RCS, CVS,
and other files that no longer exist.
2010-05-14 Glenn Morris <[email protected]>
* configure.in (cpp_undefs): Add mktime, register, X11.
* configure.in (GPM_MOUSE_SUPPORT): Remove.
(MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
(HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
* configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
(GNUSTEP_MAKEFILES): Do not output.
2010-05-13 Glenn Morris <[email protected]>
* configure.in: Fix some paren typos.
* configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
* configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
2010-05-12 Glenn Morris <[email protected]>
* configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
* configure.in (LIB_GCC): New output variable.
2010-05-11 Glenn Morris <[email protected]>
* make-dist (msdos): No more mainmake.
* configure.in: Generate lib-src/Makefile directly, do not run cpp.
* config.bat: Do not run cpp on lib-src/Makefile.in.
* config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
2010-05-10 Glenn Morris <[email protected]>
* configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
* configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
(BLESSMAIL_TARGET): New output variable.
2010-05-08 Štěpán Němec <[email protected]> (tiny change)
* INSTALL: Fix typos.
2010-05-08 Chong Yidong <[email protected]>
* configure.in: Add check for buggy version of GCC (Bug#6031).
2010-05-08 Glenn Morris <[email protected]>
* configure.in (HAVE_LIBNCURSES): New local variable.
(TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
replacing cpp in src/s/*.h and src/Makefile.in.
2010-05-07 Chong Yidong <[email protected]>
* Version 23.2 released.
2010-05-07 Stefan Monnier <[email protected]>
* configure.in: Add tests for `isnan' and `copysign'.
2010-05-07 Eli Zaretskii <[email protected]>
* config.bat: Allow for 2 leading `#'s in comments in
src/Makefile.in.
2010-05-07 Glenn Morris <[email protected]>
* configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
Merges logic from src/s/* and src/Makefile.in.
(LD_SWITCH_SYSTEM_TEMACS): New output variable.
2010-05-07 Dan Nicolaescu <[email protected]>
Define START_FILES and LIB_STANDARD using autoconf.
* configure.in (START_FILES, LIB_STANDARD): New definitions, moved
here from src/s/*.h.
(HAVE_CRTIN): Remove, inline logic in the netbsd
START_FILES/LIB_STANDARD computation.
2010-05-06 Glenn Morris <[email protected]>
* configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
* Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
(LD_SWITCH_X_SITE): Remove unused variables.
2010-05-04 Glenn Morris <[email protected]>
* configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
as well.
(LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
* configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
* configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
variables, replacing c_switch_machine, c_switch_system.
* Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
@c_switch_system@.
2010-05-03 Glenn Morris <[email protected]>
* configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
* make-dist: There are no more src/m/*.inp files.
2010-05-01 Dan Nicolaescu <[email protected]>
* configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
(ac_link): Do not use ld_switch_machine.
2010-05-01 Glenn Morris <[email protected]>
* configure.in (OTHER_OBJ): Remove.
(PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
2010-04-30 Glenn Morris <[email protected]>
* configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
Elsewhere, maybe include it.
* configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
(OLDXMENU, LIBXMENU): New output variables.
* configure.in (OTHER_OBJ): New output variable.
2010-04-28 Glenn Morris <[email protected]>
* configure.in (CYGWIN_OBJ): New output variable.
* configure.in (GPM_MOUSE_SUPPORT): New output variable.
* configure.in (FONT_OBJ): New output variable.
* configure.in (LIBXMU): New output variable.
* configure.in (NS_OBJ, NS_SUPPORT): New output variables.
* configure.in (machine, canonical): On amdx86-64, check for a 32-bit
userland and maybe change values to i386 (move test from s/amdx86-64.h).
2010-04-27 Glenn Morris <[email protected]>
* configure.in (LIBXTR6): New output variable. Move unixware special
case here from src/s/unixware.h.
* configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
in Makefiles.
(TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
* configure.in (HAVE_MOTIF_2_1): Remove unused variable.
(LIBXP): No longer substitute in Makefiles.
(MOTIF_LIBW): New output variable. Move system-specific settings here
from src/s files.
2010-04-27 Dan Nicolaescu <[email protected]>
Reduce CPP usage.
* configure.in (LIB_X11_LIB): Remove, inline in the only user.
(unexec): Define unconditionally, all platforms define
UNEXEC. AC_SUBST it.
(UNEXEC_SRC): Remove, unused.
(C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
2010-04-27 Glenn Morris <[email protected]>
* configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
replaced by LIBXP.
* configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
(CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
On hpux10-20, default to /lib.
* configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
2010-04-26 Dan Nicolaescu <[email protected]>
* configure.in (LIBS_MACHINE): Remove, unused.
* configure.in (LIB_MATH): New output variable. Set it for some systems.
2010-04-24 Glenn Morris <[email protected]>
* configure.in (CRT_DIR): New output variable.
(--with-crt-dir): New option. (Bug#5655)
(HAVE_LIB64_DIR): Remove.
2010-04-22 Dan Nicolaescu <[email protected]>
* configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
2010-04-22 Miles Bader <[email protected]>
* configure.in: Get rid of "unix" pre-defined macro when
preprocessing Makefile. (Bug#5857)
2010-04-21 Andreas Schwab <[email protected]>
Avoid non-portable shell command negation
* configure.in: Revert last change.
2010-04-21 Jan Djärv <[email protected]>
* configure.in: Change "if test ! -f" to "if ! test -f".
2010-04-21 Glenn Morris <[email protected]>
* configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
(GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
2010-04-21 Karel Klíč <[email protected]>
* configure.in: New option: --with(out)-selinux, on by default.
Set HAVE_LIBSELINUX if we find libselinux, and substitute
LIBSELINUX_LIBS in Makefiles.
2010-04-01 Dan Nicolaescu <[email protected]>
* configure.in: Remove all references to LIBX11_SYSTEM.
2010-03-30 Dan Nicolaescu <[email protected]>
* configure.in: Remove all references to C_DEBUG_SWITCH.
2010-03-27 Eli Zaretskii <[email protected]>
* config.bat <lib-src>: Edit out lines that begin with several #
characters.
2010-03-20 Dan Nicolaescu <[email protected]>
* configure.in: Remove support for old UNIX System V systems and
for Unixware on non-x86 machines.
* configure.in: Remove support for Solaris on PPC and for old versions.
* configure.in: Remove non-working lynxos port.
2010-03-19 Dan Nicolaescu <[email protected]>
* .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
2010-03-19 Glenn Morris <[email protected]>
* configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
happy.
2010-03-18 Jan Djärv <[email protected]>
* configure.in: Check for tputs and friends, abort if not
found (bug#5735).
2010-03-18 Glenn Morris <[email protected]>
* configure.in (--with-x-toolkit): In the help text, say which options
are synonyms.
* configure.in (--with-mmdf, --with-mail-unlink):
New options, off by default.
(--with-mailhost): New option to set default POP host.
(LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
(LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
New variables, substituted in Makefiles.
(try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
(LIBGIF): Use AC_SUBST rather than AC_DEFINE.
(HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
(HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
(HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
2010-03-18 Tetsurou Okazaki <[email protected]> (tiny change)
* Makefile.in (uninstall): Handle the case where archlibdir does not
exist. (Bug#5720)
2010-03-12 Eli Zaretskii <[email protected]>
These changes remove termcap.c from the build on Posix platforms.
* configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
* configure: Regenerated.
2010-03-10 Chong Yidong <[email protected]>
* Branch for 23.2.
2010-01-31 Juri Linkov <[email protected]>
* .bzrignore: Add TAGS-LISP.
2010-01-23 Giorgos Keramidas <[email protected]> (tiny change)
* configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
this header file).
2010-01-12 Juanma Barranquero <[email protected]>
* .bzrignore: Ignore all .exe, instead of individual files.
2010-01-12 Chong Yidong <[email protected]>
* configure.in: Explicitly check for and link to -lXrender.
2010-01-12 Glenn Morris <[email protected]>
* INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
for bug reports for development versions.
2010-01-02 Eli Zaretskii <[email protected]>
* .bzrignore: Add more ignored patterns, including for the MS-DOS
build.
2009-12-27 Karl Fogel <kfogel@red-bean>
* INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
* INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
2009-12-17 Glenn Morris <[email protected]>
* .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
2009-12-15 Glenn Morris <[email protected]>
* info/dir: Add EDT entry.
* Makefile.in (INFO_FILES): Add edt.
2009-12-10 Jan Djärv <[email protected]>
* configure.in: Check for RSVG if GNUStep is used.
2009-12-09 Jan Djärv <[email protected]>
* configure.in: Don't check for RSVG or GConf unless X11 is used.
2009-12-09 Ken Brown <[email protected]> (tiny change)
* configure.in: Allow compiling Emacs with GTK on Cygwin.
2009-12-01 Glenn Morris <[email protected]>
* make-dist: Add etc/images/mpc directory.
2009-11-21 Jan Djärv <[email protected]>
* configure.in: Don't check for GConf unless X is used.
2009-11-20 Dan Nicolaescu <[email protected]>
* configure.in: Use -Wdeclaration-after-statement if available.
2009-11-17 Jan Djärv <[email protected]>
* configure.in: New option: --with(out)-gconf.
Set HAVE_GCONF if we find gconf.
2009-11-17 Glenn Morris <[email protected]>
* Makefile.in (INFO_FILES): Add semantic.
2009-11-16 Chong Yidong <[email protected]>
* info/dir: Add Semantic.
2009-11-16 Glenn Morris <[email protected]>
* Makefile.in (install-arch-indep): Use a more restrictive Makefile
pattern, so as not to exclude makefile*.el. (Bug#4912)
2009-11-14 Jan Djärv <[email protected]>
* configure.in: --enable-autodepend is new. Check for GNU Make
and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
gcc and GNU make to generate dependencies.
2009-10-27 Glenn Morris <[email protected]>
* make-dist: Make links to doc/lispintro/*.pdf.
2009-10-23 Jim Meyering <[email protected]>
* configure.in: Invoke $CPP with -P when creating Makefile and
src/Makefile. Without this, gcc 4.4.2 converts each
backslash-newline pair in the input to a bare newline, yielding
invalid Makefiles.
* configure: Regenerate.
2009-10-19 Dan Nicolaescu <[email protected]>
* configure.in (vax-dec-vms): Remove, not supported anymore.
2009-10-15 Adrian Robert <[email protected]>
* configure.in (NS_HAVE_NSINTEGER): Back out previous change.
(*-apple-darwin*): Add x86_64 architecture.
2009-10-14 Dan Nicolaescu <[email protected]>
* config.guess, config.sub: Updated from master source.
2009-10-11 Adrian Robert <[email protected]>
* configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
2009-10-07 Edward Trumbo <[email protected]> (tiny change)
* Makefile.in (INFO_FILES): Add EDE and EIEIO.
2009-09-29 Glenn Morris <[email protected]>
* make-dist (check): Update for two new levels of subdirectory in lisp/.
2009-09-17 Dan Nicolaescu <[email protected]>
* config.guess, config.sub: Updated from master source.
* configure.in (OTHER_FILES): Define using autoconf not cpp.
2009-09-14 Dan Nicolaescu <[email protected]>
* .dir-locals.el (change-log-mode): Restore bug-reference-mode.
2009-09-13 Chong Yidong <[email protected]>
* INSTALL: Update URL for GNU FreeFont.
2009-09-09 Glenn Morris <[email protected]>
* Makefile.in (install-arch-indep): Don't recursively change perms of
site-lisp and infodir. There may be non-Emacs files in here, and the
files supplied by Emacs are all handled explicitly already. (Bug#3800)
(mkdir): Set umask to world-readable before creating directories.
mkinstalldirs already checks if dirs exist, don't duplicate this test.
2009-08-29 Glenn Morris <[email protected]>
* Makefile.in (info-real): Don't ignore errors from doc Makefiles.
(info): Don't give an error in the absence of makeinfo - let the doc
Makefiles do that, if the info files need rebuilding. (Bug#3982)
2009-08-23 Ken Raeburn <[email protected]>
* Makefile.in (install-arch-indep): If the versioned DOC-####
generated during loadup+dump isn't found, install the plain DOC
file that always gets generated, in case CANNOT_DUMP is set.
* configure.in: Warn if package version specified here doesn't
match the version in version.el.
* configure: Regenerate.
2009-08-22 Michael Albinus <[email protected]>
* configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
* configure: Regenerate.
2009-08-19 Glenn Morris <[email protected]>
* INSTALL: Remove reference to cvtmail.
2009-08-15 CHENG Gao <[email protected]>
* Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
2009-08-02 Kevin Ryde <[email protected]>
* INSTALL: Fix free fonts URL.
2009-07-22 Glenn Morris <[email protected]>
* configure.in (AC_PREREQ): Require autoconf 2.62.
2009-07-04 Andreas Schwab <[email protected]>
* configure.in (--enable-checking, --enable-profiling):
Use AS_HELP_STRING.
2009-07-03 Dan Nicolaescu <[email protected]>
* configure.in (--enable-profiling): New option.
(mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
2009-06-27 Glenn Morris <[email protected]>
* configure.in: Restore netbsd on mips, mipsel, mipseb.
2009-06-26 Dan Nicolaescu <[email protected]>
* configure.in (--enable-checking): New option.
2009-06-24 Glenn Morris <[email protected]>
* make-dist: Warn if subdir does not exist in source.
(nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
(nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
No longer make links.
2009-06-24 Yavor Doganov <[email protected]>
* make-dist (tempdir): Don't create directories preferences.gorm
and preferences.nib, they are no longer required.
2009-06-21 Chong Yidong <[email protected]>
* Branch for 23.1.
2009-06-12 Chong Yidong <[email protected]>
* configure.in: Delete mac-fix-env target, which has been
removed (Bug#3531).
2009-05-06 Stefan Monnier <[email protected]>
* configure.in: Don't define CANNOT_DUMP for GNUStep any more.
2009-05-05 Per Starbäck <[email protected]> (tiny change)
* BUGS: Use new binding of view-emacs-problems.
2009-05-04 Simon Leinen <[email protected]> (tiny change)
* Makefile.in (install-arch-dep): Avoid using $$(..) construct,
for Solaris compatibility.
2009-04-25 Chong Yidong <[email protected]>
* configure: Regenerate.
* configure.in: Disable use of FreeType without libXft.
2009-04-19 Jan Djärv <[email protected]>
* configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
Check if it is declared in gtk.h.
2009-04-12 Andreas Schwab <[email protected]>
* Makefile.in (install-arch-indep): Remove .gitignore files.
2009-04-03 Kenichi Handa <[email protected]>
* INSTALL: Make the section "Complex Text Layout support
libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
2009-03-06 Dan Nicolaescu <[email protected]>
* configure.in (rs6000-ibm-aix6*): Fix typo.
2009-03-04 Glenn Morris <[email protected]>
* Makefile.in (INFO_FILES): Add auth.
2009-03-03 Glenn Morris <[email protected]>
* info/dir: Add Auth-source.
2009-02-28 Stefan Monnier <[email protected]>
* Makefile.in (src): Fix last change so the first `cd' doesn't affect
the second.
2009-02-28 Eli Zaretskii <[email protected]>
* config.bat: Copy .dbxinit to _dbxinit.
* make-dist (Making links to `info'): Remove .gitignore.
2009-02-28 Stefan Monnier <[email protected]>
* Makefile.in (lib-src, lisp): Use simpler rule.
(src): Be more specific to avoid recompiling all the .elc files just
because the bootstrap-emacs is missing.
2009-02-26 Chong Yidong <[email protected]>
* configure.in: Require librsvg >= 2.11.
2009-02-23 Adrian Robert <[email protected]>
* configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
(HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
2009-02-04 Adrian Robert <[email protected]>
* configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
2009-02-03 Glenn Morris <[email protected]>
* make-dist: Add some missing files, remove some that are no longer
present.
2009-02-02 Glenn Morris <[email protected]>
* make-dist: Add some missing nextstep/ files.
2009-01-22 Yavor Doganov <[email protected]> (tiny change)
* configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
2009-01-22 Dan Nicolaescu <[email protected]>
* configure.in: Add support for m68k-*-netbsd.
2009-01-14 Juri Linkov <[email protected]>
* .dir-locals.el (change-log-mode): Remove bug-reference-mode.
* .dir-locals.el (change-log-mode): Add bug-reference-url-format
and bug-reference-mode.
2009-01-11 Juri Linkov <[email protected]>
* INSTALL.CVS: Move configuration explicitly to the first step.
2009-01-09 Glenn Morris <[email protected]>
* .dir-locals.el: Don't set indent-tabs-mode.
2008-12-30 Kenichi Handa <[email protected]>
* configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
the function OTF_get_variation_glyphs.
2008-12-30 Jan Djärv <[email protected]>
* Makefile.in (install-arch-dep): Remove old directories in
ns_app* before moving new directories there.
2008-12-27 Dan Nicolaescu <[email protected]>
* .dir-locals.el: Remove non-working entry for pmail.
(fill-column): Fix typo.
(change-log-mode): Add fill column.
2008-12-26 Eli Zaretskii <[email protected]>
* config.bat: Produce _dir-locals.el from .dir-locals.el.
2008-12-23 Dan Nicolaescu <[email protected]>
* make-dist (tempdir): Distribute .dir-locals.el.
* .dir-locals.el: New file.
2008-12-19 Eli Zaretskii <[email protected]>
* config.bat (--with-system-malloc): New option; see msdos/INSTALL
for rationale.
2008-12-13 Glenn Morris <[email protected]>
* Makefile.in (install-arch-indep): Add new man-pages.
(manext): Remove variable.
(MAN_PAGES): New variable.
(install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
and remove.
(uninstall): Remove desktop file and icons, game scores if empty.
2008-12-11 Dan Nicolaescu <[email protected]>
* config.guess, config.sub: Updated from master source.
2008-12-10 Dan Nicolaescu <[email protected]>
* Makefile.in (install-arch-indep): Install ebrowse.1.
2008-12-09 Ali Bahrami <[email protected]> (tiny change)
* configure.in: Add Solaris on x86_64.
2008-12-09 Dan Nicolaescu <[email protected]>
* config.guess, config.sub: Updated from master source.
2008-12-08 Eli Zaretskii <[email protected]>
* info/dir: Fix last change.
2008-12-07 Eli Zaretskii <[email protected]>
* info/dir: Untabify.
2008-11-28 Ulrich Mueller <[email protected]>
* configure.in: Fix last change.
2008-11-28 Richard M Stallman <[email protected]>
* configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
New configurations.
2008-11-20 Josh Elsasser <[email protected]> (tiny change)
* configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
removed while misclassified as now unsupported hp9000s300. (Bug#1365)
2008-11-15 Eli Zaretskii <[email protected]>
* Makefile.in (INFO_FILES): Remove ns-emacs.
* info/dir (NS-Emacs): Remove entry.
2008-11-08 Eli Zaretskii <[email protected]>
* INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
2008-11-07 Glenn Morris <[email protected]>
* configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
2008-10-31 Eli Zaretskii <[email protected]>
* config.bat: Tell user to expect one "File not found" message
while the `doc' directory is being configured.