-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathChangeLog
7840 lines (4691 loc) · 234 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
2009-12-17 Glenn Morris <rgm@gnu.org>
* .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
2009-12-15 Glenn Morris <rgm@gnu.org>
* info/dir: Add EDT entry.
* Makefile.in (INFO_FILES): Add edt.
2009-12-10 Jan Djärv <jan.h.d@swipnet.se>
* configure.in: Check for RSVG if GNUStep is used.
2009-12-09 Jan Djärv <jan.h.d@swipnet.se>
* configure.in: Don't check for RSVG or GConf unless X11 is used.
2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
* configure.in: Allow compiling Emacs with GTK on Cygwin.
2009-12-01 Glenn Morris <rgm@gnu.org>
* make-dist: Add etc/images/mpc directory.
2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
* configure.in: Don't check for GConf unless X is used.
2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Use -Wdeclaration-after-statement if available.
2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
* configure.in: New option: --with(out)-gconf.
Set HAVE_GCONF if we find gconf.
2009-11-17 Glenn Morris <rgm@gnu.org>
* Makefile.in (INFO_FILES): Add semantic.
2009-11-16 Chong Yidong <cyd@stupidchicken.com>
* info/dir: Add Semantic.
2009-11-16 Glenn Morris <rgm@gnu.org>
* 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 <jan.h.d@swipnet.se>
* 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 <rgm@gnu.org>
* make-dist: Make links to doc/lispintro/*.pdf.
2009-10-23 Jim Meyering <meyering@redhat.com>
* 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 <dann@ics.uci.edu>
* configure.in (vax-dec-vms): Remove, not supported anymore.
2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in (NS_HAVE_NSINTEGER): Back out previous change.
(*-apple-darwin*): Add x86_64 architecture.
2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
* config.guess, config.sub: Updated from master source.
2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
2009-10-07 Edward Trumbo <etrumbo@comcast.net> (tiny change)
* Makefile.in (INFO_FILES): Add EDE and EIEIO.
2009-09-29 Glenn Morris <rgm@gnu.org>
* make-dist (check): Update for two new levels of subdirectory in lisp/.
2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
* config.guess, config.sub: Updated from master source.
* configure.in (OTHER_FILES): Define using autoconf not cpp.
2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
* .dir-locals.el (change-log-mode): Restore bug-reference-mode.
2009-09-13 Chong Yidong <cyd@stupidchicken.com>
* INSTALL: Update URL for GNU FreeFont.
2009-09-09 Glenn Morris <rgm@gnu.org>
* 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 <rgm@gnu.org>
* 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 <raeburn@raeburn.org>
* 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 <michael.albinus@gmx.de>
* configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
* configure: Regenerate.
2009-08-19 Glenn Morris <rgm@gnu.org>
* INSTALL: Remove reference to cvtmail.
2009-08-15 CHENG Gao <chenggao@gmail.com>
* Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
2009-08-02 Kevin Ryde <user42@zip.com.au>
* INSTALL: Fix free fonts URL.
2009-07-22 Glenn Morris <rgm@gnu.org>
* configure.in (AC_PREREQ): Require autoconf 2.62.
2009-07-04 Andreas Schwab <schwab@linux-m68k.org>
* configure.in (--enable-checking, --enable-profiling):
Use AS_HELP_STRING.
2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (--enable-profiling): New option.
(mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
2009-06-27 Glenn Morris <rgm@gnu.org>
* configure.in: Restore netbsd on mips, mipsel, mipseb.
2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (--enable-checking): New option.
2009-06-24 Glenn Morris <rgm@gnu.org>
* 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 <yavor@gnu.org>
* make-dist (tempdir): Don't create directories preferences.gorm
and preferences.nib, they are no longer required.
2009-06-21 Chong Yidong <cyd@stupidchicken.com>
* Branch for 23.1.
2009-06-12 Chong Yidong <cyd@stupidchicken.com>
* configure.in: Delete mac-fix-env target, which has been
removed (Bug#3531).
2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
* configure.in: Don't define CANNOT_DUMP for GNUStep any more.
2009-05-05 Per Starbäck <per@starback.se> (tiny change)
* BUGS: Use new binding of view-emacs-problems.
2009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
* Makefile.in (install-arch-dep): Avoid using $$(..) construct,
for Solaris compatibility.
2009-04-25 Chong Yidong <cyd@stupidchicken.com>
* configure: Regenerate.
* configure.in: Disable use of FreeType without libXft.
2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
* configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
Check if it is declared in gtk.h.
2009-04-12 Andreas Schwab <schwab@linux-m68k.org>
* Makefile.in (install-arch-indep): Remove .gitignore files.
2009-04-03 Kenichi Handa <handa@m17n.org>
* INSTALL: Make the section "Complex Text Layout support
libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
2009-03-06 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (rs6000-ibm-aix6*): Fix typo.
2009-03-04 Glenn Morris <rgm@gnu.org>
* Makefile.in (INFO_FILES): Add auth.
2009-03-03 Glenn Morris <rgm@gnu.org>
* info/dir: Add Auth-source.
2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (src): Fix last change so the first `cd' doesn't affect
the second.
2009-02-28 Eli Zaretskii <eliz@gnu.org>
* config.bat: Copy .dbxinit to _dbxinit.
* make-dist (Making links to `info'): Remove .gitignore.
2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
* 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 <cyd@stupidchicken.com>
* configure.in: Require librsvg >= 2.11.
2009-02-23 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
(HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
2009-02-03 Glenn Morris <rgm@gnu.org>
* make-dist: Add some missing files, remove some that are no longer
present.
2009-02-02 Glenn Morris <rgm@gnu.org>
* make-dist: Add some missing nextstep/ files.
2009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
* configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
2009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Add support for m68k-*-netbsd.
2009-01-14 Juri Linkov <juri@jurta.org>
* .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 <juri@jurta.org>
* INSTALL.CVS: Move configuration explicitly to the first step.
2009-01-09 Glenn Morris <rgm@gnu.org>
* .dir-locals.el: Don't set indent-tabs-mode.
2008-12-30 Kenichi Handa <handa@m17n.org>
* configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
the function OTF_get_variation_glyphs.
2008-12-30 Jan Djärv <jan.h.d@swipnet.se>
* Makefile.in (install-arch-dep): Remove old directories in
ns_app* before moving new directories there.
2008-12-27 Dan Nicolaescu <dann@ics.uci.edu>
* .dir-locals.el: Remove non-working entry for pmail.
(fill-column): Fix typo.
(change-log-mode): Add fill column.
2008-12-26 Eli Zaretskii <eliz@gnu.org>
* config.bat: Produce _dir-locals.el from .dir-locals.el.
2008-12-23 Dan Nicolaescu <dann@ics.uci.edu>
* make-dist (tempdir): Distribute .dir-locals.el.
* .dir-locals.el: New file.
2008-12-19 Eli Zaretskii <eliz@gnu.org>
* config.bat (--with-system-malloc): New option; see msdos/INSTALL
for rationale.
2008-12-13 Glenn Morris <rgm@gnu.org>
* 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 <dann@ics.uci.edu>
* config.guess, config.sub: Updated from master source.
2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
* Makefile.in (install-arch-indep): Install ebrowse.1.
2008-12-09 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
* configure.in: Add Solaris on x86_64.
2008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
* config.guess, config.sub: Updated from master source.
2008-12-08 Eli Zaretskii <eliz@gnu.org>
* info/dir: Fix last change.
2008-12-07 Eli Zaretskii <eliz@gnu.org>
* info/dir: Untabify.
2008-11-28 Ulrich Mueller <ulm@gentoo.org>
* configure.in: Fix last change.
2008-11-28 Richard M Stallman <rms@gnu.org>
* configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
New configurations.
2008-11-20 Josh Elsasser <josh@elsasser.org> (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 <eliz@gnu.org>
* Makefile.in (INFO_FILES): Remove ns-emacs.
* info/dir (NS-Emacs): Remove entry.
2008-11-08 Eli Zaretskii <eliz@gnu.org>
* INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
2008-11-07 Glenn Morris <rgm@gnu.org>
* configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
2008-10-31 Eli Zaretskii <eliz@gnu.org>
* config.bat: Tell user to expect one "File not found" message
while the `doc' directory is being configured.
2008-10-30 Chong Yidong <cyd@stupidchicken.com>
* update-subdirs: Put obsolete directory last.
2008-10-30 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
* configure.in: Check fontconfig always.
2008-10-30 Dan Nicolaescu <dann@ics.uci.edu>
* configure (*-solaris2.[7-9]*): Fix typo.
2008-10-24 Glenn Morris <rgm@gnu.org>
* configure.in (--without-sync-input, --with-pkg-config-prog):
Help strings start with lower case.
(--with-gnustep-conf): New option.
(GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
2008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
* configure.in: Use `.' instead of `source' to source GNUstep.conf.
Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
is not found. (Bug#1230)
2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
* configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
Use sol2-6.h for Solaris 7-9.
2008-10-18 Ulrich Mueller <ulm@gentoo.org>
* configure.in: Add support for GNU/Linux on SuperH.
2008-10-12 Andreas Schwab <schwab@suse.de>
* configure.in: Only check for m17n-flt if HAVE_LIBOTF.
2008-08-28 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
"X") to avoid confusion.
* configure: Regenerate.
2008-09-07 Romain Francoise <romain@orebokech.com>
* make-dist: Distribute doc/man/ChangeLog.
2008-08-28 Chong Yidong <cyd@stupidchicken.com>
* configure.in: Disable XFT and Freetype when without X.
* configure: Regenerate.
2008-08-24 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (NS_IMPL_GNUSTEP): Increase pure size.
2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
* configure.in (GNUSTEP_SYSTEM_HEADERS): Define
GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
* configure: Regenerate.
2008-08-20 Eli Zaretskii <eliz@gnu.org>
* configure.in: Move "#define subprocesses" before
config_opsysfile is included.
2008-08-19 Kenichi Handa <handa@m17n.org>
* INSTALL (Extra fonts): Mention local fonts, don't mention
mule-unicode.
2008-08-16 Chong Yidong <cyd@stupidchicken.com>
* make-dist: Omit info/.arch-inventory.
2008-08-16 Jason Rumney <jasonr@gnu.org>
* make-dist (tempdir/nt): Link emacsclient.rc.
2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
AC_SUBST it.
(GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
AC_SUBST it.
(OTHER_FILES): Always define for HAVE_NS.
(C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
* configure: Regenerate.
2008-08-07 Andreas Schwab <schwab@suse.de>
* configure.in: Correctly handle
--enable-cocoa-experimental-ctrl-g=no and
--enable-ns-self-contained=yes.
2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
(C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep. Don't
bother undef'ing since won't have desired effect.
2008-08-06 Andreas Schwab <schwab@suse.de>
* configure.in: Fix quoting.
2008-08-06 Chong Yidong <cyd@stupidchicken.com>
* configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
2008-08-05 Ulrich Mueller <ulm@gentoo.org>
* configure.in: Add checks for krb5_error.text and
krb5_error.e_text struct members.
2008-08-04 Chong Yidong <cyd@stupidchicken.com>
* configure.in: Test for existence of NSInteger.
Suggested by Yavor Doganov.
2008-08-02 Romain Francoise <romain@orebokech.com>
* Makefile.in (INFO_FILES): Add mairix-el.
2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
* make-dist:
* README: Remove VMS support.
* vms: Remove directory.
2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (MULTI_KBOARD): Remove.
2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (DO_BLOCK_INPUT): Remove, unused.
2008-07-29 Chong Yidong <cyd@stupidchicken.com>
* info/dir (File): Add mairix-el.
2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
Remove support for Mac Carbon.
* mac: Remove directory.
* make-dist:
* configure.in:
* README:
* Makefile.in:
* INSTALL: Remove code for Carbon.
* configure: Regenerate.
2008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
* Makefile.in (install-arch-dep): Fix typo in NS installation commands.
2008-07-25 Chong Yidong <cyd@stupidchicken.com>
* configure.in: Check for getrlimit.
* configure: Regenerate.
2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (LD_SWITCH_SITE): Remove, set the values directly
in src/Makefile.in.
(static): Remove, autoconf would always comment it out anyway.
(subprocesses): Define unconditionally.
2008-07-19 Yavor Doganov <yavor@gnu.org> (tiny change)
* configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
compilation under GNUstep.
2008-07-18 Kenichi Handa <handa@m17n.org>
* INSTALL (Complex Text Layout support libraries): Delete the
paragraph about --enable-font-backend.
2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in: Print out some info to user for NeXTstep builds.
(ns-app): Remove enable option.
(ns-self-contained): Add enable option.
(ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
GNUstep, use to set install prefixes, and substitute in Makefiles.
* configure: Regenerate.
* Makefile.in (install-arch-dep): Perform post-install cleanup inside
NS app bundle.
2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
* configure.in: Extract and substitute GNUSTEP_MAKEFILES.
2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
* configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
NS_IMPL_COCOA.
2008-07-16 Glenn Morris <rgm@gnu.org>
* configure.in (with_kerberos, with_kerberos5, with_hesiod):
Fix tests for OPTION_DEFAULT_OFF (variables never unset).
(with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
never unset.
* make-dist: Add nextstep/ directories.
(src, lib-src): Add .m files.
2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (freebsd, kfreebsd): Undo part of previous change.
(USER_FULL_NAME): Remove, not used anymore.
* configure: Regenerate.
2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
Changes and additions for NeXTstep windowing system (Cocoa and
GNUstep) support.
* configure.in: Add support for NS window system: --with-ns (default
off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
disable font backend if window system is "none", not if !HAVE_X11.
* Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
(install-arch-dep): Add commands to assemble NS .app package.
2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Use macppc for Darwin. Remove references to
desupported systems.
* configure: Regenerate.
2008-07-05 Glenn Morris <rgm@gnu.org>
* make-dist (EMACS): Doc fix.
(lisp): There are no *.dat or image files here any more.
(src): There are no *.s files here any more.
(etc/images, etc/images/*): Link to most regular files.
2008-07-04 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
* configure.in: Remove reference to deleted $USE_FONT_BACKEND.
2008-07-01 Glenn Morris <rgm@gnu.org>
* configure.in (cpp_undefs): Rename from `undefs', update uses.
Use $srcdir rather than $top_srcdir. Set before calling AC_OUTPUT,
and explicitly export there. (Bug#507.)
2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in:
* configure: Remove references to obsolete systems.
2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (Makefile): Use it for its timestamp value as well, and
make it depend on all other */.in files.
(src/Makefile, src/config.stamp, lib-src/Makefile)
(doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
(doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
(leim/Makefile, lisp/Makefile): Remove those overlapping targets.
(leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
* configure.in: Don't create src/config.stamp any more.
2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
2008-06-22 Glenn Morris <rgm@gnu.org>
* Makefile.in (top_bootclean): Remove obsolete references to lock/.
2008-06-21 Romain Francoise <romain@orebokech.com>
* Makefile.in (INFO_FILES): Add sasl.
2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
(bootstrap-build): Remove.
(top_bootclean): New var.
(top_distclean, bootstrap-clean): Use it.
(bootstrap): Don't recheck config. Make normally.
2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (SUBDIR): Include `lisp'.
(lisp): Depend on `src'.
(top_distclean): Don't remove config.status.
(bootstrap-clean): New target.
(maintainer-clean): Use it.
(bootstrap): Use bootstrap-clean. Re-run config.status.
(src/bootstrap-emacs${EXEEXT}): New target.
(bootstrap-build): Use it. Don't use bootstrap-prepare because
src/Makefile now takes care of it.
(bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
2008-06-15 Glenn Morris <rgm@gnu.org>
* info/dir: Add sasl.
2008-06-09 Alan Mackenzie <acm@muc.de>
* INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
2008-06-08 Eric S. Raymond <esr@snark.thyrsus.com>
* INSTALL.CVS: Indicate when "cvs update -d" may be needed.
2008-06-07 Glenn Morris <rgm@gnu.org>
* Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
serve no purpose.
2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
* configure: Regenerate.
2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
* update-subdirs: Don't touch subdirs.el if it is unchanged.
2008-05-14 Kenichi Handa <handa@m17n.org>
* configure: Regenerate.
* configure.in: Don't handle --disable-font-backend. Don't print
a message about a font backend.
2008-05-09 Glenn Morris <rgm@gnu.org>
* configure.in: Make absence of makeinfo a fatal error only if the info
files don't exist.
* Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
2008-05-07 Eli Zaretskii <eliz@gnu.org>
* config.bat: Fix last change: don't use < and > in "rem" lines,
they are interpreted as redirection by DOS shells.
2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* configure.in: Check availability of AvailabilityMacros.h
if HAVE_CARBON.
* configure: Regenerate.
2008-05-03 Glenn Morris <rgm@gnu.org>
* configure.in (x_libraries): Remove standard 64-bit directories -
experimental workaround for minor autoconf bug.
* configure.in (--without-makeinfo): New option. If set,
absence of suitable makeinfo is not a fatal error.
* Makefile.in (MAKEINFO): New, set by configure.
(install-arch-indep): Without makeinfo, ignore any missing manuals.
(info-real): New target.
(info): Without makeinfo, do nothing, else call `info-real'.
2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Remove hpux10.20 from the desupported list.
2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
* configure.in: Define USE_LUCID/USE_MOTIF in config.h.
2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
* configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
rather than change CPPFLAGS.
(HAVE_GTK): Rename to USE_GTK.
2008-04-16 Yavor Doganov <yavor@gnu.org> (tiny change)
* configure.in: Replace the obsolete macros AC_AIX and
AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
2008-04-05 Andreas Schwab <schwab@suse.de>
* configure.in: No longer create admin/unidata/Makefile.
2008-03-28 Andreas Schwab <schwab@suse.de>
* Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
(lisp/Makefile): New rule.
2008-03-13 Glenn Morris <rgm@gnu.org>
* configure.in (AC_INIT): Fix version number.
(sync-input): Reword the option, since it's on by default.
2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
* configure.in: Add --enable-sync-input, default yes.
2008-03-11 Glenn Morris <rgm@gnu.org>
* Makefile.in (install-etc, mkdir): Handle directory
etc/images/icons/hicolor/*/mimetypes/.
* make-dist: Handle icons/hicolor/scalable directory.
2008-03-05 Glenn Morris <rgm@gnu.org>
* configure.in: Enable font-backend by default.
(USE_FONT_BACKEND): Set to "no" in absence of X.
(PKG_CONFIG): Don't set multiple times, once is enough.
(HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
2008-03-03 Glenn Morris <rgm@gnu.org>
* Makefile.in (iconsrcdir): New variable.
(install-etc, mkdir): Use $iconsrcdir. Handle the `scalable' icon
directory.
2008-02-29 Glenn Morris <rgm@gnu.org>
* test/: New directory.
2008-02-27 Jan Djärv <jan.h.d@swipnet.se>
* configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
2008-02-25 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Print an error for systems that we think are obsolete
and are proposed to be removed. Remove some more unused systems.
Add support for powerpc-ibm-aix6*.
2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Remove references to obsolete variables and systems.
2008-02-21 Glenn Morris <rgm@gnu.org>
* Makefile.in (set_installuser): New.
(install-arch-indep): Use set_installuser to avoid duplicate code.
* README.unicode: Split into admin/notes/unicode,font-backend and
remove.
2008-02-10 Matthew Luckie <mjl@luckie.org.nz> (tiny change)
* configure.in (arm*-*-freebsd*): Add.
2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
dealing with obsolete variables.
2008-02-08 Glenn Morris <rgm@gnu.org>
* Makefile.in (check-info-dir): New target.
2008-02-08 Michael Olson <mwolson@gnu.org>
* Makefile.in (INFO_FILES): Add epa.
* info/dir: Add EasyPG Assistant manual to the "Emacs misc
features" section.
2008-02-06 Glenn Morris <rgm@gnu.org>
* configure.in (--with-gcc): Give an error saying this option has
been removed.
(--with-gtk): Remove this option.
2008-02-06 Tom Tromey <tromey@redhat.com>
* configure.in (--with-gcc): Remove.
* INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
2008-02-05 Ulrich Mueller <ulm@gentoo.org>
* INSTALL: Recommend giflib, not libungif.
2008-02-05 Tom Tromey <tromey@redhat.com>
* configure.in (--with-dbus): Default to enabled.
2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
* INSTALL (Complex Text Layout support libraries): New section.
2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
* make-dist: Remove references to files in mac/ that have been
deleted.
2008-02-02 Thien-Thi Nguyen <ttn@gnuvola.org>
* configure.in: For libotf and m17n-flt checks, set shell vars
HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
pkg_check_m17n_flt, respectively, for the sake of the summary output.
Reported by Ulrich Mueller.
2008-02-02 Eli Zaretskii <eliz@gnu.org>
* configure.in: If admin/unidata/UnicodeData.txt is present, copy
admin/unidata/Makefile.in to Makefile.
2008-02-02 Glenn Morris <rgm@gnu.org>
* configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
(USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
(HAVE_XFT): Add "Does Emacs use..." messages at end.
2008-02-01 Miles Bader <miles@gnu.org>
* configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
[libotf], and [m17n-flt] options.
2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
* configure.in: Add EMACS_ARG_N([libotf]...), and
EMACS_ARG_N([m17n-flt]. Set back OLD_CPPFLAGS to CPPFLAGS (not
CFLAGS) in XFT checking part. Don't alter C_SWITCH_X_SITE,
CFLAGS, and LIBS in checking of m17n-flt.
2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
* configure.in: Check the availability of m17n-flt library.
2008-02-01 Kenichi Handa <handa@m17n.org>
* configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
not available.
2008-02-01 Kenichi Handa <handa@m17n.org>
* configure.in: New args --enable-font-backend, --with-xft,
--with-freetyp. New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
HAVE_FREETYPE, HAVE_LIBOTF. New AC_SUBSTs XFT_LIBS,
FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
2008-02-01 Kenichi Handa <handa@m17n.org>
* make-dist: Include etc/charsets in tarball.
2008-02-01 Kenichi Handa <handa@m17n.org>
* configure.in: While running cpp on junk.c, include
-DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
exists.
2008-01-29 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (xtensa): Match more configurations.
2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Update comment.
2008-01-26 Glenn Morris <rgm@gnu.org>
* configure.in (--without-gcc): By default, neither off nor on.
(--with-carbon): Tone down rhetoric in help text.
2008-01-25 Glenn Morris <rgm@gnu.org>
* configure.in: Correct usage of OPTION_DEFAULT_ON,
OPTION_DEFAULT_OFF so that the defaults are as they used to be.
Default `Carbon' to off (it's unsupported).
2008-01-24 Glenn Morris <rgm@gnu.org>
* configure.in: Standardize dbus-related messages.
2008-01-23 Michael Olson <mwolson@gnu.org>
* configure.in (pkg-config-prog): Remove initial whitespace.
2008-01-23 Tom Tromey <tromey@redhat.com>
* configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
(EMACS_ARG_Y, EMACS_ARG_N): Remove.
Update all users.
2008-01-21 Dan Nicolaescu <dann@ics.uci.edu>
* config.guess, config.sub: Updated from master source.
2008-01-17 Andreas Schwab <schwab@suse.de>
* configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
2008-01-17 Glenn Morris <rgm@gnu.org>
* configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>