mirrored from git://git.sv.gnu.org/emacs.git
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathChangeLog.1
1568 lines (996 loc) · 46.7 KB
/
ChangeLog.1
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
2014-10-20 Glenn Morris <[email protected]>
* Merge in all changes up to 24.4 release.
2014-09-29 Eli Zaretskii <[email protected]>
* sed2v2.inp: Bump version to 25.0.50.
2014-08-28 Eli Zaretskii <[email protected]>
* sedlibmk.inp (gl_LIBOBJS): Add execinfo.o. Reported by Juan
Manuel Guerrero <[email protected]>.
* sed2v2.inp [DJGPP <= 2.03]: Add a prototype for snprintf, to
avoid compilation warning from newer GCC versions that have
snprintf as a built-in. Reported by Juan Manuel Guerrero
2014-08-09 Eli Zaretskii <[email protected]>
* INSTALL: Fix last change.
2014-08-09 Reuben Thomas <[email protected]>
* is_exec.c, sigaction.c: Remove files.
* sed2v2.inp: Remove support for DJGPP 2.01.
* INSTALL: Don't mention removed files msdos/is_exec.c and
sigaction.c, and increase minimum version of DJGPP to 2.02.
* README: Remove note on legal status of removed files
is_exec.c and sigaction.c.
2014-04-16 Eli Zaretskii <[email protected]>
* sedlisp.inp:
* sedlibmk.inp:
* sedleim.inp:
* sed3v2.inp:
* sed2v2.inp:
* sed1v2.inp: Update Sed scripts for Emacs 24.4.
* inttypes.h: Add PRIdMAX.
* INSTALL: Update for Emacs 24.4.
* sedadmin.inp: New file.
2013-12-24 Paul Eggert <[email protected]>
* autogen/Makefile.in: Update copyright year.
2013-11-05 Glenn Morris <[email protected]>
* autogen/config.in:
* autogen/Makefile.in: Move here from ../autogen.
* mainmake.v2: Use msdos/autogen rather than autogen.
2013-05-15 Stefan Monnier <[email protected]>
* sed1x.inp: Don't rewrite DOC any more.
2013-02-08 Paul Eggert <[email protected]>
* sedlibmk.inp: Sync with changes in lib/Makefile.in.
(HAVE_SECURE_GETENV, GNULIB_SECURE_GETENV): Edit to appropriate values.
2012-12-30 Eli Zaretskii <[email protected]>
* sed1v2.inp (TEMACS_LDFLAGS2): Remove editing.
(LIBS_GNUSTEP): Edit to empty.
2012-12-03 Eli Zaretskii <[email protected]>
* sed1v2.inp: Dump emacs.exe and copy to b-emacs.exe before
generating leim-list.el.
2012-11-24 Ken Brown <[email protected]>
* sed2v2.inp (HAVE_MOUSE): Remove.
2012-11-03 Eli Zaretskii <[email protected]>
* sedlibmk.inp: Sync with changes in lib/Makefile.in.
(HAVE_DECL_ENVIRON, GNULIB_ENVIRON): Edit to require declaration
through lib/unistd.h.
* sed1v2.inp: Sync with changes in src/Makefile.in.
* sed2v2.inp: Sync with changes in src/config.in.
2012-10-08 Eli Zaretskii <[email protected]>
* sed1v2.inp (W32_LIBS, W32_OBJ): Edit to empty.
2012-10-04 Paul Eggert <[email protected]>
Merge from gnulib.
* sedlibmk.inp (REPLACE_PTSNAME): Edit to appropriate value.
2012-09-27 Paul Eggert <[email protected]>
Check more robustly for timer_settime.
* sed1v2.inp, sed3v2.inp (LIB_TIMER_TIME): New macro.
2012-08-04 Eli Zaretskii <[email protected]>
* sedlibmk.inp (allocator.$(OBJEXT), careadlinkat.$(OBJEXT)): Fix
editing out.
* sed2v2.inp (IS_DEVICE_SEP): Edit to match ':'.
(IS_DIRECTORY_SEP, INTERNAL_TERMINAL): Fix Sed command syntax.
(MSDOS): Define only if undefined, as MSDOS is a built-in macro,
unless some std= switch to GCC is used.
2012-08-01 Glenn Morris <[email protected]>
* sed2v2.inp (HAVE_WCHAR_H): Fix typo.
* sed2v2.inp (MSDOS, DOS_NT, FLOAT_CHECK_DOMAIN)
(HAVE_INVERSE_HYPERBOLIC, DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP)
(INTERNAL_TERMINAL, NULL_DEVICE, SEPCHAR, USER_FULL_NAME)
(_setjmp, _longjmp): Move here from src/s/msdos.h.
(config_opsysfile, config_machfile): Remove.
* sed1v2.inp (M_FILE, S_FILE): Remove.
* mainmake.v2 (TAGS, tags): Remove src/s/msdos.h.
2012-07-31 Glenn Morris <[email protected]>
* sed1v2.inp (S_FILE): Update for format change.
2012-07-28 Paul Eggert <[email protected]>
Use Gnulib stdalign module (Bug#9772, Bug#9960).
* sed2v2.inp (HAVE_ATTRIBUTE_ALIGNED): Remove edit.
* sedlibmk.inp (STDALIGN_H, @GL_GENERATE_STDALIGN_H_TRUE@)
(GL_GENERATE_STDALIGN_H_FALSE): New edits.
2012-07-14 Eli Zaretskii <[email protected]>
* sed1v2.inp: In the recipe for $(leimdir)/leim-list.el, edit the
prerequisites to be "temacs$(EXEEXT) $(BOOTSTRAPEMACS)", to avoid
the need to rebuild $(bootstrap_exe), which requires a Unixy shell
via lisp/Makefile.in's "update-subdirs" command.
* sedlibmk.inp (am_libgnu_a_OBJECTS): Adjust the removal of
careadlinkat.$(OBJEXT) to the changes in lib/Makefile.in.
* sed2v2.inp (DATA_START, GC_SETJMP_WORKS, HAVE_MENUS)
(HAVE_MOUSE): Edit for DJGPP, according to what was previously
done on src/s/msdos.h.
2012-06-30 Eli Zaretskii <[email protected]>
* mainmake.v2 (bootstrap-clean): Do a maintainer-clean in lib, not
bootstrap-clean (which doesn't exist).
* inttypes.h (PRIuMAX) [__DJGPP__ < 2.04]: Define to "llu".
* sedleim.inp (MKDIR_P): Edit to DOS "md" command.
* sed1v2.inp (LIB_CLOCK_GETTIME): Edit to empty.
Remove lines that invoke PAXCTL.
(clean): Fix recipe not to run Unixy shell commands.
* sed2v2.inp (GETTIMEOFDAY_TIMEZONE): Edit to 'struct timezone'.
(HAVE_STRNCASECMP): Edit to 1.
* sed3v2.inp (LIB_CLOCK_GETTIME): Edit to empty.
(C_SWITCH_SYSTEM): Add "-I../msdos".
* sedlibmk.inp (GNULIB_GETTIMEOFDAY, GNULIB_PSELECT)
(GNULIB_SELECT, HAVE_STRUCT_TIMEVAL, HAVE_SYS_SELECT_H)
(HAVE_SYS_TIME_H, NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H)
(NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H, NEXT_SYS_SELECT_H)
(NEXT_SYS_TIME_H, REPLACE_GETTIMEOFDAY, REPLACE_PSELECT)
(REPLACE_STRUCT_TIMEVAL): Edit to appropriate values.
(BUILT_SOURCES): Edit out sys/select.h and sys/time.h.
(mostlyclean-local, distclean-generic): Fix recipe not to run
Unixy shell commands.
2012-06-26 Paul Eggert <[email protected]>
Clean out last vestiges of the old HAVE_CONFIG_H stuff.
* sedlibmk.inp (DEFS): Don't add -DHAVE_CONFIG_H.
2012-06-11 Glenn Morris <[email protected]>
* sed2v2.inp (SYSTEM_TYPE): Set it.
2012-05-27 Eli Zaretskii <[email protected]>
* sedlibmk.inp (GNULIB_GL_UNISTD_H_GETOPT, GNULIB_POSIX_OPENPT)
(GNULIB_ISATTY, GNULIB_PTSNAME_R, GNULIB_RANDOM)
(GNULIB_SETHOSTNAME, HAVE_POSIX_OPENPT, HAVE_PTSNAME_R)
(HAVE_RANDOM, HAVE_SETHOSTNAME, NEXT_SYS_TYPES_H)
(NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H, REPLACE_FTRUNCATE)
(REPLACE_ISATTY, REPLACE_PTSNAME_R, REPLACE_RANDOM_R)
(REPLACE_STRTOIMAX, STDALIGN_H, WINDOWS_64_BIT_OFF_T)
(WINDOWS_64_BIT_ST_SIZE, GL_GENERATE_STDALIGN_H_TRUE)
(GL_GENERATE_STDALIGN_H_FALSE): Edit as appropriate for DJGPP.
(cat FOO): Edit into "sed -e '' FOO >>".
2012-05-25 Eli Zaretskii <[email protected]>
* sed6.inp (INFO_EXT): Edit to .info.
(INFO_OPTS): Edit to --no-split.
2012-05-22 Paul Eggert <[email protected]>
Remove src/m/*.
* mainmake.v2 (TAGS tags): Don't look at $(CURDIR)/src/m/intel386.h.
2012-05-19 Paul Eggert <[email protected]>
* sed2v2.inp (HAVE_MBLEN): Remove.
* sed2x.inp (HAVE_XSETWMPROTOCOLS): Remove.
2012-04-21 Eli Zaretskii <[email protected]>
* sedleim.inp (RUN_EMACS): Replace BUILT_EMACS with EMACS.
Remove stale editing of "else make quail".
(.PHONY, compile-targets): Remove targets.
(compile-main): Edit into something that can be done without
requiring a Unixy shell.
(bootstrap-clean): Likewise: edit to not require $(setwins).
* sed1v2.inp: Edit "cd $(leimdir) && $(MAKE) ..." into the
equivalent "$(MAKE) $(MFLAGS) -C $(leimdir) ..." command.
2012-04-18 Paul Eggert <[email protected]>
configure: new option --enable-gcc-warnings (Bug#11207)
* sed1v2.inp, sed3v2.inp, sedlibmk.inp: GNULIB_WARN_CFLAGS,
WARN_CFLAGS, and WERROR_CFLAGS replace C_WARNINGS_SWITCH.
2012-04-11 Glenn Morris <[email protected]>
* sedlibmk.inp, sed1v2.inp: GNUSTEP_CFLAGS replaces C_SWITCH_X_SYSTEM.
2012-04-07 Glenn Morris <[email protected]>
* sed2v2.inp: Bump version to 24.1.50.
2012-02-04 Eli Zaretskii <[email protected]>
* sed3v2.inp (insrcdir): Use $(<F) rather than $<, as
command.com's "if not exist" doesn't grok forward slashes in file
names.
2012-01-14 Eli Zaretskii <[email protected]>
* sed4.inp (PATH_DUMPLOADSEARCH): Edit to "../lisp", for when the
default in src/epaths.in will change, maybe.
2011-10-31 Eli Zaretskii <[email protected]>
* sed3v2.inp (insrcdir): Comment out definition.
$(insrcdir): Edit into MS-DOS existence test.
2011-09-29 Eli Zaretskii <[email protected]>
* mainmake.v2 (boot): Condition the value on the existence of
autogen/README, not admin/admin.el, since the latter is now part
of the release tarball.
(install): Don't copy lib-src/fns.el, as that file is no longer
generated in that directory.
* sed1v2.inp (LIB_PTHREAD, LIB_PTHREAD_SIGMASK): Edit to empty.
(SETTINGS_CFLAGS, SETTINGS_LIBS): Edit these instead of
GCONF_CFLAGS and GCONF_LIBS.
* sedlibmk.inp (ALLOCA_H, AR, ARFLAGS, GNULIB_CHDIR, GNULIB_DUP)
(GNULIB_FDATASYNC, GNULIB_FDOPEN, GNULIB_FSTAT, GNULIB_PCLOSE)
(GNULIB_PTHREAD_SIGMASK, GNULIB_RAISE, GNULIB_SIGACTION)
(GNULIB_SIGPROCMASK, GNULIB_SIGNAL_H_SIGPIPE, HAVE_FDATASYNC)
(HAVE_PCLOSE, HAVE_POPEN, HAVE_POSIX_SIGNALBLOCKING)
(HAVE_PTHREAD_SIGMASK, HAVE_RAISE, HAVE_SIGACTION)
(HAVE_SIGHANDLER_T, HAVE_SIGINFO_T, HAVE_SIGSET_T)
(HAVE_STRUCT_SIGACTION_SA_SIGACTION)
(HAVE_TYPE_VOLATILE_SIG_ATOMIC_T, LIB_PTHREAD)
(LIB_PTHREAD_SIGMASK, NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H)
(NEXT_SIGNAL_H, REPLACE_FDOPEN, REPLACE_PTHREAD_SIGMASK)
(REPLACE_RAISE): New edits.
(gl_LIBOBJS): Remove md5.o, filemode.o, and sha1.o. Add
pthread_sigmask.o.
(@GL_GENERATE_ALLOCA_H_TRUE@, @GL_GENERATE_ALLOCA_H_FALSE@): Edit
to comment out unneeded lines.
(warn-on-use.h): Edit the recipe commands to work with DJGPP
without requiring a Unixy shell.
* inttypes.h (strtoimax) [DJGPP < 2.04]: New macro.
* sed2v2.inp (HAVE_ALLOCA, HAVE_DECL_STRTOLL, HAVE_DECL_STRTOIMAX)
(HAVE_STRTOLL, HAVE_SIGSET_T, HAVE_SNPRINTF): New edits.
2011-09-06 Paul Eggert <[email protected]>
* sedlibmk.inp (CONFIG_CLEAN_VPATH_FILES): Adjust to snippet moves
from top level to build-aux/snippet (Bug#9169).
2011-06-07 Eli Zaretskii <[email protected]>
* sedlibmk.inp (PTRDIFF_T_SUFFIX): Edit to nothing.
2011-05-28 Eli Zaretskii <[email protected]>
* sed1v2.inp: Edit "make-docfile -d FOO" commands to chdir back to
src/. Make editing of RUN_TEMACS commands less sensitive to
leading whitespace.
* sedlibmk.inp (gl_LIBOBJS): Add sha1.o.
2011-05-20 Eli Zaretskii <[email protected]>
* sed1v2.inp (make-docfile commands): Recognize only if the line
begins with a TAB. Use $(etc) rather than a literal "../etc".
(`sed SED-COMMAND $(srcdir)/lisp.mk`): Edit to replace with "$(lisp).
(@lisp_frag@): Edit out.
* sedlibmk.inp (GNULIB_GROUP_MEMBER, HAVE_GROUP_MEMBER): Edit to
zero.
2011-05-19 Glenn Morris <[email protected]>
* sed1x.inp (TOOLTIP_SUPPORT, WINDOW_SUPPORT):
* sed1v2.inp (MSDOS_SUPPORT, NS_SUPPORT, MOUSE_SUPPORT)
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): No need to edit these any more.
2011-05-07 Eli Zaretskii <[email protected]>
* inttypes.h: Include stdint.h.
(uintmax_t): Don't define, it is defined in stdint.h.
* sedlibmk.inp (am__append_1): Edit to comment out.
(am__append_2): Edit to expose.
(NEXT_AS_FIRST_DIRECTIVE_STDARG_H, NEXT_STDARG_H, STDARG_H): Edit
to empty.
(@GL_GENERATE_STDARG_H_TRUE@, @GL_GENERATE_STDARG_H_FALSE@): Edit
to comment out corresponding lines.
2011-04-30 Eli Zaretskii <[email protected]>
* inttypes.h: New file.
* sed2v2.inp (HAVE_DECL_STRTOULL, HAVE_DECL_STRTOUMAX)
(HAVE_STRTOULL, HAVE_STRTOULL): Define to 1.
* sedlibmk.inp (BUILT_SOURCES): Edit out inttypes.h.
* sed1v2.inp (CPPFLAGS): Edit to "-I../msdos".
Add ../msdos/inttypes.h to prerequisites of lread.o.
2011-04-24 Eli Zaretskii <[email protected]>
* sedlibmk.inp (am_libgnu_a_OBJECTS): Edit out
allocator.$(OBJEXT). Add editing for the new GNULIB_* and
REPLACE_* variables.
2011-04-06 Eli Zaretskii <[email protected]>
* sedlibmk.inp: Update checklist.
(am_libgnu_a_OBJECTS): Remove careadlinkat.$(OBJEXT).
($(top_builddir)/config.status): Edit away, both as target and in
prerequisites.
(@am__fastdepCC_FALSE@): Fix editing.
(@GL_GENERATE_STDBOOL_H_TRUE@, @GL_GENERATE_STDBOOL_H_FALSE@)
(@GL_GENERATE_STDDEF_H_TRUE@, @GL_GENERATE_STDDEF_H_FALSE@)
(@GL_GENERATE_STDINT_H_TRUE@, @GL_GENERATE_STDINT_H_FALSE@): Edit
to either nothing or "#".
2011-03-25 Eli Zaretskii <[email protected]>
* sedlibmk.inp: Adapt to addition of the gnulib stdio module.
Add a description of what needs to be done when a new gnulib
module is added.
(MKDIR_P): Fix replacement command.
2011-03-07 Chong Yidong <[email protected]>
* Version 23.3 released.
2011-02-26 Eli Zaretskii <[email protected]>
* sedlibmk.inp (BITSIZEOF_PTRDIFF_T, BITSIZEOF_SIG_ATOMIC_T)
(BITSIZEOF_SIZE_T, BITSIZEOF_WCHAR_T)
(BITSIZEOF_WINT_TGNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_FUTIMENS)
(GNULIB_LCHMOD, GNULIB_LSTAT, GNULIB_MBTOWC, GNULIB_MKDIRAT)
(GNULIB_MKFIFO, GNULIB_MKFIFOAT, GNULIB_MKNOD, GNULIB_MKNODAT)
(GNULIB_STAT, GNULIB_UTIMENSAT, GNULIB_WCTOMB, HAVE_FCHMODAT)
(HAVE_FSTATAT, HAVE_FUTIMENS, HAVE_INTTYPES_H, HAVE_LCHMOD)
(HAVE_LONG_LONG_INT, HAVE_LSTAT, HAVE_MKDIRAT, HAVE_MKFIFO)
(HAVE_MKFIFOAT, HAVE_MKNOD, HAVE_MKNODAT)
(HAVE_SIGNED_SIG_ATOMIC_T, HAVE_SIGNED_WCHAR_T)
(HAVE_SIGNED_WINT_T, HAVE_STDINT_H, HAVE_SYS_BITYPES_H)
(HAVE_SYS_INTTYPES_H, HAVE_SYS_TYPES_H)
(HAVE_UNSIGNED_LONG_LONG_INT, HAVE_UTIMENSAT, HAVE_WCHAR_H)
(MKDIR_P, NEXT_AS_FIRST_DIRECTIVE_STDINT_H)
(NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H, NEXT_STDINT_H)
(NEXT_SYS_STAT_H, REPLACE_LSTAT, REPLACE_MBTOWC, REPLACE_MKDIR)
(REPLACE_MKFIFO, REPLACE_MKNOD, REPLACE_STAT, REPLACE_UTIMENSAT)
(REPLACE_WCTOMB, SIG_ATOMIC_T_SUFFIX, SIZE_T_SUFFIX, STDINT_H)
(WCHAR_T_SUFFIX, WINT_T_SUFFIX, APPLE_UNIVERSAL_BUILD): New edits.
($(MKDIR_P)): Replace with equivalent DOS command.
(gl_LIBOBJS): Add md5.o and filemode.o.
* sed2v2.inp (BITSIZEOF_PTRDIFF_T, BITSIZEOF_SIG_ATOMIC_T)
(BITSIZEOF_SIZE_T, BITSIZEOF_WCHAR_T, BITSIZEOF_WINT_T)
(HAVE_LONG_LONG_INT, HAVE_SIGNED_SIG_ATOMIC_T, HAVE_SIGNED_WINT_T)
(HAVE_UNSIGNED_LONG_LONG_INT, HAVE_WCHAR_H, HAVE_INTTYPES_H): New
edits.
* depfiles.bat: Create a dummy .Po file only if a file by the same
name does not already exist in the deps/ subdirectory.
2011-02-19 Eli Zaretskii <[email protected]>
* depfiles.bat: New file.
* sedlibmk.inp: New file.
* sedlibcf.inp: New file.
* sedleim.inp (RUN_EMACS): Rename from RUN-EMACS.
(BUILT_EMACS): Rename from BUILT-EMACS.
* sed6.inp (MAKEINFO): Edit to "makeinfo".
(ENVADD): Adjust to MAKEINFO_OPTS.
(texinputdir): Don't edit.
* sed3v2.inp (-DVERSION): Edit out.
(LOADLIBES): Don't edit to empty.
* sed2v2.inp: Remove workaround for the "#if ! HAVE_MKTIME ||
BROKEN_MKTIME" stuff -- it's no longer in src/config.in.
(HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE_DECL_GETENV)
(HAVE__BOOL): Edit to 1.
(VERSION, inline, restrict): Edit for DJGPP.
(my_strftime): Edit to nstrftime.
* sed1v2.inp (NS_OBJC_OBJ): Edit to empty.
(@true): Edit to "@rem".
(move-if-change): Edit to "update".
(echo): Edit to "djecho".
(cd $(lib) && ...): Edit to "$(MAKE) -C ...".
(LIBOBJS): Edit to empty.
($(libsrc)/make-docfile): Two new edits, one each for every
invocation of make-docfile.
(move-if-change): Fix edit.
Remove some unused switches from $(ALL_CFLAGS), to make the GCC
command line shorter.
* mainmake.v2 (version): Remove, no longer needed (config.in
defines VERSION).
(all): Add lib.
(lib): New target and recipe.
(lib-src): Depend on lib.
(src): Depend on lib and lib-src.
(clean, mostlyclean, distclean, maintainer-clean, extraclean)
(bootstrap-clean): Recurse into lib.
(lib, lib-src, src): Specify "all" as an explicit target.
2011-01-08 Glenn Morris <[email protected]>
* sedleim.inp (RUN-EMACS): -batch implies --no-init-file.
2011-01-07 Eli Zaretskii <[email protected]>
* sed2v2.inp (HAVE___BUILTIN_UNWIND_INIT): Define.
2010-12-04 Andreas Schwab <[email protected]>
* sed1v2.inp (M_FILE, S_FILE): Add $(srcdir)/ prefix.
2010-10-15 Eli Zaretskii <[email protected]>
* sed1v2.inp: Use $(..) instead of ${..} in all edit commands.
Needed because of changes in 2010-10-10T14:43:[email protected].
* sed6.inp (mkinfodir): Edit to avoid Unix shell-isms. Needed
because of changes in 2010-10-09T18:31:[email protected].
2010-10-10 Dan Nicolaescu <[email protected]>
* sed1v2.inp (PROFILING_LDFLAGS):
* sed3v2.inp (PROFILING_LDFLAGS): Remove, not defined anymore.
2010-10-09 Glenn Morris <[email protected]>
* mainmake.v2 (install): Remove b2m.
2010-10-02 Eli Zaretskii <[email protected]>
* mainmake.v2 (TAGS tags): Use `find' to filter out loaddefs
files. Make all file names in TAGS tables absolute.
2010-10-01 Eli Zaretskii <[email protected]>
* sed1v2.inp (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS): Edit to empty.
2010-09-22 Eli Zaretskii <[email protected]>
* sed1v2.inp (LINKER): Don't edit, variable was removed from
src/Makefile.in.
(LD_FIRSTFLAG): Edit to empty.
2010-09-17 Eli Zaretskii <[email protected]>
* sed1v2.inp (LIBXML2_LIBS, LIBXML2_CFLAGS): Edit to empty.
2010-08-22 Chong Yidong <[email protected]>
* sedleim.inp (RUN-EMACS): Don't use --multibyte.
2010-08-20 Eli Zaretskii <[email protected]>
* sed1v2.inp (IMAGEMAGICK_LIBS, IMAGEMAGICK_CFLAGS): Edit to empty.
2010-08-15 Eli Zaretskii <[email protected]>
* mainmake.v2 (version): Update due to change in emacs.c.
2010-08-05 Eli Zaretskii <[email protected]>
* sed1v2.inp (UNEXEC_OBJ): Edit to unexcoff.o, due to renaming of
unexec.c => unexcoff.c.
2010-07-29 Chad Brown <[email protected]>
* sed2v2.inp (HAVE_DIRENT_H): Edit to 1.
2010-07-12 Eli Zaretskii <[email protected]>
* sed1v2.inp (C_WARNINGS_SWITCH, PROFILING_CFLAGS, PROFILING_LDFLAGS):
Edit to empty.
* sed3v2.inp(C_WARNINGS_SWITCH, PROFILING_CFLAGS, PROFILING_LDFLAGS):
Edit to empty.
2010-07-11 Eli Zaretskii <[email protected]>
* sed2v2.inp (HAVE_STRCHR, HAVE_STRRCHR): Don't edit, already
defined on <sys/config.h>.
2010-07-11 Andreas Schwab <[email protected]>
* sed2v2.inp (HAVE_INDEX, HAVE_RINDEX): Don't edit.
(HAVE_STRCHR, HAVE_STRRCHR): Edit to 1.
2010-07-08 Eli Zaretskii <[email protected]>
* sed1v2.inp (stamp-oldxmenu): Don't edit out in `temacs:' target,
which doesn't exist.
* sed2v2.inp (HAVE_MEMCPY): Don't edit, defined on <sys/config.h>.
2010-07-08 Dan Nicolaescu <[email protected]>
* sed1v2.inp: Remove reference to prefix-args.
2010-07-07 Andreas Schwab <[email protected]>
* sed2v2.inp (HAVE_MEMCPY, HAVE_MEMSET): Edit to 1.
(HAVE_BZERO): Don't edit.
2010-07-02 Eli Zaretskii <[email protected]>
* sed1v2.inp (LIB_GCC): Edit to empty.
Return back to ../src after compiling each .el file.
2010-06-30 Glenn Morris <[email protected]>
* sed1v2.inp (CANNOT_DUMP): Update for configure name change.
2010-06-26 Eli Zaretskii <[email protected]>
* mainmake.v2 (version): Use emacs_version[] in src/emacs.c
instead of lisp/version.el (see 2010-05-15T21:11:[email protected]).
* sed1v2.inp (MKDEPDIR): Edit to empty.
Delete lines in rules that invoke $(MKDEPDIR). Fix editing rules
that begin with "cd ../lisp". Edit out sh if-then-else-fi
constructs that test ${CANNOT_DUMP}. Edit out "|| exit ;\"
constructs in emacs${EXEEXT} rule.
2010-06-03 Dan Nicolaescu <[email protected]>
* sed1v2.inp (UNEXEC_OBJ): Use UNEXEC_OBJ instead of unexec.
2010-06-03 Glenn Morris <[email protected]>
* sed2v2.inp: Do not edit HAVE_ALLOCA.
2010-05-26 Glenn Morris <[email protected]>
* sed1v2.inp (@PRE_EDIT_LDFLAGS@, @POST_EDIT_LDFLAGS@): Edit to nothing.
* sed1v2.inp (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
No longer present.
2010-05-25 Glenn Morris <[email protected]>
* sed1v2.inp (LD_SWITCH_SYSTEM_EXTRA): No longer present.
2010-05-21 Glenn Morris <[email protected]>
* sed1v2.inp (@ns_frag@): Edit to nothing.
* sed1x.inp (OLDXMENU): Replace any initial value.
* sed1v2.inp (OLDXMENU): Edit to "nothing".
* sed1v2.inp (CANNOT_DUMP): Edit to no.
2010-05-20 Glenn Morris <[email protected]>
* sed1v2.inp (DEPFLAGS, deps_frag): Edit to empty.
(MKDEPDIR): Edit to ':'.
2010-05-19 Glenn Morris <[email protected]>
* sed2v2.inp (ORDINARY_LINK): Set here rather than in s/msdos.h.
* sed1v2.inp (LD): Edit to $(CC).
(YMF_PASS_LDFLAGS): Edit to `flags'.
2010-05-18 Eli Zaretskii <[email protected]>
* sed1x.inp: Add copyright notice.
2010-05-18 Glenn Morris <[email protected]>
* sed1v2.inp (RALLOC_OBJ): Edit to ralloc.o.
* sed1v2.inp (GMALLOC_OBJ): Edit to gmalloc.o.
(VMLIMIT_OBJ): Edit to vm-limit.o.
2010-05-17 Glenn Morris <[email protected]>
* sed1v2.inp (OLDXMENU_DEPS): Edit to empty.
* sed1x.inp (OLDXMENU_DEPS): Edit to ${OLDXMENU} ../src/${OLDXMENU}.
2010-05-16 Glenn Morris <[email protected]>
* sed1v2.inp (TEMACS_LDFLAGS2): Edit to $(LDFLAGS).
* sed1v2.inp (GNUSTEP_SYSTEM_LIBRARIES): Remove.
(NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): Edit to empty.
2010-05-15 Glenn Morris <[email protected]>
* sed1v2.inp (LIBXMENU): Edit to empty.
* sed1x.inp (LIBXMENU): Expect empty initial value.
* sed1v2.inp (OLDXMENU): Edit to empty.
* sed1x.inp (OLDXMENU): Expect empty initial value.
* sed1v2.inp (LIBX_OTHER): Edit to empty.
* sed1x.inp (LIBX_OTHER): Expect empty initial value.
* sed1v2.inp (FONT_OBJ): Edit to empty for non-X case.
* sed1x.inp (FONT_OBJ): Edit to xfont.o for X case.
2010-05-15 Eli Zaretskii <[email protected]>
* sed3v2.inp (INSTALLABLES): Edit out extra ${EXEEXT} after
"emacsclient".
(emacsserver, timer, wakeup): Remove edit-out commands.
* sed1v2.inp (MSDOS_OBJ): Add w16select.o.
(TERMCAP_OBJ): Add termcap.o.
2010-05-15 Glenn Morris <[email protected]>
* sed1v2.inp (OLDXMENU_TARGET): Edit to empty.
* sed1x.inp (OLDXMENU_TARGET): Edit to really-oldxmenu.
* sed1v2.inp (LIBXT_OTHER): Edit to empty.
2010-05-14 Glenn Morris <[email protected]>
* sed1v2.inp (ns_appdir, ns_appbindir, ns_appsrc): Edit to empty.
* sed1v2.inp (MSDOS_OBJ): Edit to dosfns.o msdos.o.
(MSDOS_SUPPORT): Edit to $(MSDOS_SUPPORT_REAL).
* sed1x.inp (MSDOS_X_OBJ): Edit to w16select.o termcap.o.
* sed2x.inp (HAVE_WINDOW_SYSTEM): Define.
* sed1x.inp (TOOLTIP_SUPPORT): Edit to ${lispsource}tooltip.elc.
(WINDOW_SUPPORT): Edit to $(BASE_WINDOW_SUPPORT) $(X_WINDOW_SUPPORT).
* sed1v2.inp (MOUSE_SUPPORT): Edit to $(REAL_MOUSE_SUPPORT).
(TOOLTIP_SUPPORT, WINDOW_SUPPORT): Edit to empty.
* sed1v2.inp (FONT_OBJ): Use the plain X version (no XFT, Freetype).
* sed1v2.inp (@NS_IMPL_GNUSTEP_INC@): Edit to nil.
2010-05-13 Glenn Morris <[email protected]>
* sed1x.inp (OLDXMENU): Edit to ${oldXMenudir}libXMenu11.a.
(LIBXMENU): Edit to ${OLDXMENU}.
(LIBX_OTHER): Edit to ${LIBXT} ${LIBX_EXTRA}.
* sed1v2.inp (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
(FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS, FREETYPE_LIBS)
(LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS, M17N_FLT_LIBS)
(GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBRESOLV, LIBGPM):
Edit to empty.
(LIB_MATH): Edit to -lm.
(UNEXEC_OBJ): Edit to unexec.o.
2010-05-12 Glenn Morris <[email protected]>
* sed3v2.inp (INSTALLABLES): No more @LIB_SRC_EXTRA_INSTALLABLES@.
* sed1v2.inp (LIB_GCC): Edit to -Lgcc.
2010-05-11 Glenn Morris <[email protected]>
* sed1x.inp (LIBS_SYSTEM): Edit to -lxext -lsys.
* sed3x.inp: New file.
2010-05-10 Glenn Morris <[email protected]>
* sed1v2.inp, sed3v2.inp (LIBS_SYSTEM): Edit to empty.
* sed3v2.inp (BLESSMAIL_TARGET): Edit to need-blessmail.
2010-05-07 Chong Yidong <[email protected]>
* Version 23.2 released.
2010-05-08 Glenn Morris <[email protected]>
* sed1v2.inp (LIBS_TERMCAP): Edit to empty.
(TERMCAP_OBJ): Edit to tparam.o.
2010-05-07 Eli Zaretskii <[email protected]>
Fix breakage due to autoconfiscation of Makefile.in files.
* sed3v2.inp (C_SWITCH_MACHINE): Edit to empty.
* sed1v2.inp (@LIB_MATH@): Edit to -lm.
(C_SWITCH_MACHINE, C_SWITCH_SYSTEM, LD_SWITCH_SYSTEM_TEMACS)
(LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH)
(LD_SWITCH_SYSTEM, LD_SWITCH_SYSTEM_EXTRA, LIBTIFF, LIBJPEG)
(LIBPNG, LIBGIF, LIBXPM, XFT_LIBS, DBUS_CFLAGS, DBUS_LIBS)
(DBUS_OBJ, GCONF_CFLAGS, GCONF_LIBS, GTK_OBJ, LIBXMU, LIBXSM)
(LIBXTR6, XOBJ, TOOLKIT_LIBW, WIDGET_OBJ, CYGWIN_OBJ, NS_OBJ)
(NS_SUPPORT, LIBSELINUX_LIBS, START_FILES): Edit to empty.
(XMENU_OBJ): Edit to xmenu.o.
(FONT_OBJ): Edit to value used for X on Unix.
(PRE_ALLOC_OBJ): Edit to lastfile.o.
(POST_ALLOC_OBJ): Edit to $(vmlimitobj).
(@unexec@): Edit to unexec.o.
2010-05-06 Glenn Morris <[email protected]>
* sed1v2.inp, sed5x.inp: Remove LN_S, unused.
2010-04-01 Eli Zaretskii <[email protected]>
Remove support for DJGPP v1.x.
* sed3.inp:
* sed2.inp:
* sed1.inp:
* mainmake: Files removed.
2010-03-27 Eli Zaretskii <[email protected]>
* sedlisp.inp (VPATH): Don't edit, no longer needed.
(lisp, srcdir): Adapt to lisp/Makefile.in changes.
(abs_top_builddir): New edit.
* sed3v2.inp (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
(LIBHESIOD, LIBRESOLV, LIBS_MAIL): Edit to empty values.
* sed3.inp (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
(LIBHESIOD, LIBRESOLV, LIBS_MAIL): Edit to empty values.
* sed1v2.inp (abs_builddir): Edit into "../src".
2010-03-10 Chong Yidong <[email protected]>
* Branch for 23.2.
2010-02-19 Eli Zaretskii <[email protected]>
* INSTALL: Remove a CVS-specific note. Update for latest versions
of Windows.
2009-09-17 Eli Zaretskii <[email protected]>
* sed1v2.inp (OTHER_FILES): Edit to empty.
2009-09-11 Eli Zaretskii <[email protected]>
* mainmake.v2 (bootstrap): Ensure enough environment space
will be available to run config.bat.
2009-08-27 Eli Zaretskii <[email protected]>
* sed1v2.inp (buildobj.h): Replace "echo" with "djecho".
2009-06-21 Chong Yidong <[email protected]>
* Branch for 23.1.
2009-04-14 Eli Zaretskii <[email protected]>
* mainmake.v2 (src) <gdb.ini>: Don't replace the line with
x_error_quitter; instead, append "set environment NAME" to the end.
Set NAME and USERNAME in the environment to the same value.
2009-02-28 Eli Zaretskii <[email protected]>
* mainmake.v2 (boot): Don't require b-emacs.exe if not building
out of CVS. (Bug#2151)
2008-12-19 Eli Zaretskii <[email protected]>
* INSTALL: Document the problems on Windows Vista and the
--with-system-malloc option to config.bat.
* sedalloc.inp: New file.
2008-11-21 Eli Zaretskii <[email protected]>
* mainmake.v2 (misc): New target.
(all, info): Depend on `misc'.
2008-11-15 Eli Zaretskii <[email protected]>
* mainmake.v2 (src): Move removal of src/bootlisp after recursing
into `lisp'.
Make bootstrap work again:
* mainmake.v2 (boot): New variable.
(src): Pass $(boot) to sub-Make. Remove src/bootlisp. If
src/bootlisp exists after running Make, run Make in `lisp' as
well.
(clean, mostlyclean): Remove bogus repeated clean in the top-level
directory.
(info, bootstrap-clean): New targets.
(bootstrap): Depend only on bootstrap-clean. Commands modified to
be equivalent to top-level Makefile.in.
(bootfast, bootstrap-lisp-1, bootstrap-lisp, bootstrap-src)
(bootstrap-clean-before, bootstrap-clean-after): Targets deleted.
(clean, mostlyclean, distclean, maintainer-clean, extraclean):
Don't recurse into lwlib and oldXMenu.
* sed1v2.inp: Create bootlisp when bootstrapping b-emacs.exe.
* sedlisp.inp: Don't convert *.el files to Unix text format, and
don't copy ldefs-boot.el into loaddefs.el.
* sed6.inp: Edit out Unixy shell features in maintainer-clean
targets in doc/ Makefiles.
* INSTALL: Update the list of utilities needed by lisp/Makefile
and for bootstrapping.
2008-11-08 Eli Zaretskii <[email protected]>
* INSTALL: New file, with build instructions moved from the
top-level INSTALL.
2008-10-14 Eli Zaretskii <[email protected]>
* sedlisp.inp (lisp): Set to absolute file name of current
directory, not to ".", to have it on EMACSLOADPATH when we descend
into subdirectories.
2008-08-23 Eli Zaretskii <[email protected]>
* sed2v2.inp: Remove definition of USER_FULL_NAME (now defined on
src/s/msdos.h).
* sed3v2.inp: Edit out @LIB_SRC_EXTRA_INSTALLABLES@.
* sed1v2.inp (version): Define to empty.
(ALL_CFLAGS, LIBES): Edit out @FOO@ stuff.
(EXEEXT): Define to .exe.
Edit "ln -f" into "cp -pf".
Edit "touch" into "djecho $@ >", to avoid requiring touch.exe.
(b-emacs${EXEEXT}): Don't remove emacs.exe and temacs.exe.
Edit "`/bin/pwd`/" into "./".
Stubify emacs after it is dumped, to produce emacs.exe.
Stubedit temacs.exe to 1024K of stack, emacs.exe to 2048K, and
b-emacs.exe to 3072K.
* mainmake.v2 (emacs lispref lispintro): Chdir under doc/.
(emacs): Rename from `man', to reflect changes in doc directory
structure. All callers changed.
(clean mostlyclean distclean maintainer-clean extraclean): Chdir
into doc/ for manuals. Add misc subdirectory.
(src): Pass an empty BOOTSTRAPEMACS variable to src/Makefile.
(install): Don't stubify/stubedit emacs.exe, this is now done by
src/Makefile.
2007-10-05 Eli Zaretskii <[email protected]>
* sed6.inp: Update comment to reflect doc directory structure.
* sed1v2.inp (RSVG_LIBS, RSVG_CFLAGS): Edit out.
2007-07-25 Glenn Morris <[email protected]>
* Relicense all FSF files to GPLv3 or later.
* COPYING: Switch to GPLv3.
2007-06-02 Chong Yidong <[email protected]>
* Version 22.1 released.
2007-02-10 Glenn Morris <[email protected]>
* COPYING.DJ: Remove file since it is no longer needed (see README
for details).
2007-01-28 Glenn Morris <[email protected]>
* COPYING.DJ: New file.
2006-12-04 Eli Zaretskii <[email protected]>
* sed2v2.inp (HAVE_SYNC): Define.
2006-11-25 Eli Zaretskii <[email protected]>
* sed1v2.inp (CFLAGS_SOUND): Edit out.
2006-09-15 Jay Belanger <[email protected]>
* COPYING: Replace "Library Public License" by "Lesser Public
License" throughout.
2005-09-10 Sven Joachim <[email protected]> (tiny change)
* sed3v2.inp (GETOPT_H, GETOPTOBJS): Define to use getopt.h,
getopt.o and getopt1.o.
2005-07-04 Lute Kamstra <[email protected]>
Update FSF's address in GPL notices.
2004-11-10 Eli Zaretskii <[email protected]>
* sed1.inp: Revert last change.
2004-11-09 Jan Djärv <[email protected]>
* sed1v2.inp: Use djecho for buildobj.lst.
* sed1.inp: Ditto.
2004-11-08 Eli Zaretskii <[email protected]>
* sedlisp.inp (bootstrap-clean): Copy ldefs-boot.el onto
loaddefs.el, unless the latter exists and is newer.
* mainmake.v2 (mostlyclean, distclean, maintainer-clean)
(extraclean, bootfast): New targets.
(top_distclean): New macro, used by distclean, maintainer-clean,
and extraclean.
(.PHONY): Add bootfast.
(bootstrap): Make bootstrap-after in lisp.
(bootstrap-clean-before): Clean in man, lispref, and lispintro as well.
* sed2v2.inp (HAVE_BZERO): Define for GCC v3.x and later.
2004-10-06 Eli Zaretskii <[email protected]>
* sed1v2.inp (LC_ALL=C): Fix src/Makefile breakage caused by
recent (2004-09-24) changes in src/Makefile.in.
2004-08-14 Eli Zaretskii <[email protected]>
* sedleim.inp: Remove the lines which say "<TAB>@true", to avoid
running a Unixy shell and to reincarnate the "Nothing to be done
for `all'" message from Make when there's nothing to be done.
2004-05-11 Eli Zaretskii <[email protected]>
* sedleim.inp (distclean): Remove stamp-subdirs.
(SUBDIRS): Don't use `touch', use `djecho' instead.
(changed.tit, changed.misc): Use `djecho' instead of `echo'.
2004-05-02 Eli Zaretskii <[email protected]>
* sed2v2.inp (HAVE_GETRUSAGE): Define.
2003-09-22 Eli Zaretskii <[email protected]>
* mainmake.v2 (man lispref lispintro): Specify an explicit target
`info', like Makefile.in does.
2003-08-31 Eli Zaretskii <[email protected]>