-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4049 lines (2639 loc) · 124 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
2007-09-10 Pavel Tsekov <ptsekov@gmx.net>
* configure.ac: Update the version number to 4.6.2-pre1.
* doc/mc.1.in: Likewise.
2007-01-13 Pavel Tsekov <ptsekov@gmx.net>
* doc/mc.1.in: Place the description of the "Swap panels" on
a paragraph of its own.
2006-12-30 Pavel Tsekov <ptsekov@gmx.net>
* m4/ls-mntd-fs.m4: Update to serial #26.
2006-12-30 Pavel Tsekov <ptsekov@gmx.net>
* m4/fsusage.m4: Update to serial #22.
2006-12-30 Pavel Tsekov <ptsekov@gmx.net>
* m4/fsusage.m4: Update to serial #18.
2006-12-28 Pavel Roskin <proski@gnu.org>
* build-glib1.sh: Fix misplaced --with-glib12. Copy
config.guess and config.sub from mc to glib sources - they are
too old in glib.
* build-glib2.sh: Update to the latest versions of glib, gettext
and pkg-config.
2006-11-27 Leonard den Ottolander <leonard den ottolander nl>
* NEWS: Bash < 2.05b (3-digit octals in echo_e_cmd) no longer
supported.
2006-09-07 Pavel Tsekov <ptsekov@gmx.net>
* acinclude.m4 (AC_GET_FS_INFO): Add erronously removed call to
gl_FSTYPENAME.
* m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Add missing
include directive for sys/param.h.
2006-09-07 Pavel Tsekov <ptsekov@gmx.net>
* m4/ls-mntd-fs.m4: Update to serial#22, which adds support
for getmntinfo() returning its result in struct statvfs.
* m4/fstypename.m4: Update to serial#6, which replaces
HAVE_F_FSTYPENAME_IN_STATFS with HAVE_STRUCT_STATFS_F_FSTYPENAME.
2006-09-07 Pavel Tsekov <ptsekov@gmx.net>
* acinclude.m4 (AC_GET_FS_INFO): Revert a failed attempt to
properly detect getmntinfo() returning its result in struct statvfs.
2006-06-30 Hampa Hug <hampa@hampa.ch>
* acinclude.m4 (AC_GET_FS_INFO): Check the return value of
getmntinfo() properly.
2006-06-17 Pavel Tsekov <ptsekov@gmx.net>
* m4/fstypename.m4: New file.
* acinclude.m4 (AC_GET_FS_INFO): Add a check to determine whether
getmntinfo() takes struct statvfs instead of struct statfs as its
first argument. Define MOUNTED_GETMNTINFO_STATVFS if it does.
Add a check to determine whether struct statvfs has a field named
f_fstypename.
Use gl_FSTYPENAME tp determine whether struct statfs has a field
named f_fstypename.
2006-06-07 Pavel Tsekov <ptsekov@gmx.net>
* configure.ac: Revert last commit.
2006-05-29 Roland Illig <roland.illig@gmx.de>
* m4/ls-mntd-fs.m4: Updated to serial #21, which fixes the use
of an undefined variable.
2006-05-21 Roland Illig <roland.illig@gmx.de>
* configure.ac: Fixed detection of <sys/statvfs.h>, statvfs()
and struct statvfs.f_fstypename, so that mc builds on NetBSD 3.0
again.
2006-04-18 Pavel Tsekov <ptsekov@gmx.net>
* acinclude.m4 (AC_GET_FS_INFO): Make it work again - the last
commit broke it.
* m4/onceonly.m4: New file.
2006-04-13 Anton Monroe <akm@meer.net>
* doc/mc.1.in: Function key documentation update.
2006-03-18 Leonard den Ottolander <leonard den ottolander nl>
* acinclude.m4 (AC_GET_FS_INFO): Replace old fileutils code to get
mount and file system information with m4_includes of the corresponding
GNU coreutils-5.94 files (ls-mntd-fs.m4 (#20) and fsusage.m4 (#16)).
* m4/fsusage.m4, m4/ls-mntd-fs.m4: Create.
2006-02-23 Pavel Tsekov <ptsekov@gmx.net>
* doc/mc.1.in: Document `fish_directory_timeout'.
2006-02-18 David Martin <<dmartina@excite.com>
* doc/es/mc.1.in: Cleanup. Fix key naming.
2006-01-29 Pavel Tsekov <ptsekov@gmx.net>
* doc/mc.1.in: Update the documentation to reflect the fact
that confirmation may be requested when deleting directory
hotlist entries based on a user configurable setting.
2006-01-29 Julian Mehnle <julian@mehnle.net>
* doc/mc.1.in: Document support for VIEWER environment variable.
2005-11-15 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_WITH_MCSLANG): Add type tests from S-Lang
configuration scripts.
2005-11-10 Pavel Roskin <proski@gnu.org>
* configure.ac: Catch unexpanded MC_* macros.
* m4/*.m4: Update to the macros provided by gettext 0.14.3.
* m4/Makefile.am: Update the list of the *.m4 files.
* configure.ac: Use AC_GNU_SOURCE, which prevents redefining
_GNU_SOURCE. Bump Autoconf version to 2.54, where AC_GNU_SOURCE
appeared.
Reported by Leonard den Ottolander <leonard den ottolander nl>
* configure.ac: Use gettext 0.14.3.
* acinclude.m4 (MC_ASM_LABELS): Remove, it's not needed with
recent versions of gettext.
* acinclude.m4 (MC_ASM_LABELS): Make the test function global
and move its definition above main(). That's closer to what
gettext is actually doing.
2005-10-03 Pavel Roskin <proski@gnu.org>
* configure.ac: Require gettext with ngettext support. It's
already used in src/info.c.
2005-09-28 Pavel Roskin <proski@gnu.org>
* acinclude.m4: Remove gettext 0.10.x compatibility.
2005-08-23 Marco Ciampa <ciampix@libero.it>
* doc/it/mc.1.in: updated italian trasnlation.
* doc/it/xnc.hlp: small fix.
2005-08-15 Roland Illig <roland.illig@gmx.de>
* configure.ac: The function getgrouplist() is not used anymore,
so there is no need to check for it. The various get[ug]id
functions are used, so add checks for them. Same for isascii.
2005-07-20 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Restore support for opening 7-zip archives.
* configure.ac: Add vfs/extfs/ualz to AC_CONFIG_FILES.
* lib/mc.ext.in: Add support for ALZip archives.
2005-07-10 Leonard den Ottolander <leonard den ottolander nl>
* configure.ac: Rename AS_HELP_STRING to AC_HELP_STRING.
2005-07-08 Leonard den Ottolander <leonard den ottolander nl>
* NEWS: Fixed commit to the wrong branch.
2005-07-05 Roland Illig <roland.illig@gmx.de>
* configure.ac: Removed detection of the umode_t type. All
references to it have been replaced with mode_t.
2005-07-03 Leonard den Ottolander <leonard * den ottolander nl>
* lib/mc.ext.in: Match files in /log/ or /logs/ directories as plain
text not man page; match local man pages; add fixes for gzipped man
pages to plain and bzipped man pages.
2005-07-03 Leonard den Ottolander <leonard * den ottolander nl>
* lib/mc.ext.in: Move matches for plain compressed files down.
2005-07-03 Roland Illig <roland.illig@gmx.de>
* acinclude.m4 (MC_WITH_VFS): Don't link with libnsl
unnecessarily.
* configure.ac: Simplified detection of the necessary libraries
for socket() and gethostbyname().
Patch provided by Tomasz Kloczko at 2005-06-15 on mc-devel.
2005-06-21 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Support opening for 7-Zip archives.
2005-06-06 Roland Illig <roland.illig@gmx.de>
* NEWS: Added the differences between pre3 and HEAD.
* lib/mc.ext.in: Added ${PAGER} as fallback if neither lynx nor
links is installed.
2005-05-31 Andrew V. Samoilov <sav@bcs.zp.ua>
* pkginfo.in: New file. Configuration files for Sun Solaris pkgmk(1).
* prototype.in: Likewise.
* configure.ac: Likewise.
* Makefile.am: Likewise.
2005-05-29 Martin Petricek <tux@centrum.cz>
* lib/mc.ext.in: Added support for .7z archives.
2005-05-26 Pavel Roskin <proski@gnu.org>
* *: Update postal address of Free Software Foundation.
2005-05-23 Roland Illig <roland.illig@gmx.de>
* syntax/ChangeLog: The syntax directory has got its own
ChangeLog.
2005-05-17 Roland Illig <roland.illig@gmx.de>
* configure.ac: Removed the extra definition of
HAVE_C_TYPE_SOCKLEN_T, which is unused.
2005-05-14 Roland Illig <roland.illig@gmx.de>
* syntax/diff.syntax: Lines starting with a <tab> character are
displayed like lines starting with a <space>. This is for the
cvs diff -T option.
* syntax/makefile.syntax: Highlight $$ (a literal $) in
brightcyan. This way $${var} is not highlighted as if it were a
Makefile variables. Also added useful comments before the contexts.
2005-05-13 Pavel Roskin <proski@gnu.org>
* configure.ac: Require Autoconf 2.53 or newer.
* m4/Makefile.am: Remove isc-posix.m4, it's obsolete.
* m4/isc-posix.m4: Remove.
2005-05-13 Nerijus Baliunas <nerijus@users.sourceforge.net>
* lib/mc.ext.in: Add OpenOffice.org 2 extensions, use o3totxt
to view OpenOffice.org documents.
2005-05-11 Pavel Roskin <proski@gnu.org>
* acinclude.m4: Remove MC_ARG_ENABLE_DEVELOPER_MODE.
* configure.ac: Replace MC_ARG_ENABLE_DEVELOPER_MODE with a
simpler and more user-friendly piece of code.
2005-05-01 Roland Illig <roland.illig@gmx.de>
* syntax/c.syntax: Added missing punctuation characters.
2005-04-28 Pavel Roskin <proski@gnu.org>
* syntax/Syntax: Don't highlight csh scripts. Allow using
"/usr/bin/env" instead of the full path.
2005-04-27 Leonard den Ottolander <leonard * den ottolander nl>
* AUTHORS: Added Pavel Shirshov and myself as contributors.
2005-04-26 Roland Illig <roland.illig@gmx.de>
* acinclude.m4: Renamed AS_HELP_STRING to AC_HELP_STRING for
compatibility with autoconf-2.57.
2005-04-22 Roland Illig <roland.illig@gmx.de>
* acinclude.m4: Added macro MC_ARG_ENABLE_DEVELOPER_MODE.
* configure.ac: Using MC_ARG_ENABLE_DEVELOPER_MODE instead of
the --maintainer-mode.
2005-04-17 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/eiffel.syntax: dos2unix; removed redundant cooledit
colour definitions.
* syntax/perl.syntax: Removed redundant cooledit definitions.
* syntax/php.syntax: ' ' and " " context fixes.
* syntax/syntax.syntax: Removed 2 duplicate lines.
2005-04-16 Roland Illig <roland.illig@gmx.de>
* lib/mc.ext.in: Recognize either *.udeb or *.deb as Debian
packages. Fixes Savannah patch #3899.
2005-04-14 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/Syntax: Catch Makefiles with capitals in the extension.
2005-04-14 Roland Illig <roland.illig@gmx.de>
* doc/mc.1.in (Internal File Viewer): Rewrote some documentation.
Removed the paragraph about the growing buffers. It's generally
uninteresting to users.
2005-04-13 Roland Illig <roland.illig@gmx.de>
* configure.ac: Add -DNDEBUG to CPPFLAGS if the maintainer mode
is not enabled.
2005-03-19 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_WITH_SLANG): Partly restore original order of
checks and add a comment with a warning.
From Pavel S. Shirshov <me@pavelsh.pp.ru>
* acinclude.m4 (MC_WITH_SLANG): Reorder checks. Move termcap
checks ...
(MC_SLANG_TERMCAP): ... here.
(MC_SLANG_PRIVATE): Check if private functions are available.
It's not the case on Debian unstable.
2005-03-19 Pavel S. Shirshov <me@pavelsh.pp.ru>
* syntax/idl.syntax: Add syntax file for the CORBA idl.
From Ian Zagorskih <ianzag@megasignal.com>
* syntax/lua.syntax: Add syntax file for the LUA programming language.
From Mike Gorchak <mike@malva.ua>
* syntax/Syntax: Add syntax file for CORBA idl and lua.
* syntax/Makefile.am: Likewise.
* mc.qpg.in: Likewise.
* NEWS: Likewise.
2005-03-19 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_WITH_SLANG): Define HAVE_SYSTEM_SLANG after
all fallbacks so it shows whether we are using system S-Lang.
* configure.ac: Remove USE_INCLUDED_SLANG, since it's now fully
dependent on HAVE_SLANG and HAVE_SYSTEM_SLANG.
* src/myslang.h: Likewise.
2005-03-18 Mike Gorchak <mike@malva.ua>
* syntax/assembler.syntax: Add syntax file for the x86 assembler.
* syntax/povray.syntax: Add syntax file for the POVRay.
* syntax/Syntax: Add syntax file for x86 assembler and POVRay.
* syntax/Makefile.am: Likewise.
* mc.qpg.in: Likewise.
* NEWS: Likewise.
2005-03-14 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/diff.syntax: Changed default color from gray, which was
quite unreadable, to a bright yellow.
2005-03-10 Roland Illig <roland.illig@gmx.de>
* autogen.sh: Made the gettext version check more portable. The
actual sed command is unchanged.
2005-02-26 Miguel de Icaza <miguel@novell.com>
* doc/mc.1.in: Replace M-char with Alt-char everywhere, which is
simpler to understand.
2005-01-29 Miguel de Icaza <miguel@novell.com>
* configure.ac: Check for getgrouplist API call.
2005-02-07 Roland Illig <roland.illig@gmx.de>
* NEWS: Added the changes between mc-4.6.1-pre3 and now.
2005-01-27 Roland Illig <roland.illig@gmx.de>
* configure.ac: Add checks for C headers <sys/mkdev.h> and
<sys/sysmacros.h> to support major/minor arithmetics on
device numbers.
2005-01-11 Pavel S. Shirshov <me@pavelsh.pp.ru>
* acinclude.m4: Fix '--with-screen' configure option.
2004-12-30 Andrew V. Samoilov <sav@bcs.zp.ua>
* autogen.sh: Fix workaround for automake 1.5.
2004-12-28 Leonard den Ottolander <leonard * den ottolander nl>
* syntax/spec.syntax: Set whole on spec macro option keywords.
2004-12-13 Pavel S. Shirshov <me@pavelsh.pp.ru>
* acinclude.m4: Fix "make distcheck".
2004-12-12 Pavel S. Shirshov <me@pavelsh.pp.ru>
* NEWS: Update.
2004-12-10 Pavel S. Shirshov <me@pavelsh.pp.ru>
* autogen.sh: Comment workaround for Automake 1.5. It's not working
for Automake 1.9.
2004-12-07 Roland Illig <roland.illig@gmx.de>
* syntax/Makefile.am: Don't install syntax highlighting files if
the internal editor is disabled.
2004-12-03 Pavel S. Shirshov <me@pavelsh.pp.ru>
* configure.ac: Bump version to 4.6.1a
2004-11-17 Pavel S. Shirshov <me@pavelsh.pp.ru>
* acinclude.m4: Fix compiling mc with system slang on FreeBSD.
2004-11-16 Roland Illig <roland.illig@gmx.de>
* TODO: Checked the remaining vfs/extfs shell scripts and
removed them from the TODO list. This was the last item
in the section "Before 4.6.1", so I deleted the whole
section.
2004-11-08 Pavel S. Shirshov <me@pavelsh.pp.ru>
* TODO (4.6.2): Fix the '#' in path names issue.
2004-11-07 Roland Illig <roland.illig@gmx.de>
* TODO (4.6.1): Moved the '#' in path names issue to 4.6.2.
* TODO: Added issue about hiding passwords in VFS pathnames.
2004-11-05 Andrew V. Samoilov <sav@bcs.zp.ua>
* README: Fix typo.
2004-11-04 Mike Gorchak <mike@malva.ua>
* mc.qpg.in: Synchronization with the latest file has been added
to the distro.
* configure.ac: Added information about status of charset enabling.
* syntax/Syntax: Treat QNX6 specific files with extensions qpg and
qpg.in as xml files.
2004-11-02 Roland Illig <roland.illig@gmx.de>
* configure.ac: Add feature test whether socklen_t is defined
in <sys/socket.h>.
2004-10-28 Jindrich Novy <jnovy@redhat.com>
* lib/mc.ext.in: Add a few sound formats that "play" and "mikmod"
utility knows.
2004-10-27 Roland Illig <roland.illig@gmx.de>
* configure.ac: Add check for type socklen_t.
2004-10-27 Juan C. Olivares <juancri@juancri.com>
* syntax/aspx.syntax: Add syntax file for ASP.NET.
* syntax/Syntax: Likewise.
* syntax/Makefile.am: Likewise.
2004-10-27 Pavel S. Shirshov <me@pavelsh.pp.ru>
* TODO: Move entry 'Broken pipe warning...' to 4.6.2 TODO list.
Remove entries for perl extfs scripts.
2004-10-24 Roland Illig <roland.illig@gmx.de>
* configure.ac: Only add "-Wall" to CFLAGS if GCC is set to "yes".
2004-10-23 Roland Illig <roland.illig@gmx.de>
* TODO: Check proper quoting in vfs/extfs/*.
2004-10-20 Pavel S. Shirshov <me@pavelsh.pp.ru>
* lib/mc.ext.in: Use xmms for audio files in XWindows mode.
Add support for *.wma files. Add support for playlists.
Partially based on patch from q# <eth0@o2.pl>
2004-10-18 Roland Illig <roland.illig@gmx.de>
* TODO: Some new TODO items with low priority: More standard
widgets, CVS frontend, patch editor, context menus.
2004-10-16 Roland Illig <roland.illig@gmx.de>
* TODO: Fixed the "./ files in tar archive" item for mc-4.6.1.
2004-10-16 Roland Illig <roland.illig@gmx.de>
* syntax/eiffel.syntax: Add syntax highlighting rules for the
Eiffel programming language.
* syntax/Syntax: Bind *.e with eiffel.syntax.
* syntax/Makefile.am: Added syntax.eiffel.
From Daniel F Moisset <dmoisset grulic org ar>
2004-10-12 Pavel S. Shirshov <me@pavelsh.pp.ru>
* syntax/sql.syntax: Improve sql.syntax file and added several
keywords.
From Karel Zak
2004-10-12 Andrew V. Samoilov <sav@bcs.zp.ua>
* acinclude.m4 (MC_WITH_MCSLANG): Set screen_type to mcslang.
* configure.ac: Define USE_INCLUDED_SLANG if screen_type is mcslang.
2004-10-05 Gergely Sza'sz <szaszg@hu.inter.net>
* syntax/perl.syntax: Fix highlight the hashes.
* syntax/diff.syntax: Highlight comments (lines begin with #),
and garbage in diff files.
2004-09-17 Dmitry Alexeyev <dmi_a@qnx.org.ru>
* mc.qpg.in: New file. Description for QNX 6.x packager.
2004-09-25 Roland Illig <roland.illig@gmx.de>
* configure.ac: #define _GNU_SOURCE to an empty value instead of 1,
which conflicted with src/regex.c.
2004-09-24 Roland Illig <roland.illig@gmx.de>
* HACKING (Programming tips): Added a tip concerning the NULL
pointer in varargs function calls.
2004-09-22 Roland Illig <roland.illig@gmx.de>
* HACKING: Added advice for using g_strdup for a modifiable
copy of a string.
* HACKING: Added a section about where to look for bug reports
and patches.
2004-09-19 Roland Illig <roland.illig@gmx.de>
* HACKING: Added explanation for const_cast.
2004-09-17 Dmitry Alexeyev <dmi_a@qnx.org.ru>
* syntax/makefile.syntax: Adds "define" and "ended" keywords
* syntax/perl.syntax: Adds "break" keyword
2004-09-10 Jakub Jelinek <jakub@redhat.com>
* lib/mc.lib: Add gnome, rxvt and xterm-new terminals.
2004-09-10 Pavel S. Shirshov <me@pavelsh.pp.ru>
* syntax/php.syntax: Upgrade php.syntax file.
From Leonard den Ottolander <leonard * den.ottolander.nl>
2004-09-04 Jakub Jelinek <jakub@redhat.com>
* configure.ac: grantpt is only available with -D_XOPEN_SOURCE
or -D_GNU_SOURCE under Linux.
2004-09-04 Pavel S. Shirshov <me@pavelsh.pp.ru>
* HACKING: Add to section "Programming Tips" g_free tip.
2004-09-02 Roland Illig <roland.illig@gmx.de>
* HACKING: Added a section "Programming Tips" which lists mistakes
that have been done once and should never be repeated.
2004-08-29 Roland Illig <roland.illig@gmx.de>
* m4/ri-gcc-warnings.m4: Now handles only the last --enable or
--disable option. Before, --disable has not been handled
correctly.
2004-08-22 Pavel S. Shirshov <me@pavelsh.pp.ru>
* m4/ri-gcc-warnings.m4: Using AC_HELP_STRING for more portable.
AS_HELP_STRING was introduced after autoconf 2.57+.
From Leonard den Ottolander <leonard * den.ottolander.nl>
2004-08-18 Roland Illig <roland.illig@gmx.de>
* "make uninstall": removes the symlinks bin/mcedit and bin/mcview.
2004-08-17 Roland Illig <roland.illig@gmx.de>
* configure.ac: The GCC warning flags are only used in
maintainer-mode.
2004-08-17 Pavel S. Shirshov <me@pavelsh.pp.ru>
* lib/cedit.menu: Security fix patch. Fix insecure temporary file and
directory creations. (CAN-2004-0231).
* lib/mc.menu: Likewise.
* doc/mc.1.in: Likewise.
* doc/es/mc.1.in: Likewise.
* doc/hu/mc.1.in: Likewise.
* doc/it/mc.1.in: Likewise.
* doc/pl/mc.1.in: Likewise.
* doc/ru/mc.1.in: Likewise.
* doc/sr/mc.1.in: Likewise.
2004-08-09 Andrew V. Samoilov <sav@bcs.zp.ua>
* configure.ac: Add check for atoll().
* doc/mc.1.in (Extension File Edit): Document "directory" keyword.
* doc/ru/mc.1.in: Likewise.
2004-08-02 Pavel Shirshov <me@pavelsh.pp.ru>
* autogen.sh: Fix unportable "\n" in sed.
2004-04-02 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Use gqview instead of ee for images. ee seems
to be obsolete. Suggested by Marcel Pol <mpol@gmx.net>
2004-01-22 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Recognize *.tb2 and *.tbz files.
* configure.in: Rename to ...
* configure.ac: ... this.
2003-12-30 David Martin <dmartina@excite.com>
* doc/mc.1.in: Synchronized latest fixes (long options) and
moved year and version number.
2003-12-24 Pavel Roskin <proski@gnu.org>
* configure.in: Release 4.6.1-pre1.
2003-11-28 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_UNDELFS_CHECKS): Try ext2fs/ext2_fs.h before
linux/ext2_fs.h. Use ext2fs/ext2_fs.h when possible - it's
safer to avoid kernel headers.
2003-11-27 Pavel Roskin <proski@gnu.org>
* src/TODO: Move ...
* TODO: ... here.
* doc/DEVEL: Move ...
* HACKING: ... here. Adjust makefiles.
2003-11-20 Pavel Roskin <proski@gnu.org>
* build-glib1.sh: Use more portable syntax for functions. Fall
back to "ftp" for download, useful on BSD.
* build-glib2.sh: Likewise.
* build-glib1.sh: New file - download and compile glib 1.2.x,
then compile mc against it.
* build-glib2.sh: New file - download and compile glib 2.x with
dependencies (gettext, pkgconfig), then compile mc against it.
* Makefile.am: Distribute them.
2003-10-29 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_UNDELFS_CHECKS): Don't use internal Autoconf
variables.
* configure.in: Rewrite check for mmap() to avoid using internal
variables of Autoconf. Rename the rest of ac_cv_* to mc_cv_*.
* configure.in: Use AC_CHECK_MEMBERS to check fields of struct
stat. Adjust all dependencies.
* acinclude.m4 (AC_STRUCT_LINGER): Remove, use AC_CHECK_MEMBERS
instead.
* configure.in: Define SLANG_POSIX_SIGNALS if all 4 required
functions are present. Remove references to extraconf.h.
* extraconf.h: Eliminate.
* Makefile.am: Remove extraconf.h.
* configure.in: Move ext2fs undelete support ...
* acinclude.m4 (MC_WITH_VFS): ... here.
* extraconf.h: Remove VFS logic, it's enforced in configure now.
* acinclude.m4 (MC_WITH_VFS): Use AC_SEARCH_LIBS when possible.
Allow disabling network code by --disable-netcode.
2003-10-28 Pavel Roskin <proski@gnu.org>
* configure.in: Don't check if "file" can use stdin - it's
unused now.
2003-10-25 Pavel Roskin <proski@gnu.org>
* extraconf.h: Don't define HAVE_GRANTPT forcedly if grantpt()
wasn't found. Don't define HAVE_CRYPT, it's unused now.
* configure.in: Remove check for socketpair(). Add new option
--enable-background.
* extraconf.h: Don't define WITH_BACKGROUND.
2003-10-14 Pavel Roskin <proski@gnu.org>
* configure.in: Don't check for seekdir() and telldir().
2003-09-23 Pavel Roskin <proski@gnu.org>
* doc/sr/Makefile.am: Don't install mcserv documentation if mcfs
support is disabled.
* lib/*.ti: Remove, these files are obsolete.
* lib/tdiff: Likewise.
* lib/xterm.tcap: Likewise.
* lib/Makefile.am: Remove obsolete files. Don't install
README.xterm and xterm.ad, there are partly obsolete and can
break things if used as is.
2003-09-22 Strahinya Radich <mr99164@alas.matf.bg.ac.yu>
* lib/mc.hint.sr: Updated.
* lib/mc.menu.sr: New file - translated menu.
* lib/Makefile.am: Add mc.menu.sr.
* doc/sr/: New Serbian documentation.
* doc/Makefile.am: Add "sr" directory.
* configure.in: Add substitutions for new files.
2003-09-22 Pavel Roskin <proski@gnu.org>
* configure.in: Check for strlcpy() if glib 1.2.x is used.
2003-09-11 Strahinya Radich <mr99164@alas.matf.bg.ac.yu>
* lib/mc.hint.sr: New file - Serbian hints.
2003-09-04 Pavel Roskin <proski@gnu.org>
* lib/mc.menu: Add entry for viewing manual pages.
2003-08-18 Pavel Roskin <proski@gnu.org>
* lib/mc-wrapper.csh.in: Use "id" command to find the real user
id. $USER is not reliable.
* lib/mc-wrapper.sh.in: Likewise.
Reported by Figura Peter <peterf@autus.sk>
2003-08-18 Andrew V. Samoilov <sav@bcs.zp.ua>
* acinclude.m4 (MC_WITH_NCURSES): Fix ESCDELAY check on Solaris.
Make sure that linking succeeds.
2003-08-02 Pavel Roskin <proski@gnu.org>
* lib/cedit.menu: Avoid using "id -u", it doesn't work on
Solaris. From Andrew V. Samoilov <sav@bcs.zp.ua>
2003-07-23 Pavel Roskin <proski@gnu.org>
* lib/mc.lib: Add more "end" and "home" sequences for xterm.
2003-07-22 Pavel Roskin <proski@gnu.org>
Get rid of all references to NATIVE_WIN32.
* pc: Remove. No work has been done on the PC post for years.
* README.PC: Likewise.
* Makefile.am: Adjust for the above.
* configure.in: Likewise.
2003-07-21 Pavel Roskin <proski@gnu.org>
* configure.in: Check posix_openpt() first and fallback to
GNU-specific getpt() only if needed.
2003-06-29 David Sterba <dave@jikos.cz>
* lib/mc.hint.cs: Typo fixes.
2003-06-25 Marco Ciampa <ciampix@libero.it>
* doc/it/mc.1.in: small fix
2003-06-23 Andrew V. Samoilov <sav@bcs.zp.ua>
* lib/mc.ext: Allow ZIP in all capitals in "file" output.
2003-06-18 Pavel Roskin <proski@gnu.org>
* configure.in: Remove test for SCO UNIX. Remove all references
to SCO_FLAVOR everywhere. SCO flavor is rather unsavory now.
2003-06-06 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Don't run compressed logs from /var/log through
nroff. Suggested by Alfie Costa <agcosta@gmx.net>
2003-05-16 Marco Ciampa <ciampix@libero.it>
* syntax/ruby.syntax: upgrade
* syntax/perl.syntax: small fix
2003-05-14 Marco Ciampa <ciampix@libero.it>
* syntax/ruby.syntax: New file - syntax for Ruby.
* syntax/Syntax: Add ruby.syntax.
* syntax/Makefile.am: Likewise.
2003-05-08 Pavel Roskin <proski@gnu.org>
* mc.spec.in: Strip pre-1998 changelog to work around a bug in
rpm 4.2, which doesn't like %install inside %changelog.
2003-04-29 Pavel Roskin <proski@gnu.org>
* configure.in: Add vfs/extfs/iso9660 to AC_CONFIG_FILES.
* lib/mc.ext.in: Add support for ISO images.
2003-03-31 Dmitry Alexeyev <dmi_a@qnx.org.ru>
* syntax/Syntax: Highlight *.mc as a makefile.
* syntax/sql.syntax: Add more keywords for PostgreSQL.
2003-03-21 Pavel Roskin <proski@gnu.org>
* syntax/sh.syntax: Highlight "find". Highlight whole string
after "#!". Make unrecognized text inside `` less bright.
2003-03-17 Marco Ciampa <ciampix@libero.it>
* doc/it/mc.1.in: Some manual fixes.
2003-03-14 Pavel Roskin <proski@gnu.org>
* syntax/c.syntax: Allow integer specifiers for %x and %X in C
format strings.
* syntax/cs.syntax: Likewise.
* syntax/java.syntax: Likewise.
* syntax/ml.syntax: Likewise.
* syntax/php.syntax: Likewise.
* syntax/python.syntax: Likewise.
* syntax/slang.syntax: Likewise.
* syntax/swig.syntax: Likewise.
2003-03-11 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_ASM_LABELS): New macro to work around a bug
gettext. Define _INTL_REDIRECT_MACROS if needed.
* configure.in: Use MC_ASM_LABELS.
2003-03-07 Pavel Roskin <proski@gnu.org>
* configure.in: Add --with-glib-static option.
2003-03-06 Pavel Roskin <proski@gnu.org>
* syntax/spec.syntax: Add BuildArch.
2003-03-05 Pavel Roskin <proski@gnu.org>
* configure.in: Check availability of setsid().
2003-03-04 Sanlig Badral <Badral@chinggis.com>
* po/LINGUAS: added Mongolian (mn) translation.
2003-03-03 Pavel Roskin <proski@gnu.org>
* lib/mc.lib: Add xterm arrows both for application and normal
mode. Normal mode can be accidentally enabled if one mc is run
from another and Ctrl-O is used to switch between them.
Add F11-F20 definitions for cons25 (FreeBSD console).
2003-02-27 Juan C. Olivares <juancri@TAGnet.org>
* syntax/cs.syntax: New file.
* syntax/Syntax: Add cs.syntax.
* syntax/Makefile.am: Likewise.
2003-02-27 Marco Ciampa <ciampix@libero.it>
* doc/it/mc.1.in: updated manual with -e switch description.
2003-02-26 Pavel Roskin <proski@gnu.org>
* syntax/syntax.syntax: Highlight "define".
2003-02-23 Marco Ciampa <ciampix@libero.it>
* doc/it/mc.1.in: updated manual with some stylistic changes.
2003-02-23 Dmitry Alexeyev <dmi_a@qnx.org.ru>
* lib/mc.ext.in: Add entry for QNX Neutrino packages.
2003-02-22 Pavel Tsekov <ptsekov@gmx.net>
* acinclude.m4 [AC_G_MODULE_SUPPORTED]: New macro.
* configure.in: Test for gmodule. Don't link mc with libX11 if
gmodule is supported.
2003-02-22 Pavel Roskin <proski@gnu.org>
* configure.in: Add --with-glib12 option to configure to force
using glib 1.2.x.
2003-02-21 Andrew V. Samoilov <sav@bcs.zp.ua>
* doc/ru/mc.1.in (Layout): Translate 'Xterm window title' option.
(Extension File Edit): Translate include feature.
2003-02-20 Pavel Roskin <proski@gnu.org>
* configure.in: Move list of all translations ...
* po/LINGUAS: ... here.
2003-02-18 Pavel Roskin <proski@gnu.org>
* syntax/c.syntax: Highlight C++ comments in preprocessor
directives.
Reported by Oswald Buddenhagen <ossi@kde.org>
2003-02-13 Marco Ciampa <ciampix@libero.it>
* doc/it/mc.1.in: updated manual following it.po changes.
2003-02-05 Pavel Roskin <proski@gnu.org>
* configure.in: Bump version to 4.6.0a.
* configure.in: Version 4.6.0 released.
2003-02-04 Arpi <arpi@mplayerhq.hu>
* syntax/Syntax: Match *.syntax before other files to fix
highlighting of makefile.syntax.
2003-02-04 Pavel Roskin <proski@gnu.org>
* syntax/c.syntax: Revert highlighting trailing whitespaces.
2003-02-03 Andrew V. Samoilov <sav@bcs.zp.ua>
* autogen.sh: Fix unportable "+" sed regexp in gettext_ver
calculation. Reported by vlad@geekizoid.com.
2003-01-31 Pavel Roskin <proski@gnu.org>
* syntax/nroff.syntax: Make colors more compatible with the
highlighting used in the internal viewer - yellow for bold and
brightred for italic.
2003-01-31 Andrew V. Samoilov <sav@bcs.zp.ua>
* syntax/c.syntax: Highlight trailing whitespace(s).
2003-01-30 Pavel Tsekov <ptsekov@gmx.net>
* acinclude.m4 (MC_WITH_NCURSES): Check -lcurses if -lncurses
doesn't work. Useful on OpenBSD 3.2.
2003-01-29 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Fix missing semicolon that affected viewing RPM
packages.
2003-01-24 Pavel Roskin <proski@gnu.org>
* configure.in: Add -lposix on A/UX before all tests.
2003-01-23 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_EXTFS_CHECKS): Fix redirection to /dev/null.
2003-01-22 Pavel Roskin <proski@gnu.org>
* configure.in: Bump version to 4.6.0-pre3a.
* configure.in: Version 4.6.0-pre3 released.
* acinclude.m4 (_MC_WITH_XSLANG): Drop support for old S-Lang
versions that required the native curses library on some OSes.
2003-01-19 Adam Byrtek <alpha@debian.org>
* doc/mcview.1.in: New file.
* configure.in: Treat it like doc/mcedit.1.in.