forked from MidnightCommander/mc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1742 lines (1156 loc) · 55 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
2001-08-24 Pavel Roskin <[email protected]>
* configure.in: Remove support for curses libraries other than
ncurses.
* acinclude.m4: Likewise.
* FAQ: Remove everything about UNIX curses.
* INSTALL: Likewise.
* configure.in: Enable large file support by default.
* NEWS: Mention it.
* INSTALL: Document it. Minor fixes.
* FAQ: Remove information about GNOME edition. Minor fixes.
* README: Likewise.
* NEWS: Mention removing the GNOME edition.
* acinclude.m4: Include all used macros from the macros
directory.
* autogen.sh: Remove all references to "macros".
* Makefile.am: Likewise.
* configure.in: Remove all GNOME stuff except GNOME_VFS_CHECKS.
* Makefile.am (SUBDIRS): Remove all GNOME-related directories.
* lib/startup.links: Remove.
* lib/README.desktop: Likewise.
* lib/Makefile.am: Remove all references to DESKTOP_FILES.
* configure.in: Bump version to 4.5.99a.
* configure.in: Bump version to 4.5.55. Release mc-4.5.55.
* po/*.po: Regenerate.
* AUTHORS: Update and spell check.
* FAQ: Likewise.
* INSTALL: Likewise.
* INSTALL.FAST: Likewise.
* NEWS: Likewise.
* README.PC: Likewise.
* README.QNX: Likewise.
* configure.in: Add check for stropts.h.
2001-08-23 Pavel Roskin <[email protected]>
* lib/edit.indent.rc: Create cooledit.error right away to
override its old contents. Don't use ksh extentions. Treat *.C
files as C++. Recognize more C++ extensions. Support java.
Update URL for "astyle". Quote all arguments to protect spaces.
* lib/edit.spell.rc: Don't save terminal settings - mc does it
itself. Quote all arguments to protect spaces.
2001-08-21 Pavel Roskin <[email protected]>
* doc-gnome/C/figs/Makefile.am: Don't install GNOME-specific
files if GNOME frontend is disabled.
* idl/Makefile.am: Likewise.
* lib/Makefile.am: Likewise.
* new_icons/Makefile.am: Likewise.
* autogen.sh: Fall back to aclocal without "-I gettext.m4" in
case it already has gettext macros elsewhere and doesn't like
duplicates (i.e. it's aclocal from Automake-1.4).
2001-08-20 Pavel Roskin <[email protected]>
* AUTHORS: Updated.
* INSTALL: Likewise.
* NEWS: Likewise.
* doc/mc.1.in: Likewise.
* doc/mcserv.8.in: Likewise.
* acinclude.m4 (AC_GET_FS_INFO): Specify includes when checking
for sys/mount.h.
2001-08-19 Andras Timar <[email protected]>
* lib/Makefile.am: Added Hungarian hints
* lib/mc.hint.hu: by Arpad Biro <[email protected]>
2001-08-19 Pavel Roskin <[email protected]>
* lib/mc.lib: Add definition for "bs" for xterm and xterm-color.
2001-08-17 Pavel Roskin <[email protected]>
* syntax/po.syntax: New file - PO file highlighting.
From David Martin <[email protected]>
* syntax/Makefile.am: Add po.syntax.
* lib/mc.lib: Add "delete=\e[3~" for xterm and xterm-color -
it's sometimes missing from the databases.
2001-08-16 Abel Cheung <[email protected]>
* lib/mc.hint.zh_TW.Big5 -> lib/mc.hint.zh: Temporary measure.
* lib/Makefile.am: Reflect above change.
2001-08-15 Pavel Roskin <[email protected]>
* doc/mc.1.in (Terminal databases): Recommend using \e, not \E.
2001-08-14 Pavel Roskin <[email protected]>
* lib/mc.lib: Add popular sequences for "home" and "end" in
"xterm" and "xterm-color" terminals.
2001-08-13 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Move ls-lR.gz before generic gzip support.
Replace "Can't" with "Cannot" everywhere.
2001-08-12 Pavel Roskin <[email protected]>
* edit/edit_key_translator.c (cooledit_key_map): Use Ctrl-O for
subshell, not for "Open file...".
(emacs_key_map): Likewise.
* README: Changes from Frederic L. W. Meunier <[email protected]>
2001-08-10 Pavel Roskin <[email protected]>
* Makefile.am (EXTRA_DIST): Remove BUGS.
* doc/Makefile.am (EXTRA_DIST): Remove LSM and FILES.
* BUGS: Remove. Bugzilla.gnome.org doesn't have those bugs.
* doc/LSM: Remove, it's outdated.
* doc/FILES: Likewise.
* doc/DEVEL: Remove information about FILES.
* FAQ: Eliminate all broken URLs on the MC site.
From Frederic L. W. Meunier <[email protected]>
* FAQ: Restore information about xterm.
2001-08-08 Pavel Roskin <[email protected]>
* FAQ: Changes from Frederic L. W. Meunier <[email protected]>
2001-08-07 Pavel Roskin <[email protected]>
* doc/mc.1.in (Internal File Viewer): Document Ctrl-O and F17.
* doc/mc.1.in: Fix all broken links.
2001-08-06 Pavel Roskin <[email protected]>
* INSTALL: Numerous changes. Declare old curses obsolete.
Partly from Frederic L. W. Meunier <[email protected]>
* doc/mc.1.in (Menu Bar): Add link to the "Options Menu".
2001-08-03 Abel Cheung <[email protected]>
* lib/Makefile.am: Remove space after backslash introduced in the
previous commit.
* lib/mc.hint.zh_TW.Big5: New file.
* lib/Makefile.am: Added mc.hint.zh_TW.Big5
2001-08-02 Pavel Roskin <[email protected]>
* lib/mc.hint.uk: New file.
From Maksym Polyakov <[email protected]>
* lib/Makefile.am: Add mc.hint.uk.
2001-08-01 Pavel Roskin <[email protected]>
* lib/mc.hint.nl: New file.
From Steef Boerrigter <[email protected]>
* lib/Makefile.am: Add mc.hint.nl.
* lib/mc.hint: Remove ftp site. Update copyright.
* lib/mc.hint.cs: Likewise.
* lib/mc.hint.es: Likewise.
* lib/mc.hint.it: Likewise.
* lib/mc.hint.pl: Likewise.
* lib/mc.hint.ru: Likewise. Shorten some lines.
* edit/Makefile.in: Allow running "make install" before "make all".
* gtkedit/Makefile.in: Likewise.
2001-07-31 Pavel Roskin <[email protected]>
* lib/edit.spell.rc: New file. Invoke ispell on Ctrl-p in the
editor.
* lib/Makefile.am: Add lib/edit.spell.rc.
* autogen.sh: Use gettextize.
* ABOUT-NLS: Remove from CVS, it's installed by autogen.sh.
* po/Makefile.in.in: Likewise.
2001-07-29 Pavel Roskin <[email protected]>
* syntax/slang.syntax: New file.
From Walery Studennikov <[email protected]>
* syntax/Makefile.am: Add slang.syntax.
2001-07-27 Pavel Roskin <[email protected]>
* extraconf.h: Move WITH_BACKGROUND here.
2001-07-24 Pavel Roskin <[email protected]>
* doc/mc.1.in: Quote all section headers. Minor formatting fix.
2001-07-23 Pavel Roskin <[email protected]>
* doc/mc.1.in: Fix description of mc.lib. Fix broken links.
2001-07-20 Pavel Roskin <[email protected]>
* Make.common.in: Move all defines ...
* gnome/Makefile.in: ... here ...
* src/Makefile.in: ... and here.
2001-07-19 Pavel Roskin <[email protected]>
* configure.in: Don't check for getwd, it's completely
eliminated.
* INSTALL: Remove reference to HAVE_GETWD.
* lib/mc.ext.in: Fix opening info pages on VFS. Modernize
entries for compressed cpio archives.
* lib/mc.ext.in: Comment changes. Remove rules for programs -
they were only used in obsolete frontends. Don't ever use %view
without commands - it's slower and loses user settings, e.g.
hex mode. Put shared libraries before man pages and read.me
before .me macros so that they match correctly. Use nm for
shared libraries. Add rules for StarOffice and AbiWord.
2001-07-14 Pavel Roskin <[email protected]>
* configure.in: Bump version to 4.5.54a.
2001-07-13 Pavel Roskin <[email protected]>
* lib/mcserv.init: Fix exit status.
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=44601
* lib/mc.ext.in: Anchor all regexes in the type/ rules except
"executable", which should follow a space. Simplify rules for
images. Add shell/ rule for *.info files. Fix all incorrect
uses of the alternation operator.
Reported by Oskar Liljeblad and Michel Casabona.
2001-07-12 Pavel Roskin <[email protected]>
* configure.in: Don't check for iconv, it's already checked for
in AM_GNU_GETTEXT.
2001-07-10 Pavel Roskin <[email protected]>
* doc/mc.1.in: Update documentation about hex search.
* edit/edit_key_translator.c (cooledit_key_map): Bind
Ctrl-Shift-Up and Ctrl-Shift-Down to scroll with highlight.
From Steef Boerrigter <[email protected]>
* edit/Makefile.in: Make edit.o depend on edit_key_translator.c.
* edit/edit_key_translator.c (cooledit_key_map): Add support
for bracket matching on Alt-B.
* gtkedit/gtkeditkey.c: Likewise.
From Steef Boerrigter <[email protected]>
2001-07-06 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Use nm to view object files.
* Make.common.in: Remove GNOME-specific and unused definitions.
Partly moved to gnome/Makefile.in.
* configure.in: Remove all references to SEDCMD and SEDCMD2 -
they are usused.
* Make.common.in: Likewise.
2001-06-29 Pavel Roskin <[email protected]>
* ABOUT-NLS: Update to the version from gettext-0.10.38.
* Make.common.in (XCPPFLAGS): Don't add -I$(top_srcdir) - it's
now done in configure. Move -I.. to the beginning.
* Makefile.am (SUBDIRS): Move intl po to the beginning, since
libintl.a may be required to link mc.
(ACLOCAL_M4_SOURCES): Remove macros/gnome-gettext.m4.
* configure.in: Use AM_GNU_GETTEXT instead of AM_GNOME_GETTEXT.
Move all i18n code to one place. Don't substitute INTLSUB - it's
unused. Substitute INTLDEPS, since AM_GNU_GETTEXT doesn't do it.
Remove SCO-specific i18n hacks. Add -I$(top_srcdir) to CPPFLAGS.
2001-06-25 Pavel Roskin <[email protected]>
* configure.in: For Autoconf 2.50+, use AC_SYS_LARGEFILE.
It should be enabled explicitly by giving `--enable-largefile'
to configure.
* INSTALL: Document it.
2001-06-22 Pavel Roskin <[email protected]>
* extraconf.h: Don't define HAVE_INFOMOUNT_QNX on QNX Neutrino.
* acinclude.m4 (AC_GET_FS_INFO): Fix checking for f_fstypename
in struct statfs.
Reported by Libor Motyèka <[email protected]>.
* acinclude.m4 (AC_GET_FS_INFO): Warn only once that the list of
mounted filesystems cannot be read. Don't define NO_INFOMOUNT.
Define HAVE_INFOMOUNT_LIST if a any suitable function has been
found.
* extraconf.h: Define HAVE_INFOMOUNT and HAVE_INFOMOUNT_QNX.
2001-06-19 Pavel Roskin <[email protected]>
* configure.in: Check for telldir and seekdir. Join adjacent
calls to AC_CHECK_FUNCS.
2001-06-16 Pavel Roskin <[email protected]>
* Makefile.am: Change the order of SUBDIRS to fully compile text
edition before compiling anything for GNOME.
* mc.spec.in: Don't use brace expansion to avoid implicit
build-time dependency on bash.
2001-06-13 Pavel Roskin <[email protected]>
* acinclude.m4 (AC_SHORT_D_NAME_LEN): Fix compiler warnings in
the test code.
* configure.in: Fix compiler warnings in the arguments to
AC_TRY_WARNINGS. Fix value of NEED_CRYPT_PROTOTYPE - add spaces
around `=' in the `test' command.
2001-06-07 Pavel Roskin <[email protected]>
* doc-gnome/C/gmc.sgml: Remove index - it's not used in the
GNOME documentation template.
* doc-gnome/C/mkhtml: Don't generate index.
* doc-gnome/C/Makefile.am: Don't distribute genindex.sgml.
2001-06-06 Pavel Roskin <[email protected]>
* lib/Makefile.am: Make compatible with Automake 1.4 - remove
conditional variables from EXTRA_DIST.
2001-06-05 Pavel Roskin <[email protected]>
* edit/edit_key_translator.c [HAVE_CHARSET]: Add charset
conversion support.
From Walery Studennikov <[email protected]>.
* extraconf.h [HAVE_X]: Undefine HAVE_TEXTMODE_X11_SUPPORT.
2001-06-01 Pavel Roskin <[email protected]>
* lib/mc.charsets: Synchronize with the latest patch - remove
a comment.
2001-05-30 Pavel Roskin <[email protected]>
* extraconf.h [HAVE_X]: Undefine HAVE_CHARSET - it doesn't
work with GNOME.
* lib/mc.charsets: New file. From Walery Studennikov.
* lib/Makefile.am: Distribute mc.charsets. Install it if
the charset support is enabled.
* configure.in: Add check for iconv() and the necessary code
to support the charset selection patch.
* configure.in: Add check for ESCDELAY variable in ncurses.
2001-05-29 Pavel Roskin <[email protected]>
* extraconf.h [!USE_VFS]: Undefine USE_NETCODE and
USE_EXT2FSLIB.
* extraconf.h: Remove unused HAS_DIRECT_COLOR_ACCESS.
* pc/config.h: Likewise.
* lib/mc.ext.in: For MS Word documents try "catdoc", "word2x"
and "strings". Recognize "write" files and MS Word templates.
For MS Excel documents try "xls2csv" and "strings".
Escape spaces in the "type" directives.
From Nerijus Baliunas.
* Make.common.in: Add -I$(top_srcdir) to XCPPFLAGS.
* Make.common.in: Remove hpath, it's unused.
* acconfig.h: Move constant parts ...
* extraconf.h: ... here.
[HAVE_X]: Disable subshell, s-lang and curses.
* Makefile.am: Add extraconf.h.
2001-05-28 Pavel Roskin <[email protected]>
* acconfig.h: Remove some useless entries. Eliminate OLD_TOOLS
and SLANG_H_INSIDE_SLANG_DIR. Move some descriptions ...
* configure.in: ... here.
2001-05-27 Pavel Roskin <[email protected]>
* configure.in: Remove unused HAVE_PORTABLE_TOKEN_PASTING.
* acconfig.h: Likewise.
* src/layout.c: Likewise.
* Make.common.in: Remove all percent rules.
* acinclude.m4 (AC_PROG_GNU_MAKE): Remove.
* configure.in: Remove AC_PROG_GNU_MAKE. Don't substitute
PCENTRULE. Remove AC_PROG_MAKE_SET - it's called by
AM_INIT_AUTOMAKE.
* Make.common.in: Remove obsolete dependency tracking system.
* configure.in: Likewise.
* edit/Makefile.in: Likewise.
* gnome/Makefile.in: Likewise.
* gtkedit/Makefile.in: Likewise.
* slang/Makefile.in: Likewise.
* src/Makefile.in: Likewise.
* vfs/Make-mc.in: Likewise.
* src/depend.awk: Remove.
2001-05-26 Pavel Roskin <[email protected]>
* gtkedit/syntax.c (syntax_text): Add support for Octave files.
* syntax/octave.syntax: New file. From Walery Studennikov.
* syntax/Makefile.am: Add octave.syntax.
* configure.in: Fix incorrect test for stdin support in grep -
it would always fail when configuring in an empty directory.
Portability fixes - unset, backslashed space in here-documents.
Eliminate all instances of "changequote".
* configure.in: Define SCO_FLAVOR based on $host_os, not on the
user choice.
* acconfig.h: Changes for the above.
* INSTALL: Don't document --with-sco - it's now defunct.
* INSTALL.FAST: Likewise.
2001-05-25 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Match both "mail" and "Mail", but only if they
are in the beginning of the "file" output.
2001-05-23 Pavel Roskin <[email protected]>
* lib/mc.ext.in: Add associations for viewing RPM files.
2001-05-22 Pavel Roskin <[email protected]>
* doc-gnome/C/mkhtml: Support $JADE. Check that $DSL exists.
By default exit after the first error in jade.
* doc-gnome/C/mkhtml: Use jade directly, not jw. Support DSL and
JADEFLAGS environment variables. Report progress. Clean up on
failure.
2001-05-21 Pavel Roskin <[email protected]>
* doc-gnome/C/Makefile.am: Allow "make install" without *.html
files.
* doc-gnome/C/mkhtml: Print a big warning if the script fails.
* doc-gnome/C/Makefile.am: Ignore exit status of mkhtml.
2001-05-20 Pavel Roskin <[email protected]>
* doc-gnome/C/Makefile.am: Distribute mkhtml and genindex.sgml.
Create figs/*.eps if needed. Simplify rules for gmc.dvi and
gmc.rtf - DocBook 4.1 doesn't try to write to $(srcdir).
* doc-gnome/C/figs/Makefile.am: Add support for converting from
PNG to EPS.
* Makefile.am (EXTRA_DIST): Remove create_vcs.
* doc/FILES: Likewise. Typo fix.
2001-05-19 Pavel Roskin <[email protected]>
* doc-gnome/C/mkhtml: New file. Create HTML files from gmc.sgml.
* doc-gnome/C/Makefile.am: Don't handle *.css - there are none
with DocBook 4.1. Never use `cp' without `-f'. Use mkhtml.
* doc-gnome/C/gmc.sgml: Use DTD DocBook V4.1. Fix duplicate
index entry "Moving files".
2001-05-18 Pavel Roskin <[email protected]>
* configure.in: Use src/main.c in AC_INIT.
* create_vcs: Remove.
* INSTALL: Update download locations for MC, rxvt, gpm, ncurses.
Add download location for glib.
* mc.spec.in: Likewise.
* doc/LSM: Likewise.
* doc/mc.1.in: Likewise.
* doc/mcedit.1.in: Likewise.
* src/ext.c: Don't mention download location for MC.
* FAQ: Update status of Tk, XView. and GNOME editions. Update
homepage of gpm.
* INSTALL: Remove information about Tk and XView. Change the
mailing list addresses again.
* FAQ: Change the mailing list addresses again.
* MAINTAINERS: Likewise.
* README: Likewise.
* doc/mc.1.in: Likewise.
* gnome/gmc-window.c: Likewise.
* lib/README.xterm: Likewise.
* lib/mc.ext.in: Likewise.
* lib/mc.hint*: Likewise.
* lib/mc.hlp.hu: Likewise.
* po/*.po: Likewise.
* src/main.c: Likewise.
2001-04-20 Pavel Roskin <[email protected]>
* FAQ: Change the mailing list addresses and the download
locations.
* INSTALL: Likewise.
* MAINTAINERS: Likewise.
* README: Likewise.
* doc/mc.1.in: Likewise.
* gnome/gmc-window.c: Likewise.
* lib/README.xterm: Likewise.
* lib/mc.ext.in: Likewise.
* lib/mc.hint*: Likewise.
* lib/mc.hlp.hu: Likewise.
* po/*.po: Likewise.
* src/main.c: Likewise.
2001-04-19 Pavel Roskin <[email protected]>
* configure.in: Don't install mcserv unless
"--enable-mcserv-install" has heen specified.
Don't quote the first argument in all calls to AM_CONDITIONAL
to work around a bug in Automake 1.4.
* doc/Makefile.am: Use MCSERV_INSTALL conditional.
* vfs/Make-mc.in: Likewise.
2001-04-13 Pavel Roskin <[email protected]>
* configure.in: Bump version to 4.5.53a.
2001-04-06 Pavel Roskin <[email protected]>
* gtkedit/editcmd.c: Remove support for XView layout attributes.
* gtkedit/editoptions.c: Likewise.
* pc/chmod.c: Likewise.
* pc/drive.c: Likewise.
* src/boxes.c: Likewise.
* src/chmod.c: Likewise.
* src/dlg.c: Likewise.
* src/dlg.h: Likewise.
* src/filegui.c: Likewise.
* src/find.c: Likewise.
* src/hotlist.c: Likewise.
* src/layout.c: Likewise.
* src/listmode.c: Likewise.
* src/main.c: Likewise.
* src/option.c: Likewise.
* src/panelize.c: Likewise.
* src/wtools.c: Likewise.
* src/wtools.h: Likewise.
* vfs/smbfs.c: Likewise.
* autogen.sh: Check out "intl" and "macros" directories if they
are missing. Simply "cvs up -d" won't restore them.
* configure.in: Bump version to 4.5.52a.
2001-03-14 Pavel Roskin <[email protected]>
* configure.in: Use AC_CHECK_TOOL for finding AR. Define
Automake conditional USE_SAMBA_FS if Samba is to be supported
in VFS.
2001-03-07 Pavel Roskin <[email protected]>
* configure.in: Use AM_PROG_CC_STDC if AC_PROG_CC_STDC is not
defined.
Reported by Norbert Warmuth.
* configure.in: Don't process vfs/extfs/uzip - it's now
constant.
* syntax/changelog.syntax: Require space after asterisk to have
it highlighted.
2001-03-02 Pavel Roskin <[email protected]>
* aclocal.m4 (MC_HPUX_PROG_CC_STDC): Remove, it's obsolete.
* configure.in: Use AC_PROG_CC_STDC instead.
* lib/mc.ext.in: Recognize files ending by `.lslR' and `.ls-lR'.
Suggested by Christian Gennerat.
* lib/mc.ext.in: Add support for "freeze" - old compression
program used mostly on QNX.
* lib/mc.ext.in.qnx.diff: Remove, it's obsolete.
* lib/Makefile.am: Adjusted.
2001-02-26 Pavel Roskin <[email protected]>
* lib/mc-gnome.ext.in: Remove, it's not used.
* configure.in: Remove lib/mc-gnome.ext.
* lib/Makefile.am: Likewise.
2001-02-20 Pavel Roskin <[email protected]>
* gtkedit/edit.h: Only include malloc.h if STDC_HEADERS is not
defined to prevent warnings on OpenBSD 2.7.
* slang/jdmacros.h: Likewise.
* src/mad.h: Likewise.
* src/poptalloca.h: Likewise.
* configure.in: Check for sys/time.h and sys/timeb.h. Use
AC_HEADER_TIME.
2001-02-07 Pavel Roskin <[email protected]>
* autogen.sh: Create vfs/samba/include/stamp-h.in.
* vfs/samba/include/stamp-h.in: Remove.
* macros/curses.m4: Quote first argument to AC_DEFUN.
* macros/gnome-cxx-check.m4: Likewise.
* macros/gnome-gettext.m4: Likewise.
* macros/gnome-libgtop-check.m4: Likewise.
* macros/gnome-print-check.m4: Likewise.
* macros/linger.m4: Likewise.
* macros/need-declaration.m4: Likewise.
* configure.in: Only configure in vfs/samba if smbfs support is
enabled even with Autoconf 2.13.
2001-01-30 Pavel Roskin <[email protected]>
* macros/gnome-vfs.m4 (GNOME_WITH_VFS): Fix mishandling of
--without-samba due to a typo.
* configure.in: Only configure in vfs/samba if smbfs support is
enabled. This optimization will only work with Autoconf-2.49c
and above.
2001-01-13 Pavel Roskin <[email protected]>
* configure.in: Don't create a faked malloc.h.
* gtkedit/edit.h: Don't assume that malloc.h always exists.
* src/mad.h: Likewise.
* configure.in: Simplified handling of cons.saver.
* src/Makefile.in: Likewise. Don't install cons.saver setuid.
* mc.spec.in: Remove a workaround for the above.
* configure.in: Use AC_CANONICAL_HOST - "target" is meaningless
for MC. Don't rely on the output of uname - use $host_os.
2001-01-11 Pavel Roskin <[email protected]>
* configure.in: Check for ext2 libraries only if VFS is enabled.
* src/Makefile.in: Create directories before installing files.
Removed all occurences of libprefix - it's never defined.
* configure.in: All macros from configure.in moved to
acinclude.m4. Added missing quotes in several places.
* acinclude.m4: Likewise.
* edit/Makefile.in: Don't install or uninstall mcedit -
it cannot be installed before mc on systems without symlinks.
* gtkedit/Makefile.in: Likewise.
* src/Makefile.in: Install mcedit (if enabled) and mcview.
Uninstall them.
* macros/gnome-gettext.m4: Propagated change by Owen Taylor
from acinclude.m4 in gtk+:
Don't define ENABLE_NLS unless we have a working NLS.
(This should keep libintl.h from being included when it doesn't
exist).
2001-01-09 Pavel Roskin <[email protected]>
* doc-gnome/C/figs/Makefile.am: New file.
* doc-gnome/C/Makefile.am: Don't handle figs, let the new
makefile do it.
* configure: Substitute doc-gnome/C/figs/Makefile.
* lib/Makefile.am: Distribute files listed in LOCALIZED_HELP.
2001-01-08 Szabolcs Ban <[email protected]>
* lib/mc.hlp.hu: Added Hungarian help file from
* lib/Makefile.am: Added LOCALIZED_HELP for further
mc.hlp l10ns
* src/cmd.c, src/dlg.c, src/tree.c, src/view.c,
gtkedit/editcmd.c: I18n of mc.hlp
2000-12-29 Szabolcs Ban <[email protected]>
* doc/mc.1.in: Corrected badly formatted link...
2000-11-10 Robert Brady <[email protected]>
* configure.in: Add Tamil to ALL_LINGUAS.
2000-10-23 Pavel Roskin <[email protected]>
* mc.spec.in: Allow mcserv.8 to be gzipped.
* doc-gnome/C/Makefile.am: Workaround for buggy db2html
that cannot deal with "./gmc.sgml".
2000-10-09 Pavel Roskin <[email protected]>
* Makefile.am: GNOME_M4_FILES renamed to ACLOCAL_M4_SOURCES so
that CVS Automake will drop dependencied to the macros that
we don't distribute.
* lib/mc.ext.in: Removed references to icons. Source RPMs
grouped to one regex. Removed "Update" for source RPMs, added
"Rebuild" instead. Added "Check signature" for all RPMs.
Added a comment about pop-up menus in the text edition.
2000-10-06 Pavel Roskin <[email protected]>
* gnome/Makefile.in, src/Makefile.in, vfs/Make-mc.in: Required
flags moved out of CFLAGS as recommended by GNU coding
standards.
* configure.in: Don't add GLIB_CFLAGS to CFLAGS.
* Make.common.in: XINC eliminated. GLIB_CFLAGS is now added to
XCPPFLAGS.
* INSTALL (Random notes on porting to other architectures):
Completely rewritten. Recommended using CFLAGS instead of XINC.
2000-10-05 Pavel Machek <[email protected]>
* lib/mc.ext.in: .spm is used by SuSE to mark src rpms
2000-10-04 Christophe Merlet <[email protected]>
* gnome/*.desktop: Updated french strings.
2000-10-03 Pavel Roskin <[email protected]>
* doc-gnome/C/gmc.sgml: DTD changed to "PNG Variant V1.1"
to allow <legalnotice>. Unclosed tags fixed.
2000-09-30 Pavel Roskin <[email protected]>
* mc.spec.in: New package mc-common. Use DESTDIR instead of
misusing prefix. Don't install old icons - they don't exist.
* lib/mc.sh.in: Use "rm -f" to delete temporary files. Use
"export -f" to have mc() exported.
* doc/mc.1.in: Changed description of the "-P" option to
avoid inclusion of mc.sh and mc.csh into the manual.
Corrected paths of mc.hlp, mc.no_proxy and ~/mc/Tree.
2000-09-24 Pavel Roskin <[email protected]>
* doc/mc.1.in: Minor formatting fixes.
* lib/mc.sh.in: Remove temporary file non-interactively.
* doc/mc.1.in: updated example for mc.sh.
2000-09-23 Pavel Roskin <[email protected]>
* Makefile.am: mc.spec included to noinst_DATA so that "make all"
updates it when needed.
* mc.spec.in: Include translations with mc, not gmc. Run
chkconfig --del in %preun, not %postun. --without-debug not
needed. /etc/X11/wmconfig not needed. /etc/pam.d/mcserv shouldn't
be executable. New files in %{prefix}/lib/mc/ - translated hints,
editor files.
* doc-gnome/C/Makefile.am: Fixed *clean targets. Use temporary
directory for document processing. Comment changes. gmc.ps and
gmc.pdf now generated from gmc.dvi.
* configure: Always include Make.common as file, otherwise
"make distclean" breaks.
* edit/Makefile.in, gnome/Makefile.in, gtkedit/Makefile.in,
slang/Makefile.in, src/Makefile.in, vfs/Make-mc.in: $(RMF)
replaced with "rm -f" - the stangard says that "rm" is portable.
Ditto $(MV). Adjusted *clean targets to match those in
Automake. Removed "cross" target.
2000-09-22 Pavel Roskin <[email protected]>
* doc/mc.sgml: Removed as obsoleted by doc/mc.in.1
* doc/gnome.sgml: Removed as obsoleted by doc-gnome/C/gmc.sgml
* doc/Makefile.in: Converted to ...
* doc/Makefile.am: ... this.
2000-09-21 Pavel Roskin <[email protected]>
* lib/mc.sh.in: Use $HOME instead of '~' because the tilde
is not expanded in all shells.
* doc/mc.sgml: Updated the example script to reflect the above
changes.
* doc/mc.in.1: Likewise.
2000-09-19 Pavel Roskin <[email protected]>
* lib/Makefile.in (LIBFILES_CONST): Added mc.hint.it from
Marco Ciampa
2000-09-18 Pavel Roskin <[email protected]>
* Make.common.in: Added installcheck to placate "make distcheck"
* configure.in, Make.common.in, doc/Makefile.in,
edit/Makefile.in, gnome/Makefile.in, gtkedit/Makefile.in,
slang/Makefile.in, src/Makefile.in, vfs/Make-mc.in: Replacing
variable MKINSTALLDIRS and builddir with Automake-compatible
mkinstalldirs and top_builddir.
* doc-gnome/C/Makefile.am: Only maintainers regenerate html
files. Added uninstall-local target.
2000-09-17 Pavel Roskin <[email protected]>
* configure.in: fixed wrong use of AC_MSG_RESULT inside
AC_CACHE_VAL
* Make.common.in: Added the "dvi" target for "make distcheck"
to go further
* doc-gnome/C/Makefile.in: converted to ...
* doc-gnome/C/Makefile.am: ... this
2000-09-15 Pavel Roskin <[email protected]>
* acconfig.h, configure.in: Require autoconf 2.13 or above.
Removed workarounds for older versions. Removed MCDEBUG
variable - it's not used. --with-debug renamed to --with-mad and
cleaned up. Always use -Wall with gcc, other manipulations with
CFLAGS removed.
* doc/Makefile.in, edit/Makefile.in, gnome/Makefile.in,
gtkedit/Makefile.in, slang/Makefile.in, src/Makefile.in,
vfs/Make-mc.in: preserve timestamp on "make distdir", otherwise
mc.pot becomes out of date in the tarball.
2000-09-14 Pavel Roskin <[email protected]>
* configure.in: Removed some abuses of CPPFLAGS. Removed useless
tests for cp, mv and rm.
* Make.common.in: Removed variables xv_bindir and STRIP.
Variables CP, MV and RMF are assigned trivial values.
* edit/Makefile.in: Don't link headers, add extra includes
to CPPFLAGS instead. Put links to the build directory.
Remove the hack with "mx" - it is not needed anymore.
* configure.in: remove any manupulations with top_srcdir.
Don't change CPPGLAGS when the internal editor is enabled,
instead do it ...
* edit/Makefile.in, gtkedit/Makefile.in: ... here
* configure.in, Make.common.in, doc/Makefile.in,
edit/Makefile.in, gnome/Makefile.in, gtkedit/Makefile.in,
slang/Makefile.in, src/Makefile.in, vfs/Make-mc.in: rootdir
changed to top_srcdir for Automake compatability
* configure.in: REGEX_O variable removed - always use our regex
* configure.in: MCFGR variable removed
2000-09-12 Pavel Roskin <[email protected]>
* configure.in: enable AM_MAINTAINER_MODE to be consistent with
other GNOME modules
* autogen.sh: remove "-I ." from the "aclocal" command line
2000-09-01 Pavel Roskin <[email protected]>
* configure.in: output vfs/extfs/Makefile
* configure.in: AC_CANONICAL_SYSTEM moved above AM_INIT_AUTOMAKE
to avoid a warning
* acinclude.m4: removed unused macros AC_CHECK_HEADER_IN_PATH,
AC_LIB_XPM, AC_X_SHAPE_EXTENSION
2000-08-29 Pavel Roskin <[email protected]>
* configure.in: use AM_GNOME_GETTEXT
* gettext.m4: removed
* Makefile.am: adjusted files to distribute, previous change
reverted
* mc-aclocal.m4: renamed to ...
* acinclude.m4: ... this
* autogen.sh: simplified - no more tricks with mc-aclocal.m4
* Makefile.am: aclocal should scan "." for gettext.m4
2000-08-28 Pavel Roskin <[email protected]>
* Make.common.in: removed hack for "make distcopy"
* doc/Makefile.in, edit/Makefile.in, gnome/Makefile.in,
gtkedit/Makefile.in, slang/Makefile.in, src/Makefile.in,
vfs/Make-mc.in: added "distdir" target. Now "make dist" works
for external builds.
* edit/Makefile.in, slang/Makefile.in: added "Makefile" target
2000-08-24 Pavel Roskin <[email protected]>
* new_icons/Makefile.in: converted to ...
* new_icons/Makefile.am: ... this
* configure.in: automake conditional GNOME introduced.
"insticons" removed
* icons/*: removed
* Makefile.am, configure.in: necessary adjustments
* config.guess, config.sub, install-sh, mkinstalldirs: removed,
automake installs them now
* syntax/Makefile.in: converted to ...
* syntax/Makefile.am: ... this
* idl/Makefile.in: converted to ...
* idl/Makefile.am: ... this
* lib/Makefile.am: simplified, fixed "make dist"
* lib/Makefile.in: converted to ...
* lib/Makefile.am: ... this
* lib/tkmc.wmconfig: removed
* lib/Makefile.in, doc/FILES: removed lib/tkmc.wmconfig
* Makefile.in, doc-gnome/Makefile.in, pc/Makefile: converted
to ...
* Makefile.am, doc-gnome/Makefile.am, pc/Makefile.am: ... this
* Make.common.in: support for "distdir" for compatability
with Automake-generated makefiles
* autogen.sh: run automake. Force cache - it is off by default
in autoconf 2.49a, but it's still handy for maintainers
* configure.in: adapted for Automake
* AUTHORS: new file
2000-08-23 Pavel Roskin <[email protected]>
* configure.in: resurrect definition of xvers
* VERSION.in: removed
* Makefile.in: don't do anything with VERSION.in and VERSION
Take mc.spec from builddir, not srcdir
* configure.in: don't create VERSION
2000-08-22 Pavel Roskin <[email protected]>
* *.c, *.h: Updated address of Free Software Foundation
2000-08-21 Pavel Roskin <[email protected]>
* Make.common.in, acconfig.h, configure.in, mc-aclocal.m4,
doc-gnome/Makefile.in, doc-gnome/C/Makefile.in: removed stuff
related to XView, libXPM, libXext and Tk
2000-08-18 Pavel Roskin <[email protected]>
* Makefile.in, lib/Makefile.in: adjusted lists of distributed
files
* configure.in: Simplified dependency tracking by using
"-include" with GNU Make
* autogen.sh: Exit on all failures
2000-08-17 Pavel Roskin <[email protected]>
* doc/mc.sgml: Curly braces replaced with { and }
Fixed all misuses of single and double quotes. Typo fixes.
Ensured compatability with sgml2html, sgml2txt and sgml2latex
* doc/mc.1.in: Typo fix
* doc/mc.sgml: made compatible with sgml-tools 1.0.9
* doc/linuxdoc-sgml.diff: removed
* doc/Makefile.in: don't distribute linuxdoc-sgml.diff,
distribute gnome.sgml
2000-08-15 Pavel Roskin <[email protected]>
* Makefile.in: fixes for improper usage of $(srcdir), cleanup
in the "distclean" target
* doc-gnome/Makefile.in: Fixed some abuses of $(srcdir)
Removed all XVIEW-related stuff
Fixed placement of png files on "make dist"
* doc/mc.1.in: Updated info about the internal editor
* Makefile.in, */Makefile.in: Fail if $(RMF) fails - it may
indicate serious problems. Fixes for uninstall.
* doc/Makefile.in: Rebuild if it is out of date.
* lib/cedit.menu: Added. This file has been missing