ChangeLog 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269
  1. 2009-02-17 Mikhail Pobolovets <styx.mp@gmail.com>
  2. * lt.po: update by stikonas (#274)
  3. 2009-02-05 Mikhail Pobolovets <styx.mp@gmail.com>
  4. * nl.po: update by mpol (#271)
  5. 2009-02-04 Enrico Weigelt, metux ITS <weigelt@metux.de>
  6. * lib/mc.sh.in: fixes for non-bash shells (fixing #196)
  7. 2009-02-04 Enrico Weigelt, metux ITS <weigelt@metux.de>
  8. * mhl/types.h, mhl/escape.h: replaced bool type by stdbool.h (fixing #240)
  9. 2009-02-03 Enrico Weigelt, metux ITS <weigelt@metux.de>
  10. * lib/mc.ext.in: command line options fix by adamw (#183)
  11. 2009-02-03 Enrico Weigelt, metux ITS <weigelt@metux.de>
  12. * lib/mc.lib: added patch on #219 by angel_il
  13. * vfs/extfs/u7z: patch from mandriva (#194)
  14. 2009-02-02 Enrico Weigelt, metux ITS <weigelt@metux.de>
  15. * vfs/extfs/iso9660.in: added iso9660 fix by cppgx (#86)
  16. 2009-02-01 Enrico Weigelt, metux ITS <weigelt@metux.de>
  17. * src/util.c: fixed name_trunc() on NULL or empty parameters
  18. * src/achown.c: fixed unitialized var in init_chown_advanced()
  19. (patch from andrew_b)
  20. 2009-01-31 Enrico Weigelt, metux ITS <weigelt@metux.de>, Patrick Winnertz <winnie@debian.org>, Slava Zanko <slavazanko@gmail.com>, Sergei Trofimovich <slyfox@inbox.ru>
  21. * edit/editcmd.c, mhl/escape.h, mhl/string.h, mhl/types.h, src/Makefile.am,
  22. * src/boxes.c, src/command.c, src/complete.c, src/complete.h, src/file.c,
  23. * src/find.c, src/main.c, src/panelize.c, src/util.c, src/utilunix.c,
  24. * src/widget.c, src/widget.h, src/wtools.c, vfs/fish.c:
  25. fixed shell escaping issues in commandline completion engine
  26. 2009-01-31 Enrico Weigelt, metux ITS <weigelt@metux.de>
  27. * replaced buggy concat_dir_and_file() by mhl_str_dir_plus_file() (in mhl/string.h)
  28. 2009-01-30 Enrico Weigelt, metux ITS <weigelt@metux.de>
  29. * src/Makefile.am, edit/Makefile.am vfs/Makefile.am: fixed #208
  30. (out-of-tree builds)
  31. 2009-01-29 Mikhail S. Pobolovets <styx.mp@gmail.com>
  32. * lib/mc.ext.in: update for OpenOffice and StarOffice viewer.
  33. odt2txt is now used
  34. 2009-01-29 Patrick Winnertz <winnie@debian.org> & Sergei Trofimovich <slyfox@inbox.ru>
  35. * src/file.c: Added trailing dir separator for default path in copy/move dialogs.
  36. This solves "strange" rename cases, when copying/moving is performed into
  37. deleted directory.
  38. 2009-01-27 Enrico Weigelt, metux ITS <weigelt@metux.de>
  39. * mhl/escape.h, src/complete.c, vfs/fish.c: introduced new type
  40. SHELL_ESCAPED_STR for more type safety
  41. 2009-01-27 Enrico Weigelt, metux IT service <weigelt@metux.de>
  42. * mhl/escape.h, mhl/string.h: fixed comments to use /* ... */
  43. 2009-01-27 Sergei Trofimovich <slyfox@inbox.ru>
  44. * syntax/python.syntax: Added syntax highlighting for
  45. pytnoh-2.6+ keywords (patch sent by NNemec)
  46. 2009-01-25 Ilia Maslakov <il.smind@gmail.com>
  47. * src/boxes.c, src/boxes.h, src/dir.c, src/dir.h:
  48. * src/main.c, src/panel.h, src/screen.c, src/setup.c:
  49. - Add support for showing executables at first in the panel view
  50. 2009-01-25 Patrick Winnertz <winnie@debian.org> & Sergei Trofimovich <slyfox@inbox.ru>
  51. * mhl/string.h, vfs/fish.c, vfs/utilvfs.c, vfs/utilvfs.h: Reworked fish code
  52. so that symlinks and files which special characters works now
  53. 2009-01-25 Enrico Weigelt, metux ITS <weigelt@metux.de>
  54. * edit/editcmd.c, src/cmd.c, src/ext.c, src/history.h:
  55. * src/hotlist.c, src/panelize.c, src/tree.c, src/user.c:
  56. * src/view.c, vfs/ftpfs.c, vfs/utilvfs.c:
  57. - Made history section names statically instead of dynamic
  58. translated strings. This breaks now once every history file
  59. but afterwards this will be stable
  60. 2009-01-24 Enrico Weigelt, metux IT service <weigelt@metux.de>
  61. * vfs/extfs/rpm, vfs/extfs/trpm: removed obsolete rpm tags
  62. * src/cmd.c: fixed bug #35 (do_view_cmd is now calling repaint_screen())
  63. 2009-01-24 Patrick Winnertz <winnie@debian.org>
  64. * edit/editcmd.c: Fix some issues about regex:
  65. - prevent . to match a newline (\n)
  66. - match from start of line and not from cursor position
  67. 2009-01-18 Patrick Winnertz <winnie@debian.org>
  68. * edit/editdraw.c: Moved var into if clause as it's only used
  69. there
  70. * edit/editlock.c: Removed unnecessary arguement to if condition
  71. * src/cmd.c: Removed unused pointer
  72. * src/hotlist.c: Removed unused function save_group
  73. * src/main.c: Removed unused function do_mc_filename_rename
  74. * src/util.c: Removed unused struct whentm
  75. 2009-01-16 Enrico Weigelt, metux IT service <weigelt@metux.de>
  76. * src/subshell: setting subshell pty to close-on-exec
  77. (taken from mandriva patches)
  78. 2009-01-14 Slava Zanko <slavazanko@gmail.com>
  79. * lib/mc.ext.in: change filemask for recognize 7z-files
  80. * vfs/extfs/u7z:
  81. - change only LC_DATE global variable for correct work with arhive;
  82. - add sorting by filename in output of list files
  83. 2009-01-12 Patrick Winnertz <winnie@debian.org>
  84. * AUTHORS: Added Enrico Weigelt, Slava Zanko and
  85. Patrick Winnertz as authors
  86. 2009-01-11 Patrick Winnertz <winnie@debian.org>
  87. * po/de.po: Fix some spelling errors
  88. 2009-01-11 Enrico Weigelt, metux ITS <weigelt@metux.de>
  89. * FAQ HACKING README man/*: new HQ url
  90. * syntax/awk.syntax: added awk syntax file
  91. * configure.ac: replaced obsolete autoconf macros AC_GNU_SOURCE
  92. AC_AIX AC_MINIX by AC_USE_SYSTEM_EXTENSIONS
  93. 2009-01-11 Patrick Winnertz <winnie@debian.org>
  94. * syntax/pascal.syntax: Added syntax highlighting for
  95. some delphi keywords
  96. 2008-12-18 Roland Illig <roland.illig@gmx.de>
  97. * doc/mcedit.1: Documented the newly added filename:lineno
  98. invocation method.
  99. 2008-02-19 Pavel Roskin <proski@gnu.org>
  100. * doc/hu/mc.1.in: Fix description for M-u and M-H. Reported by
  101. Bozo Lajos.
  102. 2008-01-06 Roland Illig <roland.illig@gmx.de>
  103. * FAQ: Answered the slow startup related to old Samba code.
  104. (Closes: #21959)
  105. 2007-10-19 Pavel Tsekov <ptsekov@gmx.net>
  106. * NEWS: Update for 4.6.2.
  107. 2007-10-11 Pavel Tsekov <ptsekov@gmx.net>
  108. * configure.ac: Determine the size of `long', `long long' and
  109. off_t.
  110. 2007-09-26 Pavel Tsekov <ptsekov@gmx.net>
  111. * NEWS: Revert last change - it is invalid.
  112. 2007-09-24 Pavel Tsekov <ptsekov@gmx.net>
  113. * m4/codeset.m4: Update to serial #2.
  114. * m4/fsusage.m4: Update to serial #23.
  115. * m4/iconv.m4: Update to serial #AM6.
  116. * m4/intdiv0.m4: Update from gnulib.
  117. * m4/intmax.m4: Update to serial #3.
  118. * m4/inttypes-pri.m4: Update to serial #4.
  119. * m4/inttypes_h.m4: Update to serial #7.
  120. * m4/lib-link.m4: Update to serial #13.
  121. * m4/lib-prefix.m4: Update to serial #5.
  122. * m4/longlong.m4: Update to serial #10.
  123. * m4/onceonly.m4: Update to serial #4.
  124. * m4/printf-posix.m4: Update to serial #3.
  125. * m4/size_max.m4: Update to serial #6.
  126. * m4/stdint_h.m4: Update to serial #6.
  127. * m4/ulonglong.m4: Update to serial #6.
  128. * m4/wint_t.m4: Update to serial #2.
  129. 2007-09-24 Pavel Tsekov <ptsekov@gmx.net>
  130. * doc/mcedit.1.in: Update the version number to 4.6.2-pre1.
  131. * doc/mcview.1.in: Ditto.
  132. * doc/mcserv.8.in: Ditto.
  133. 2007-09-24 Pavel Tsekov <ptsekov@gmx.net>
  134. * FAQ: Update MC's homepage url.
  135. * README: Ditto.
  136. * doc/mc.1.in: Ditto.
  137. * doc/mcedit.1.in: Ditto.
  138. * doc/mcserv.8.in: Ditto.
  139. * doc/mcview.1.in: Ditto.
  140. * doc/es/mc.1.in: Ditto.
  141. * doc/hu/mc.1.in: Ditto.
  142. * doc/it/mc.1.in: Ditto.
  143. * doc/pl/mc.1.in: Ditto.
  144. * doc/ru/mc.1.in: Ditto.
  145. * doc/sr/mc.1.in: Ditto.
  146. * doc/sr/mcserv.8.in: Ditto.
  147. 2007-09-10 Pavel Tsekov <ptsekov@gmx.net>
  148. * configure.ac: Update the version number to 4.6.2-pre1.
  149. * doc/mc.1.in: Likewise.
  150. 2007-01-13 Pavel Tsekov <ptsekov@gmx.net>
  151. * doc/mc.1.in: Place the description of the "Swap panels" on
  152. a paragraph of its own.
  153. 2006-12-30 Pavel Tsekov <ptsekov@gmx.net>
  154. * m4/ls-mntd-fs.m4: Update to serial #26.
  155. 2006-12-30 Pavel Tsekov <ptsekov@gmx.net>
  156. * m4/fsusage.m4: Update to serial #22.
  157. 2006-12-30 Pavel Tsekov <ptsekov@gmx.net>
  158. * m4/fsusage.m4: Update to serial #18.
  159. 2006-12-28 Pavel Roskin <proski@gnu.org>
  160. * build-glib1.sh: Fix misplaced --with-glib12. Copy
  161. config.guess and config.sub from mc to glib sources - they are
  162. too old in glib.
  163. * build-glib2.sh: Update to the latest versions of glib, gettext
  164. and pkg-config.
  165. 2006-11-27 Leonard den Ottolander <leonard den ottolander nl>
  166. * NEWS: Bash < 2.05b (3-digit octals in echo_e_cmd) no longer
  167. supported.
  168. 2006-09-07 Pavel Tsekov <ptsekov@gmx.net>
  169. * acinclude.m4 (AC_GET_FS_INFO): Add erronously removed call to
  170. gl_FSTYPENAME.
  171. * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Add missing
  172. include directive for sys/param.h.
  173. 2006-09-07 Pavel Tsekov <ptsekov@gmx.net>
  174. * m4/ls-mntd-fs.m4: Update to serial#22, which adds support
  175. for getmntinfo() returning its result in struct statvfs.
  176. * m4/fstypename.m4: Update to serial#6, which replaces
  177. HAVE_F_FSTYPENAME_IN_STATFS with HAVE_STRUCT_STATFS_F_FSTYPENAME.
  178. 2006-09-07 Pavel Tsekov <ptsekov@gmx.net>
  179. * acinclude.m4 (AC_GET_FS_INFO): Revert a failed attempt to
  180. properly detect getmntinfo() returning its result in struct statvfs.
  181. 2006-06-30 Hampa Hug <hampa@hampa.ch>
  182. * acinclude.m4 (AC_GET_FS_INFO): Check the return value of
  183. getmntinfo() properly.
  184. 2006-06-17 Pavel Tsekov <ptsekov@gmx.net>
  185. * m4/fstypename.m4: New file.
  186. * acinclude.m4 (AC_GET_FS_INFO): Add a check to determine whether
  187. getmntinfo() takes struct statvfs instead of struct statfs as its
  188. first argument. Define MOUNTED_GETMNTINFO_STATVFS if it does.
  189. Add a check to determine whether struct statvfs has a field named
  190. f_fstypename.
  191. Use gl_FSTYPENAME tp determine whether struct statfs has a field
  192. named f_fstypename.
  193. 2006-06-07 Pavel Tsekov <ptsekov@gmx.net>
  194. * configure.ac: Revert last commit.
  195. 2006-05-29 Roland Illig <roland.illig@gmx.de>
  196. * m4/ls-mntd-fs.m4: Updated to serial #21, which fixes the use
  197. of an undefined variable.
  198. 2006-05-21 Roland Illig <roland.illig@gmx.de>
  199. * configure.ac: Fixed detection of <sys/statvfs.h>, statvfs()
  200. and struct statvfs.f_fstypename, so that mc builds on NetBSD 3.0
  201. again.
  202. 2006-04-18 Pavel Tsekov <ptsekov@gmx.net>
  203. * acinclude.m4 (AC_GET_FS_INFO): Make it work again - the last
  204. commit broke it.
  205. * m4/onceonly.m4: New file.
  206. 2006-04-13 Anton Monroe <akm@meer.net>
  207. * doc/mc.1.in: Function key documentation update.
  208. 2006-03-18 Leonard den Ottolander <leonard den ottolander nl>
  209. * acinclude.m4 (AC_GET_FS_INFO): Replace old fileutils code to get
  210. mount and file system information with m4_includes of the corresponding
  211. GNU coreutils-5.94 files (ls-mntd-fs.m4 (#20) and fsusage.m4 (#16)).
  212. * m4/fsusage.m4, m4/ls-mntd-fs.m4: Create.
  213. 2006-02-23 Pavel Tsekov <ptsekov@gmx.net>
  214. * doc/mc.1.in: Document `fish_directory_timeout'.
  215. 2006-02-18 David Martin <<dmartina@excite.com>
  216. * doc/es/mc.1.in: Cleanup. Fix key naming.
  217. 2006-01-29 Pavel Tsekov <ptsekov@gmx.net>
  218. * doc/mc.1.in: Update the documentation to reflect the fact
  219. that confirmation may be requested when deleting directory
  220. hotlist entries based on a user configurable setting.
  221. 2006-01-29 Julian Mehnle <julian@mehnle.net>
  222. * doc/mc.1.in: Document support for VIEWER environment variable.
  223. 2005-11-15 Pavel Roskin <proski@gnu.org>
  224. * acinclude.m4 (MC_WITH_MCSLANG): Add type tests from S-Lang
  225. configuration scripts.
  226. 2005-11-10 Pavel Roskin <proski@gnu.org>
  227. * configure.ac: Catch unexpanded MC_* macros.
  228. * m4/*.m4: Update to the macros provided by gettext 0.14.3.
  229. * m4/Makefile.am: Update the list of the *.m4 files.
  230. * configure.ac: Use AC_GNU_SOURCE, which prevents redefining
  231. _GNU_SOURCE. Bump Autoconf version to 2.54, where AC_GNU_SOURCE
  232. appeared.
  233. Reported by Leonard den Ottolander <leonard den ottolander nl>
  234. * configure.ac: Use gettext 0.14.3.
  235. * acinclude.m4 (MC_ASM_LABELS): Remove, it's not needed with
  236. recent versions of gettext.
  237. * acinclude.m4 (MC_ASM_LABELS): Make the test function global
  238. and move its definition above main(). That's closer to what
  239. gettext is actually doing.
  240. 2005-10-03 Pavel Roskin <proski@gnu.org>
  241. * configure.ac: Require gettext with ngettext support. It's
  242. already used in src/info.c.
  243. 2005-09-28 Pavel Roskin <proski@gnu.org>
  244. * acinclude.m4: Remove gettext 0.10.x compatibility.
  245. 2005-08-23 Marco Ciampa <ciampix@libero.it>
  246. * doc/it/mc.1.in: updated italian trasnlation.
  247. * doc/it/xnc.hlp: small fix.
  248. 2005-08-15 Roland Illig <roland.illig@gmx.de>
  249. * configure.ac: The function getgrouplist() is not used anymore,
  250. so there is no need to check for it. The various get[ug]id
  251. functions are used, so add checks for them. Same for isascii.
  252. 2005-07-20 Pavel Roskin <proski@gnu.org>
  253. * lib/mc.ext.in: Restore support for opening 7-zip archives.
  254. * configure.ac: Add vfs/extfs/ualz to AC_CONFIG_FILES.
  255. * lib/mc.ext.in: Add support for ALZip archives.
  256. 2005-07-10 Leonard den Ottolander <leonard den ottolander nl>
  257. * configure.ac: Rename AS_HELP_STRING to AC_HELP_STRING.
  258. 2005-07-08 Leonard den Ottolander <leonard den ottolander nl>
  259. * NEWS: Fixed commit to the wrong branch.
  260. 2005-07-05 Roland Illig <roland.illig@gmx.de>
  261. * configure.ac: Removed detection of the umode_t type. All
  262. references to it have been replaced with mode_t.
  263. 2005-07-03 Leonard den Ottolander <leonard * den ottolander nl>
  264. * lib/mc.ext.in: Match files in /log/ or /logs/ directories as plain
  265. text not man page; match local man pages; add fixes for gzipped man
  266. pages to plain and bzipped man pages.
  267. 2005-07-03 Leonard den Ottolander <leonard * den ottolander nl>
  268. * lib/mc.ext.in: Move matches for plain compressed files down.
  269. 2005-07-03 Roland Illig <roland.illig@gmx.de>
  270. * acinclude.m4 (MC_WITH_VFS): Don't link with libnsl
  271. unnecessarily.
  272. * configure.ac: Simplified detection of the necessary libraries
  273. for socket() and gethostbyname().
  274. Patch provided by Tomasz Kloczko at 2005-06-15 on mc-devel.
  275. 2005-06-21 Pavel Roskin <proski@gnu.org>
  276. * lib/mc.ext.in: Support opening for 7-Zip archives.
  277. 2005-06-06 Roland Illig <roland.illig@gmx.de>
  278. * NEWS: Added the differences between pre3 and HEAD.
  279. * lib/mc.ext.in: Added ${PAGER} as fallback if neither lynx nor
  280. links is installed.
  281. 2005-05-31 Andrew V. Samoilov <sav@bcs.zp.ua>
  282. * pkginfo.in: New file. Configuration files for Sun Solaris pkgmk(1).
  283. * prototype.in: Likewise.
  284. * configure.ac: Likewise.
  285. * Makefile.am: Likewise.
  286. 2005-05-29 Martin Petricek <tux@centrum.cz>
  287. * lib/mc.ext.in: Added support for .7z archives.
  288. 2005-05-26 Pavel Roskin <proski@gnu.org>
  289. * *: Update postal address of Free Software Foundation.
  290. 2005-05-23 Roland Illig <roland.illig@gmx.de>
  291. * syntax/ChangeLog: The syntax directory has got its own
  292. ChangeLog.
  293. 2005-05-17 Roland Illig <roland.illig@gmx.de>
  294. * configure.ac: Removed the extra definition of
  295. HAVE_C_TYPE_SOCKLEN_T, which is unused.
  296. 2005-05-14 Roland Illig <roland.illig@gmx.de>
  297. * syntax/diff.syntax: Lines starting with a <tab> character are
  298. displayed like lines starting with a <space>. This is for the
  299. cvs diff -T option.
  300. * syntax/makefile.syntax: Highlight $$ (a literal $) in
  301. brightcyan. This way $${var} is not highlighted as if it were a
  302. Makefile variables. Also added useful comments before the contexts.
  303. 2005-05-13 Pavel Roskin <proski@gnu.org>
  304. * configure.ac: Require Autoconf 2.53 or newer.
  305. * m4/Makefile.am: Remove isc-posix.m4, it's obsolete.
  306. * m4/isc-posix.m4: Remove.
  307. 2005-05-13 Nerijus Baliunas <nerijus@users.sourceforge.net>
  308. * lib/mc.ext.in: Add OpenOffice.org 2 extensions, use o3totxt
  309. to view OpenOffice.org documents.
  310. 2005-05-11 Pavel Roskin <proski@gnu.org>
  311. * acinclude.m4: Remove MC_ARG_ENABLE_DEVELOPER_MODE.
  312. * configure.ac: Replace MC_ARG_ENABLE_DEVELOPER_MODE with a
  313. simpler and more user-friendly piece of code.
  314. 2005-05-01 Roland Illig <roland.illig@gmx.de>
  315. * syntax/c.syntax: Added missing punctuation characters.
  316. 2005-04-28 Pavel Roskin <proski@gnu.org>
  317. * syntax/Syntax: Don't highlight csh scripts. Allow using
  318. "/usr/bin/env" instead of the full path.
  319. 2005-04-27 Leonard den Ottolander <leonard * den ottolander nl>
  320. * AUTHORS: Added Pavel Shirshov and myself as contributors.
  321. 2005-04-26 Roland Illig <roland.illig@gmx.de>
  322. * acinclude.m4: Renamed AS_HELP_STRING to AC_HELP_STRING for
  323. compatibility with autoconf-2.57.
  324. 2005-04-22 Roland Illig <roland.illig@gmx.de>
  325. * acinclude.m4: Added macro MC_ARG_ENABLE_DEVELOPER_MODE.
  326. * configure.ac: Using MC_ARG_ENABLE_DEVELOPER_MODE instead of
  327. the --maintainer-mode.
  328. 2005-04-17 Leonard den Ottolander <leonard * den ottolander nl>
  329. * syntax/eiffel.syntax: dos2unix; removed redundant cooledit
  330. colour definitions.
  331. * syntax/perl.syntax: Removed redundant cooledit definitions.
  332. * syntax/php.syntax: ' ' and " " context fixes.
  333. * syntax/syntax.syntax: Removed 2 duplicate lines.
  334. 2005-04-16 Roland Illig <roland.illig@gmx.de>
  335. * lib/mc.ext.in: Recognize either *.udeb or *.deb as Debian
  336. packages. Fixes Savannah patch #3899.
  337. 2005-04-14 Leonard den Ottolander <leonard * den ottolander nl>
  338. * syntax/Syntax: Catch Makefiles with capitals in the extension.
  339. 2005-04-14 Roland Illig <roland.illig@gmx.de>
  340. * doc/mc.1.in (Internal File Viewer): Rewrote some documentation.
  341. Removed the paragraph about the growing buffers. It's generally
  342. uninteresting to users.
  343. 2005-04-13 Roland Illig <roland.illig@gmx.de>
  344. * configure.ac: Add -DNDEBUG to CPPFLAGS if the maintainer mode
  345. is not enabled.
  346. 2005-03-19 Pavel Roskin <proski@gnu.org>
  347. * acinclude.m4 (MC_WITH_SLANG): Partly restore original order of
  348. checks and add a comment with a warning.
  349. From Pavel S. Shirshov <me@pavelsh.pp.ru>
  350. * acinclude.m4 (MC_WITH_SLANG): Reorder checks. Move termcap
  351. checks ...
  352. (MC_SLANG_TERMCAP): ... here.
  353. (MC_SLANG_PRIVATE): Check if private functions are available.
  354. It's not the case on Debian unstable.
  355. 2005-03-19 Pavel S. Shirshov <me@pavelsh.pp.ru>
  356. * syntax/idl.syntax: Add syntax file for the CORBA idl.
  357. From Ian Zagorskih <ianzag@megasignal.com>
  358. * syntax/lua.syntax: Add syntax file for the LUA programming language.
  359. From Mike Gorchak <mike@malva.ua>
  360. * syntax/Syntax: Add syntax file for CORBA idl and lua.
  361. * syntax/Makefile.am: Likewise.
  362. * mc.qpg.in: Likewise.
  363. * NEWS: Likewise.
  364. 2005-03-19 Pavel Roskin <proski@gnu.org>
  365. * acinclude.m4 (MC_WITH_SLANG): Define HAVE_SYSTEM_SLANG after
  366. all fallbacks so it shows whether we are using system S-Lang.
  367. * configure.ac: Remove USE_INCLUDED_SLANG, since it's now fully
  368. dependent on HAVE_SLANG and HAVE_SYSTEM_SLANG.
  369. * src/myslang.h: Likewise.
  370. 2005-03-18 Mike Gorchak <mike@malva.ua>
  371. * syntax/assembler.syntax: Add syntax file for the x86 assembler.
  372. * syntax/povray.syntax: Add syntax file for the POVRay.
  373. * syntax/Syntax: Add syntax file for x86 assembler and POVRay.
  374. * syntax/Makefile.am: Likewise.
  375. * mc.qpg.in: Likewise.
  376. * NEWS: Likewise.
  377. 2005-03-14 Leonard den Ottolander <leonard * den ottolander nl>
  378. * syntax/diff.syntax: Changed default color from gray, which was
  379. quite unreadable, to a bright yellow.
  380. 2005-03-10 Roland Illig <roland.illig@gmx.de>
  381. * autogen.sh: Made the gettext version check more portable. The
  382. actual sed command is unchanged.
  383. 2005-02-26 Miguel de Icaza <miguel@novell.com>
  384. * doc/mc.1.in: Replace M-char with Alt-char everywhere, which is
  385. simpler to understand.
  386. 2005-01-29 Miguel de Icaza <miguel@novell.com>
  387. * configure.ac: Check for getgrouplist API call.
  388. 2005-02-07 Roland Illig <roland.illig@gmx.de>
  389. * NEWS: Added the changes between mc-4.6.1-pre3 and now.
  390. 2005-01-27 Roland Illig <roland.illig@gmx.de>
  391. * configure.ac: Add checks for C headers <sys/mkdev.h> and
  392. <sys/sysmacros.h> to support major/minor arithmetics on
  393. device numbers.
  394. 2005-01-11 Pavel S. Shirshov <me@pavelsh.pp.ru>
  395. * acinclude.m4: Fix '--with-screen' configure option.
  396. 2004-12-30 Andrew V. Samoilov <sav@bcs.zp.ua>
  397. * autogen.sh: Fix workaround for automake 1.5.
  398. 2004-12-28 Leonard den Ottolander <leonard * den ottolander nl>
  399. * syntax/spec.syntax: Set whole on spec macro option keywords.
  400. 2004-12-13 Pavel S. Shirshov <me@pavelsh.pp.ru>
  401. * acinclude.m4: Fix "make distcheck".
  402. 2004-12-12 Pavel S. Shirshov <me@pavelsh.pp.ru>
  403. * NEWS: Update.
  404. 2004-12-10 Pavel S. Shirshov <me@pavelsh.pp.ru>
  405. * autogen.sh: Comment workaround for Automake 1.5. It's not working
  406. for Automake 1.9.
  407. 2004-12-07 Roland Illig <roland.illig@gmx.de>
  408. * syntax/Makefile.am: Don't install syntax highlighting files if
  409. the internal editor is disabled.
  410. 2004-12-03 Pavel S. Shirshov <me@pavelsh.pp.ru>
  411. * configure.ac: Bump version to 4.6.1a
  412. 2004-11-17 Pavel S. Shirshov <me@pavelsh.pp.ru>
  413. * acinclude.m4: Fix compiling mc with system slang on FreeBSD.
  414. 2004-11-16 Roland Illig <roland.illig@gmx.de>
  415. * TODO: Checked the remaining vfs/extfs shell scripts and
  416. removed them from the TODO list. This was the last item
  417. in the section "Before 4.6.1", so I deleted the whole
  418. section.
  419. 2004-11-08 Pavel S. Shirshov <me@pavelsh.pp.ru>
  420. * TODO (4.6.2): Fix the '#' in path names issue.
  421. 2004-11-07 Roland Illig <roland.illig@gmx.de>
  422. * TODO (4.6.1): Moved the '#' in path names issue to 4.6.2.
  423. * TODO: Added issue about hiding passwords in VFS pathnames.
  424. 2004-11-05 Andrew V. Samoilov <sav@bcs.zp.ua>
  425. * README: Fix typo.
  426. 2004-11-04 Mike Gorchak <mike@malva.ua>
  427. * mc.qpg.in: Synchronization with the latest file has been added
  428. to the distro.
  429. * configure.ac: Added information about status of charset enabling.
  430. * syntax/Syntax: Treat QNX6 specific files with extensions qpg and
  431. qpg.in as xml files.
  432. 2004-11-02 Roland Illig <roland.illig@gmx.de>
  433. * configure.ac: Add feature test whether socklen_t is defined
  434. in <sys/socket.h>.
  435. 2004-10-28 Jindrich Novy <jnovy@redhat.com>
  436. * lib/mc.ext.in: Add a few sound formats that "play" and "mikmod"
  437. utility knows.
  438. 2004-10-27 Roland Illig <roland.illig@gmx.de>
  439. * configure.ac: Add check for type socklen_t.
  440. 2004-10-27 Juan C. Olivares <juancri@juancri.com>
  441. * syntax/aspx.syntax: Add syntax file for ASP.NET.
  442. * syntax/Syntax: Likewise.
  443. * syntax/Makefile.am: Likewise.
  444. 2004-10-27 Pavel S. Shirshov <me@pavelsh.pp.ru>
  445. * TODO: Move entry 'Broken pipe warning...' to 4.6.2 TODO list.
  446. Remove entries for perl extfs scripts.
  447. 2004-10-24 Roland Illig <roland.illig@gmx.de>
  448. * configure.ac: Only add "-Wall" to CFLAGS if GCC is set to "yes".
  449. 2004-10-23 Roland Illig <roland.illig@gmx.de>
  450. * TODO: Check proper quoting in vfs/extfs/*.
  451. 2004-10-20 Pavel S. Shirshov <me@pavelsh.pp.ru>
  452. * lib/mc.ext.in: Use xmms for audio files in XWindows mode.
  453. Add support for *.wma files. Add support for playlists.
  454. Partially based on patch from q# <eth0@o2.pl>
  455. 2004-10-18 Roland Illig <roland.illig@gmx.de>
  456. * TODO: Some new TODO items with low priority: More standard
  457. widgets, CVS frontend, patch editor, context menus.
  458. 2004-10-16 Roland Illig <roland.illig@gmx.de>
  459. * TODO: Fixed the "./ files in tar archive" item for mc-4.6.1.
  460. 2004-10-16 Roland Illig <roland.illig@gmx.de>
  461. * syntax/eiffel.syntax: Add syntax highlighting rules for the
  462. Eiffel programming language.
  463. * syntax/Syntax: Bind *.e with eiffel.syntax.
  464. * syntax/Makefile.am: Added syntax.eiffel.
  465. From Daniel F Moisset <dmoisset grulic org ar>
  466. 2004-10-12 Pavel S. Shirshov <me@pavelsh.pp.ru>
  467. * syntax/sql.syntax: Improve sql.syntax file and added several
  468. keywords.
  469. From Karel Zak
  470. 2004-10-12 Andrew V. Samoilov <sav@bcs.zp.ua>
  471. * acinclude.m4 (MC_WITH_MCSLANG): Set screen_type to mcslang.
  472. * configure.ac: Define USE_INCLUDED_SLANG if screen_type is mcslang.
  473. 2004-10-05 Gergely Sza'sz <szaszg@hu.inter.net>
  474. * syntax/perl.syntax: Fix highlight the hashes.
  475. * syntax/diff.syntax: Highlight comments (lines begin with #),
  476. and garbage in diff files.
  477. 2004-09-17 Dmitry Alexeyev <dmi_a@qnx.org.ru>
  478. * mc.qpg.in: New file. Description for QNX 6.x packager.
  479. 2004-09-25 Roland Illig <roland.illig@gmx.de>
  480. * configure.ac: #define _GNU_SOURCE to an empty value instead of 1,
  481. which conflicted with src/regex.c.
  482. 2004-09-24 Roland Illig <roland.illig@gmx.de>
  483. * HACKING (Programming tips): Added a tip concerning the NULL
  484. pointer in varargs function calls.
  485. 2004-09-22 Roland Illig <roland.illig@gmx.de>
  486. * HACKING: Added advice for using g_strdup for a modifiable
  487. copy of a string.
  488. * HACKING: Added a section about where to look for bug reports
  489. and patches.
  490. 2004-09-19 Roland Illig <roland.illig@gmx.de>
  491. * HACKING: Added explanation for const_cast.
  492. 2004-09-17 Dmitry Alexeyev <dmi_a@qnx.org.ru>
  493. * syntax/makefile.syntax: Adds "define" and "ended" keywords
  494. * syntax/perl.syntax: Adds "break" keyword
  495. 2004-09-10 Jakub Jelinek <jakub@redhat.com>
  496. * lib/mc.lib: Add gnome, rxvt and xterm-new terminals.
  497. 2004-09-10 Pavel S. Shirshov <me@pavelsh.pp.ru>
  498. * syntax/php.syntax: Upgrade php.syntax file.
  499. From Leonard den Ottolander <leonard * den.ottolander.nl>
  500. 2004-09-04 Jakub Jelinek <jakub@redhat.com>
  501. * configure.ac: grantpt is only available with -D_XOPEN_SOURCE
  502. or -D_GNU_SOURCE under Linux.
  503. 2004-09-04 Pavel S. Shirshov <me@pavelsh.pp.ru>
  504. * HACKING: Add to section "Programming Tips" g_free tip.
  505. 2004-09-02 Roland Illig <roland.illig@gmx.de>
  506. * HACKING: Added a section "Programming Tips" which lists mistakes
  507. that have been done once and should never be repeated.
  508. 2004-08-29 Roland Illig <roland.illig@gmx.de>
  509. * m4/ri-gcc-warnings.m4: Now handles only the last --enable or
  510. --disable option. Before, --disable has not been handled
  511. correctly.
  512. 2004-08-22 Pavel S. Shirshov <me@pavelsh.pp.ru>
  513. * m4/ri-gcc-warnings.m4: Using AC_HELP_STRING for more portable.
  514. AS_HELP_STRING was introduced after autoconf 2.57+.
  515. From Leonard den Ottolander <leonard * den.ottolander.nl>
  516. 2004-08-18 Roland Illig <roland.illig@gmx.de>
  517. * "make uninstall": removes the symlinks bin/mcedit and bin/mcview.
  518. 2004-08-17 Roland Illig <roland.illig@gmx.de>
  519. * configure.ac: The GCC warning flags are only used in
  520. maintainer-mode.
  521. 2004-08-17 Pavel S. Shirshov <me@pavelsh.pp.ru>
  522. * lib/cedit.menu: Security fix patch. Fix insecure temporary file and
  523. directory creations. (CAN-2004-0231).
  524. * lib/mc.menu: Likewise.
  525. * doc/mc.1.in: Likewise.
  526. * doc/es/mc.1.in: Likewise.
  527. * doc/hu/mc.1.in: Likewise.
  528. * doc/it/mc.1.in: Likewise.
  529. * doc/pl/mc.1.in: Likewise.
  530. * doc/ru/mc.1.in: Likewise.
  531. * doc/sr/mc.1.in: Likewise.
  532. 2004-08-09 Andrew V. Samoilov <sav@bcs.zp.ua>
  533. * configure.ac: Add check for atoll().
  534. * doc/mc.1.in (Extension File Edit): Document "directory" keyword.
  535. * doc/ru/mc.1.in: Likewise.
  536. 2004-08-02 Pavel Shirshov <me@pavelsh.pp.ru>
  537. * autogen.sh: Fix unportable "\n" in sed.
  538. 2004-04-02 Pavel Roskin <proski@gnu.org>
  539. * lib/mc.ext.in: Use gqview instead of ee for images. ee seems
  540. to be obsolete. Suggested by Marcel Pol <mpol@gmx.net>
  541. 2004-01-22 Pavel Roskin <proski@gnu.org>
  542. * lib/mc.ext.in: Recognize *.tb2 and *.tbz files.
  543. * configure.in: Rename to ...
  544. * configure.ac: ... this.
  545. 2003-12-30 David Martin <dmartina@excite.com>
  546. * doc/mc.1.in: Synchronized latest fixes (long options) and
  547. moved year and version number.
  548. 2003-12-24 Pavel Roskin <proski@gnu.org>
  549. * configure.in: Release 4.6.1-pre1.
  550. 2003-11-28 Pavel Roskin <proski@gnu.org>
  551. * acinclude.m4 (MC_UNDELFS_CHECKS): Try ext2fs/ext2_fs.h before
  552. linux/ext2_fs.h. Use ext2fs/ext2_fs.h when possible - it's
  553. safer to avoid kernel headers.
  554. 2003-11-27 Pavel Roskin <proski@gnu.org>
  555. * src/TODO: Move ...
  556. * TODO: ... here.
  557. * doc/DEVEL: Move ...
  558. * HACKING: ... here. Adjust makefiles.
  559. 2003-11-20 Pavel Roskin <proski@gnu.org>
  560. * build-glib1.sh: Use more portable syntax for functions. Fall
  561. back to "ftp" for download, useful on BSD.
  562. * build-glib2.sh: Likewise.
  563. * build-glib1.sh: New file - download and compile glib 1.2.x,
  564. then compile mc against it.
  565. * build-glib2.sh: New file - download and compile glib 2.x with
  566. dependencies (gettext, pkgconfig), then compile mc against it.
  567. * Makefile.am: Distribute them.
  568. 2003-10-29 Pavel Roskin <proski@gnu.org>
  569. * acinclude.m4 (MC_UNDELFS_CHECKS): Don't use internal Autoconf
  570. variables.
  571. * configure.in: Rewrite check for mmap() to avoid using internal
  572. variables of Autoconf. Rename the rest of ac_cv_* to mc_cv_*.
  573. * configure.in: Use AC_CHECK_MEMBERS to check fields of struct
  574. stat. Adjust all dependencies.
  575. * acinclude.m4 (AC_STRUCT_LINGER): Remove, use AC_CHECK_MEMBERS
  576. instead.
  577. * configure.in: Define SLANG_POSIX_SIGNALS if all 4 required
  578. functions are present. Remove references to extraconf.h.
  579. * extraconf.h: Eliminate.
  580. * Makefile.am: Remove extraconf.h.
  581. * configure.in: Move ext2fs undelete support ...
  582. * acinclude.m4 (MC_WITH_VFS): ... here.
  583. * extraconf.h: Remove VFS logic, it's enforced in configure now.
  584. * acinclude.m4 (MC_WITH_VFS): Use AC_SEARCH_LIBS when possible.
  585. Allow disabling network code by --disable-netcode.
  586. 2003-10-28 Pavel Roskin <proski@gnu.org>
  587. * configure.in: Don't check if "file" can use stdin - it's
  588. unused now.
  589. 2003-10-25 Pavel Roskin <proski@gnu.org>
  590. * extraconf.h: Don't define HAVE_GRANTPT forcedly if grantpt()
  591. wasn't found. Don't define HAVE_CRYPT, it's unused now.
  592. * configure.in: Remove check for socketpair(). Add new option
  593. --enable-background.
  594. * extraconf.h: Don't define WITH_BACKGROUND.
  595. 2003-10-14 Pavel Roskin <proski@gnu.org>
  596. * configure.in: Don't check for seekdir() and telldir().
  597. 2003-09-23 Pavel Roskin <proski@gnu.org>
  598. * doc/sr/Makefile.am: Don't install mcserv documentation if mcfs
  599. support is disabled.
  600. * lib/*.ti: Remove, these files are obsolete.
  601. * lib/tdiff: Likewise.
  602. * lib/xterm.tcap: Likewise.
  603. * lib/Makefile.am: Remove obsolete files. Don't install
  604. README.xterm and xterm.ad, there are partly obsolete and can
  605. break things if used as is.
  606. 2003-09-22 Strahinya Radich <mr99164@alas.matf.bg.ac.yu>
  607. * lib/mc.hint.sr: Updated.
  608. * lib/mc.menu.sr: New file - translated menu.
  609. * lib/Makefile.am: Add mc.menu.sr.
  610. * doc/sr/: New Serbian documentation.
  611. * doc/Makefile.am: Add "sr" directory.
  612. * configure.in: Add substitutions for new files.
  613. 2003-09-22 Pavel Roskin <proski@gnu.org>
  614. * configure.in: Check for strlcpy() if glib 1.2.x is used.
  615. 2003-09-11 Strahinya Radich <mr99164@alas.matf.bg.ac.yu>
  616. * lib/mc.hint.sr: New file - Serbian hints.
  617. 2003-09-04 Pavel Roskin <proski@gnu.org>
  618. * lib/mc.menu: Add entry for viewing manual pages.
  619. 2003-08-18 Pavel Roskin <proski@gnu.org>
  620. * lib/mc-wrapper.csh.in: Use "id" command to find the real user
  621. id. $USER is not reliable.
  622. * lib/mc-wrapper.sh.in: Likewise.
  623. Reported by Figura Peter <peterf@autus.sk>
  624. 2003-08-18 Andrew V. Samoilov <sav@bcs.zp.ua>
  625. * acinclude.m4 (MC_WITH_NCURSES): Fix ESCDELAY check on Solaris.
  626. Make sure that linking succeeds.
  627. 2003-08-02 Pavel Roskin <proski@gnu.org>
  628. * lib/cedit.menu: Avoid using "id -u", it doesn't work on
  629. Solaris. From Andrew V. Samoilov <sav@bcs.zp.ua>
  630. 2003-07-23 Pavel Roskin <proski@gnu.org>
  631. * lib/mc.lib: Add more "end" and "home" sequences for xterm.
  632. 2003-07-22 Pavel Roskin <proski@gnu.org>
  633. Get rid of all references to NATIVE_WIN32.
  634. * pc: Remove. No work has been done on the PC post for years.
  635. * README.PC: Likewise.
  636. * Makefile.am: Adjust for the above.
  637. * configure.in: Likewise.
  638. 2003-07-21 Pavel Roskin <proski@gnu.org>
  639. * configure.in: Check posix_openpt() first and fallback to
  640. GNU-specific getpt() only if needed.
  641. 2003-06-29 David Sterba <dave@jikos.cz>
  642. * lib/mc.hint.cs: Typo fixes.
  643. 2003-06-25 Marco Ciampa <ciampix@libero.it>
  644. * doc/it/mc.1.in: small fix
  645. 2003-06-23 Andrew V. Samoilov <sav@bcs.zp.ua>
  646. * lib/mc.ext: Allow ZIP in all capitals in "file" output.
  647. 2003-06-18 Pavel Roskin <proski@gnu.org>
  648. * configure.in: Remove test for SCO UNIX. Remove all references
  649. to SCO_FLAVOR everywhere. SCO flavor is rather unsavory now.
  650. 2003-06-06 Pavel Roskin <proski@gnu.org>
  651. * lib/mc.ext.in: Don't run compressed logs from /var/log through
  652. nroff. Suggested by Alfie Costa <agcosta@gmx.net>
  653. 2003-05-16 Marco Ciampa <ciampix@libero.it>
  654. * syntax/ruby.syntax: upgrade
  655. * syntax/perl.syntax: small fix
  656. 2003-05-14 Marco Ciampa <ciampix@libero.it>
  657. * syntax/ruby.syntax: New file - syntax for Ruby.
  658. * syntax/Syntax: Add ruby.syntax.
  659. * syntax/Makefile.am: Likewise.
  660. 2003-05-08 Pavel Roskin <proski@gnu.org>
  661. * mc.spec.in: Strip pre-1998 changelog to work around a bug in
  662. rpm 4.2, which doesn't like %install inside %changelog.
  663. 2003-04-29 Pavel Roskin <proski@gnu.org>
  664. * configure.in: Add vfs/extfs/iso9660 to AC_CONFIG_FILES.
  665. * lib/mc.ext.in: Add support for ISO images.
  666. 2003-03-31 Dmitry Alexeyev <dmi_a@qnx.org.ru>
  667. * syntax/Syntax: Highlight *.mc as a makefile.
  668. * syntax/sql.syntax: Add more keywords for PostgreSQL.
  669. 2003-03-21 Pavel Roskin <proski@gnu.org>
  670. * syntax/sh.syntax: Highlight "find". Highlight whole string
  671. after "#!". Make unrecognized text inside `` less bright.
  672. 2003-03-17 Marco Ciampa <ciampix@libero.it>
  673. * doc/it/mc.1.in: Some manual fixes.
  674. 2003-03-14 Pavel Roskin <proski@gnu.org>
  675. * syntax/c.syntax: Allow integer specifiers for %x and %X in C
  676. format strings.
  677. * syntax/cs.syntax: Likewise.
  678. * syntax/java.syntax: Likewise.
  679. * syntax/ml.syntax: Likewise.
  680. * syntax/php.syntax: Likewise.
  681. * syntax/python.syntax: Likewise.
  682. * syntax/slang.syntax: Likewise.
  683. * syntax/swig.syntax: Likewise.
  684. 2003-03-11 Pavel Roskin <proski@gnu.org>
  685. * acinclude.m4 (MC_ASM_LABELS): New macro to work around a bug
  686. gettext. Define _INTL_REDIRECT_MACROS if needed.
  687. * configure.in: Use MC_ASM_LABELS.
  688. 2003-03-07 Pavel Roskin <proski@gnu.org>
  689. * configure.in: Add --with-glib-static option.
  690. 2003-03-06 Pavel Roskin <proski@gnu.org>
  691. * syntax/spec.syntax: Add BuildArch.
  692. 2003-03-05 Pavel Roskin <proski@gnu.org>
  693. * configure.in: Check availability of setsid().
  694. 2003-03-04 Sanlig Badral <Badral@chinggis.com>
  695. * po/LINGUAS: added Mongolian (mn) translation.
  696. 2003-03-03 Pavel Roskin <proski@gnu.org>
  697. * lib/mc.lib: Add xterm arrows both for application and normal
  698. mode. Normal mode can be accidentally enabled if one mc is run
  699. from another and Ctrl-O is used to switch between them.
  700. Add F11-F20 definitions for cons25 (FreeBSD console).
  701. 2003-02-27 Juan C. Olivares <juancri@TAGnet.org>
  702. * syntax/cs.syntax: New file.
  703. * syntax/Syntax: Add cs.syntax.
  704. * syntax/Makefile.am: Likewise.
  705. 2003-02-27 Marco Ciampa <ciampix@libero.it>
  706. * doc/it/mc.1.in: updated manual with -e switch description.
  707. 2003-02-26 Pavel Roskin <proski@gnu.org>
  708. * syntax/syntax.syntax: Highlight "define".
  709. 2003-02-23 Marco Ciampa <ciampix@libero.it>
  710. * doc/it/mc.1.in: updated manual with some stylistic changes.
  711. 2003-02-23 Dmitry Alexeyev <dmi_a@qnx.org.ru>
  712. * lib/mc.ext.in: Add entry for QNX Neutrino packages.
  713. 2003-02-22 Pavel Tsekov <ptsekov@gmx.net>
  714. * acinclude.m4 [AC_G_MODULE_SUPPORTED]: New macro.
  715. * configure.in: Test for gmodule. Don't link mc with libX11 if
  716. gmodule is supported.
  717. 2003-02-22 Pavel Roskin <proski@gnu.org>
  718. * configure.in: Add --with-glib12 option to configure to force
  719. using glib 1.2.x.
  720. 2003-02-21 Andrew V. Samoilov <sav@bcs.zp.ua>
  721. * doc/ru/mc.1.in (Layout): Translate 'Xterm window title' option.
  722. (Extension File Edit): Translate include feature.
  723. 2003-02-20 Pavel Roskin <proski@gnu.org>
  724. * configure.in: Move list of all translations ...
  725. * po/LINGUAS: ... here.
  726. 2003-02-18 Pavel Roskin <proski@gnu.org>
  727. * syntax/c.syntax: Highlight C++ comments in preprocessor
  728. directives.
  729. Reported by Oswald Buddenhagen <ossi@kde.org>
  730. 2003-02-13 Marco Ciampa <ciampix@libero.it>
  731. * doc/it/mc.1.in: updated manual following it.po changes.
  732. 2003-02-05 Pavel Roskin <proski@gnu.org>
  733. * configure.in: Bump version to 4.6.0a.
  734. * configure.in: Version 4.6.0 released.
  735. 2003-02-04 Arpi <arpi@mplayerhq.hu>
  736. * syntax/Syntax: Match *.syntax before other files to fix
  737. highlighting of makefile.syntax.
  738. 2003-02-04 Pavel Roskin <proski@gnu.org>
  739. * syntax/c.syntax: Revert highlighting trailing whitespaces.
  740. 2003-02-03 Andrew V. Samoilov <sav@bcs.zp.ua>
  741. * autogen.sh: Fix unportable "+" sed regexp in gettext_ver
  742. calculation. Reported by vlad@geekizoid.com.
  743. 2003-01-31 Pavel Roskin <proski@gnu.org>
  744. * syntax/nroff.syntax: Make colors more compatible with the
  745. highlighting used in the internal viewer - yellow for bold and
  746. brightred for italic.
  747. 2003-01-31 Andrew V. Samoilov <sav@bcs.zp.ua>
  748. * syntax/c.syntax: Highlight trailing whitespace(s).
  749. 2003-01-30 Pavel Tsekov <ptsekov@gmx.net>
  750. * acinclude.m4 (MC_WITH_NCURSES): Check -lcurses if -lncurses
  751. doesn't work. Useful on OpenBSD 3.2.
  752. 2003-01-29 Pavel Roskin <proski@gnu.org>
  753. * lib/mc.ext.in: Fix missing semicolon that affected viewing RPM
  754. packages.
  755. 2003-01-24 Pavel Roskin <proski@gnu.org>
  756. * configure.in: Add -lposix on A/UX before all tests.
  757. 2003-01-23 Pavel Roskin <proski@gnu.org>
  758. * acinclude.m4 (MC_EXTFS_CHECKS): Fix redirection to /dev/null.
  759. 2003-01-22 Pavel Roskin <proski@gnu.org>
  760. * configure.in: Bump version to 4.6.0-pre3a.
  761. * configure.in: Version 4.6.0-pre3 released.
  762. * acinclude.m4 (_MC_WITH_XSLANG): Drop support for old S-Lang
  763. versions that required the native curses library on some OSes.
  764. 2003-01-19 Adam Byrtek <alpha@debian.org>
  765. * doc/mcview.1.in: New file.
  766. * configure.in: Treat it like doc/mcedit.1.in.
  767. * doc/Makefile.am: Likewise.
  768. 2003-01-17 Adam Byrtek <alpha@debian.org>
  769. * doc/mc.1.in (Layout): Document 'Xterm window title' option.
  770. 2003-01-16 David Martin <dmartina@excite.com>
  771. * doc/mc.1.in: Add EXTernal virtual File System node (extfs).
  772. 2003-01-16 David Martin <dmartina@excite.com>
  773. * doc/mc.1.in: Set man page header and footer.
  774. * doc/es/mc.1.in: Likewise.
  775. * doc/hu/mc.1.in: Likewise.
  776. * doc/it/mc.1.in: Likewise.
  777. * doc/pl/mc.1.in: Likewise.
  778. * doc/ru/mc.1.in: Likewise.
  779. 2003-01-12 David Martin <dmartina@excite.com>
  780. * po/es.po: Update. Rewrite localized names for some menu entries.
  781. * doc/es/mc.1.in: Likewise.
  782. * lib/mc.hint.es: Likewise.
  783. 2002-12-27 David Martin <dmartina@excite.com>
  784. * doc/pl/xnc.hlp: Update GPL (change FSF address and move 19xx
  785. entries to "year").
  786. 2002-12-26 Pavel Roskin <proski@gnu.org>
  787. * configure.in: Release 4.6.0-pre2, bump version to 4.6.0-pre2a.
  788. * configure.in: Fix non-portable operator. Bump version to
  789. 4.6.0-pre2.
  790. 2002-12-24 Pavel Roskin <proski@gnu.org>
  791. * lib/mc.ext.in: Use --nosignature with rpm to avoid a message
  792. in the viewer about unsigned packages.
  793. * acinclude.m4 (MC_WITH_SLANG): Don't add -lslang to MCLIBS if
  794. the system S-Lang is rejected.
  795. * lib/mc.ext.in: Play *.mov by mplayer.
  796. 2002-12-23 Pavel Roskin <proski@gnu.org>
  797. * configure.in: Enable X11 support by default, use --without-x
  798. to disable.
  799. 2002-12-19 Pavel Roskin <proski@gnu.org>
  800. * syntax/perl.syntax: Add separate context for function
  801. declarations and definitions, highlight prototypes.
  802. 2002-12-11 Pavel Roskin <proski@gnu.org>
  803. * acinclude.m4 (MC_EXTFS_CHECKS): Add check for Perl.
  804. * configure.in: Substitute Perl location in all extfs scripts
  805. written in Perl.
  806. 2002-12-11 David Martin <dmartina@excite.com>
  807. * doc/xnc.hlp: Update GPL (change FSF address
  808. and move 19xx entries to "year").
  809. * doc/es/xnc.hlp: Likewise.
  810. * doc/hu/xnc.hlp: Likewise.
  811. * doc/it/xnc.hlp: Likewise.
  812. * doc/ru/xnc.hlp: Likewise.
  813. 2002-12-09 Pavel Roskin <proski@gnu.org>
  814. * lib/mc.ext.in: Remove ftplist. Add patchfs.
  815. 2002-11-29 Andrew V. Samoilov <sav@bcs.zp.ua>
  816. * autogen.sh: Use $srcdir/configure.mc instead of
  817. $srcdir/configure if first one exists and is executable.
  818. 2002-11-28 Pavel Roskin <proski@gnu.org>
  819. * configure.in: Determine which help translations user wants to
  820. install, based on USE_NLS, LINGUAS and ALL_LINGUAS.
  821. * doc/Makefile.am: Set SUBDIR to the list of the requested
  822. translations.
  823. * acinclude.m4 (MC_EXTFS_CHECKS): New macro.
  824. (MC_WITH_VFS): Call MC_EXTFS_CHECKS.
  825. * configure.in: Generate vfs/extfs/uzip.
  826. * vfs/extfs/uzip: Move to vfs/extfs/uzip.in.
  827. * vfs/extfs/Makefile.am: Corresponding adjustments.
  828. 2002-11-26 Pavel Roskin <proski@gnu.org>
  829. * syntax/sql.syntax: Add highlighting for dot and backticks.
  830. 2002-11-16 Pavel Roskin <proski@gnu.org>
  831. * configure.in: Move check for pwdauth() to MC_MCSERVER_CHECKS.
  832. * acinclude.m4 (MC_MCSERVER_CHECKS): If using crypt(), check for
  833. shadow password support.
  834. * acinclude.m4 (MC_MCSERVER_CHECKS): Don't limit PAM check to
  835. Linux. Use AC_SEARCH_LIBS to find crypt(). Consolidate mcserv
  836. libraries into MCSERVLIBS.
  837. * configure.in: Move all mcserv related checks ...
  838. * acinclude.m4 (MC_MCSERVER_CHECKS): ... here.
  839. 2002-11-15 Pavel Roskin <proski@gnu.org>
  840. * configure.in: Fully enable glib2. Update the documentation.
  841. 2002-11-14 Andrew V. Samoilov <sav@bcs.zp.ua>
  842. * lib/mc.menu: Don't use --repetitive-best option with bzip2 -
  843. it is redundant in versions 0.9.5 and above.
  844. 2002-11-10 Pavel Roskin <proski@gnu.org>
  845. * configure.in: Check for uintptr_t. Needed to compile regex.c
  846. on MacOS X. Reported by Wim Rijnders <wimrijnders@home.nl>
  847. 2002-11-07 Andrew V. Samoilov <sav@bcs.zp.ua>
  848. * syntax/ada95.syntax: Highlight "then" and "else".
  849. From Victor Porton <porton@ex-code.com>.
  850. Highlight "exit".
  851. 2002-11-06 Pavel Roskin <proski@gnu.org>
  852. * lib/edit.indent.rc: Remove all options for indent and add a
  853. comment explaining where those options should be.
  854. 2002-11-05 Pavel Roskin <proski@gnu.org>
  855. * lib/mc-wrapper.csh.in: Remove /bin/csh at the beginning - this
  856. script is not meant to be executed by the kernel. This also
  857. eliminates dependency of the RPM package on csh.
  858. * lib/mc-wrapper.sh.in: Remove /bin/sh at the beginning.
  859. 2002-11-01 Pavel Roskin <proski@gnu.org>
  860. * configure.in: Don't substitute mc.sh and mc.csh - it's now
  861. done ...
  862. * lib/Makefile.am: ... here. Add wrappers for mc to avoid
  863. defining complex shell scripts in functions and aliases.
  864. * lib/mc-wrapper.csh.in: New file - template for the script
  865. that runs mc and changes directory in csh.
  866. * lib/mc-wrapper.sh.in: New file - template for the script
  867. that runs mc and changes directory in sh.
  868. 2002-11-01 Andrew V. Samoilov <sav@bcs.zp.ua>
  869. * doc/mc.1.in (Keys): Document S-<chr>.
  870. * doc/ru/mc.1.in: Likewise.
  871. 2002-10-31 Pavel Roskin <proski@gnu.org>
  872. * syntax/diff.syntax: Revert highlighting for trailing spaces
  873. on the added lines - it extends the context to the next line.
  874. * lib/mc.csh.in: Add quoting and check for missing file.
  875. * lib/mc.csh.in: Update to use the new -P option. This script
  876. has absolutely no protection against special symbols in
  877. directory names and lacks TMPDIR support.
  878. * lib/mc.sh.in: Update to use the new -P option.
  879. * configure.in: Displaying the install paths is too problematic
  880. to implement properly. Remove this code.
  881. 2002-10-29 Pavel Roskin <proski@gnu.org>
  882. * lib/mc.ext.in: Rename TROFFASCII to MAN_FLAGS.
  883. * configure.in: Likewise. Add "-c" (disable ANSI color) to
  884. MAN_FLAGS if supported.
  885. * acinclude.m4 (MC_WITH_SLANG): Reject S-Lang with UTF-8
  886. support, unless external S-Lang was explicitly requested.
  887. 2002-10-24 Pavel Roskin <proski@gnu.org>
  888. * lib/mc.ext.in: Don't use links to view html - the "-dump"
  889. option has been removed in the recent versions.
  890. From David Martin <dmartina@excite.com>
  891. 2002-10-21 Pavel Roskin <proski@gnu.org>
  892. * acinclude.m4 (MC_WITH_VFS): cpiofs and extfs were never added
  893. to the final configuration message.
  894. 2002-10-17 Pavel Roskin <proski@gnu.org>
  895. * doc/hu/Makefile.am: Generate Hungarian help file from the
  896. manual, just like other languages.
  897. * doc/hu/mc.1.in: New file, converted from the help file.
  898. * doc/hu/xnc.hlp: Likewise.
  899. * configure.in: Adjust for the above.
  900. * doc/mc.1.in: Add node names. Remove redundant paragraph
  901. breaks at the start and the end of the sections. Mention
  902. "stalelink" as color keyword.
  903. 2002-10-14 Pavel Roskin <proski@gnu.org>
  904. * lib/mc.ext.in: Don't use "-dump" option with "links".
  905. From David Martin <dmartina@excite.com>
  906. 2002-10-13 Pavel Roskin <proski@gnu.org>
  907. * lib/mc.hint*: Remove all references to "-1" - hints file is no
  908. substitute to unambiguous GUI.
  909. From Christian Laubscher <christian.laubscher@tiscalinet.ch>
  910. 2002-10-12 Pavel Roskin <proski@gnu.org>
  911. * lib/mc.ext.in: Redirect stderr from "links" to suppress a
  912. warning if it's not found.
  913. 2002-10-09 Andrew V. Samoilov <sav@bcs.zp.ua>
  914. * doc/mc.1.in (SMB File System): Username is allowed in
  915. URLs now (/#smb:[user@]machine).
  916. * doc/ru/mc.1.in: Likewise.
  917. 2002-10-08 Pavel Roskin <proski@gnu.org>
  918. * configure.in: Rename RH_VERSION to RPM_VERSION - not every
  919. rpm-based system is Red Hat. Replace all dashes, not just one.
  920. * acinclude.m4 (MC_WITH_MCSLANG): Check for terminfo and use
  921. termcap if terminfo is missing in the known locations.
  922. * configure.in: Remove --with-termcap processing, it is now in
  923. acinclude.m4.
  924. 2002-10-02 Pavel Roskin <proski@gnu.org>
  925. * syntax/syntax.syntax: Fix highlighting for "gray".
  926. 2002-10-01 Pavel Roskin <proski@gnu.org>
  927. * configure.in: Expand $bindir and $datadir to show at the end.
  928. Reported by Nerijus Baliunas <nerijus@users.sourceforge.net>
  929. 2002-09-29 Pavel Roskin <proski@gnu.org>
  930. * configure.in: Remove the argument from --with-gpm-mouse. The
  931. directories for include files and libraries can be specified
  932. using LDFLAGS and CPPFLAGS, as documented in the output of
  933. "configure --help".
  934. * configure.in: Complete rewrite of the screen library support.
  935. Add new option --with-screen instead on --with-slang,
  936. --with-included-slang and --with-ncurses. Only allow
  937. --with-termcap is using the included S-Lang library.
  938. * aclocal.m4: Corresponding changes.
  939. * syntax/mail.syntax: Replace "wholechars right" and "wholechars
  940. left" with single "wholechars".
  941. * syntax/nroff.syntax: Likewise.
  942. * syntax/sh.syntax: Likewise.
  943. * syntax/tcl.syntax: Likewise.
  944. * syntax/*.syntax: Remove numeric Cooledit colors. It's
  945. unreasonable to require them to be correct. On the other hand,
  946. Cooledit can easily be changed to accept named color names.
  947. * syntax/syntax.syntax: Don't require Cooledit colors for
  948. highlighting color names. Remove Cooledit colors.
  949. * syntax/m4.syntax: Don't use yellow color on parentheses, since
  950. it interferes with parentheses highlighting. Remove list of
  951. supported Autoconf macros.
  952. 2002-09-26 Pavel Roskin <proski@gnu.org>
  953. * syntax/syntax.syntax: Remove highlighting for numbers - it's
  954. for Cooledit only.
  955. * syntax/c.syntax: Require at least one space at the beginning
  956. of indented cpp directives. Use brightmagenta for them.
  957. * syntax/syntax.syntax: Don't start keywords with "\[" - it
  958. doesn't work. Use "\[\]" at the end of keywords to suppress
  959. their special meaning.
  960. 2002-09-22 Pavel Roskin <proski@gnu.org>
  961. * doc/Makefile.am: Remove width from the man2hlp command line.
  962. The same for translations.
  963. * configure.in: Remove support for HSC proxy - it's obsolete.
  964. Remove all references to HSC proxy everywhere.
  965. 2002-09-21 Pavel Roskin <proski@gnu.org>
  966. * configure.in: Bump version to 4.6.0-pre1b.
  967. * doc/hu/mc.hlp.hu: Rename to ...
  968. * doc/hu/mc.hlp.hu.in: ... this. Adjust paths.
  969. * configure.in: Substitute doc/hu/mc.hlp.hu.
  970. * doc/hu/Makefile.am: Don't distribute mc.hlp.hu.
  971. * doc/mc.1.in: Update path to the data files. Rename MC_LIBDIR
  972. to MC_DATADIR. Make the same changes in the translations.
  973. * */Makefile.am: Replace mclibdir with pkgdatadir to use "share"
  974. directory for architecture-independent files.
  975. 2002-09-19 Pavel Roskin <proski@gnu.org>
  976. * syntax/m4.syntax: New file.
  977. * syntax/Syntax: Add m4.syntax.
  978. * syntax/Makefile.am: Likewise.
  979. From Vlad Romanenko <VladRomanenko@ukr.net>
  980. * syntax/sql.syntax: Only recognize non-standard MySQL comments
  981. at the beginning of line.
  982. 2002-09-19 Andrew V. Samoilov <sav@bcs.zp.ua>
  983. * syntax/syntax.syntax: Add "linestart" for "context",
  984. "context default" and "context exclusive" keywords.
  985. * syntax/c.syntax: Fix "%s" highlighting for "%-19s"
  986. and "%5.5s" formats.
  987. 2002-09-18 Pavel Roskin <proski@gnu.org>
  988. * syntax/Syntax: Remove gobledy_gook at the beginning. Move
  989. rules for syntax files ...
  990. * syntax/syntax.syntax: ... here. Add "linestart" for "file"
  991. and "include" keywords.
  992. * syntax/Makefile.am: Add syntax.syntax.
  993. 2002-09-17 Vlad Romanenko <VladRomanenko@ukr.net>
  994. * syntax/js.syntax: Advanced number highlighting.
  995. 2002-09-17 Pavel Roskin <proski@gnu.org>
  996. * syntax/c.syntax: Highlight "?" by the same color as ":".
  997. * syntax/java.syntax: Likewise.
  998. * syntax/swig.syntax: Likewise.
  999. * syntax/python.syntax: Remove duplicate keyword ":".
  1000. * Makefile.am: Add m4 to SUBDIRS. Set ACLOCAL_AMFLAGS so that
  1001. m4 directory is used by aclocal.
  1002. * m4/Makefile.am: New file.
  1003. * configure.in: Substitute m4/Makefile.
  1004. * autogen.sh: Don't copy any macro files, use m4 directory.
  1005. * syntax/Makefile.am: Add js.syntax.
  1006. * configure.in: Add support for glib 2.x. Right now, it has to
  1007. be explicitly enabled by `--with-glib2'.
  1008. From Ali Akcaagac <ali.akcaagac@stud.fh-wilhelmshaven.de>
  1009. 2002-09-16 Pavel Roskin <proski@gnu.org>
  1010. * syntax/js.syntax: New file.
  1011. * syntax/Syntax: Add js.syntax.
  1012. From Vlad Romanenko <VladRomanenko@ukr.net>
  1013. 2002-09-16 Andrew V. Samoilov <sav@bcs.zp.ua>
  1014. * doc/pl/Makefile.am: Use $(top_srcdir)/doc/xnc.hlp instead
  1015. of local xnc.hlp
  1016. * doc/pl/xnc.hlp: Removed.
  1017. 2002-09-13 Pavel Roskin <proski@gnu.org>
  1018. * configure.in: Add AM_GNU_GETTEXT_VERSION for autopoint.
  1019. Remove "potfiles" command.
  1020. * acinclude.m4: Add empty AM_GNU_GETTEXT_VERSION definition for
  1021. compatibility with gettext 0.10.x.
  1022. * autogen.sh: Use autopoint for gettext 0.11.5 and above. Don't
  1023. allow gettext versions from 0.10.40 to 0.11.5 (not inclusive).
  1024. * po/Makevars: New file for compatibility with gettext 0.11.x.
  1025. * configure.in: Remove "Debugger code" message.
  1026. * acinclude.m4: Replace undelfs_o with use_undelfs.
  1027. * configure.in: Likewise. Don't substitute it.
  1028. * configure.in: Simplify processing of without-edit. Replace
  1029. several variables with use_edit.
  1030. * acinclude.m4: Remove AC_WITH_EDIT.
  1031. * acinclude.m4: Replace smbfs and SAMBAFILES variables with
  1032. use_smbfs.
  1033. * configure.in: Likewise.
  1034. * INSTALL: Document --with-samba.
  1035. * configure.in: Roll --enable-mcserv-install into ...
  1036. * acinclude.m4: ... --with-mcfs. Adjust makefiles.
  1037. * INSTALL: Document --with-mcfs.
  1038. 2002-09-12 Pavel Roskin <proski@gnu.org>
  1039. * configure.in: Don't check if crypt() prototype is needed to
  1040. avoid warnings - the whole code is not worth avoiding one
  1041. legitimate warning.
  1042. * acinclude.m4: Remove AC_TRY_WARNINGS.
  1043. * configure.in: ALL_LINGUAS should be defined unconditionally.
  1044. * acinclude.m4: Clarify some help texts, add defaults in square
  1045. brackets, use more consistent spacing.
  1046. * configure.in: Likewise.
  1047. * lib/mc.menu: Don't call tarballs "releases". Don't
  1048. dereference symlinks.
  1049. 2002-09-10 Pavel Roskin <proski@gnu.org>
  1050. Globally replace OS2_NT and _OS_NT with WIN32_NATIVE.
  1051. 2002-09-07 Pavel Roskin <proski@gnu.org>
  1052. * configure.in: Eliminate --with-terminfo option, which was
  1053. essentially equivalent to --with-included-slang and didn't force
  1054. anything.
  1055. * acinclude.m4 (AC_USE_TERMINFO): Remove.
  1056. * INSTALL: Adjust to match.
  1057. * FAQ: Likewise.
  1058. 2002-09-05 Pavel Roskin <proski@gnu.org>
  1059. * configure.in: Fix USE_VFS_NET conditional. Don't substitute
  1060. NETFILES - it's unused.
  1061. * configure.in: Check for arpa/inet.h.
  1062. * mcfn_install: Remove. Also remove all references to it.
  1063. * INSTALL.FAST: Update information about ncurses.
  1064. From Dmitry Semyonov <Dmitry.Semyonov@oktet.ru>
  1065. * acinclude.m4 (AC_USE_TERMCAP): Add -ltermcap to MCLIBS, not
  1066. LIBS.
  1067. * configure.in: Eliminate MCCFLAGS, use CPPFLAGS instead. Add
  1068. "-L" options to LDFLAGS, not to LIBS or MCLIBS - this should fix
  1069. test for ncurses in non-standard directories.
  1070. 2002-09-04 Pavel Roskin <proski@gnu.org>
  1071. * lib/mc.ext.in: Remove edit rules for compressed files that
  1072. were compressing even unchanged files - the editor itself can
  1073. handle compression better.
  1074. 2002-09-03 Pavel Roskin <proski@gnu.org>
  1075. * acinclude.m4: Remove Termnet support, it's too old and obscure
  1076. to be supported properly.
  1077. 2002-08-27 Pavel Roskin <proski@gnu.org>
  1078. * lib/mc.ext.in: Add new OpenOffice.org formats. Always use
  1079. OpenOffice.org, not StarOffice. Add more video formats.
  1080. * lib/mc.ext.in: Use gzip instead of gunzip and compress. Avoid
  1081. unnecessary pipeline. Redirect stderr from cpio, because it can
  1082. be non-empty even for successful operations.
  1083. 2002-08-26 Pavel Roskin <proski@gnu.org>
  1084. * syntax/spec.syntax: New file.
  1085. * syntax/Syntax: Add spec.syntax.
  1086. * syntax/Makefile.am: Likewise.
  1087. From PLD Linux Distribution with minor changes.
  1088. 2002-08-25 Pavel Roskin <proski@gnu.org>
  1089. * lib/mcserv.init: Update from Red Hat package.
  1090. * lib/mcserv.pamd: Likewise.
  1091. * configure.in: Fix interpretation of the iconv test result.
  1092. Reported by Pavel Shirshov <me@pavelsh.pp.ru>
  1093. * mc.sh.in: Only bash needs the mc() function to be exported.
  1094. * doc/pl/mc.1.in: Add node names and options. Use @prefix@
  1095. instead of /usr where appropriate.
  1096. * doc/Makefile.am: Enable generation of the help file.
  1097. * doc/pl/*: Add Polish translation.
  1098. * doc/Makefile.am: Adjust for the above.
  1099. * configure.in: Likewise.
  1100. 2002-08-24 Pavel Roskin <proski@gnu.org>
  1101. * lib/edit.indent.rc: Use tidy to format HTML.
  1102. From David Martin <dmartina@excite.com>
  1103. * lib/cedit.menu: Remove all references to the error file.
  1104. * lib/edit.indent.rc: Likewise.
  1105. * lib/edit.spell.rc: Likewise.
  1106. 2002-08-23 Pavel Roskin <proski@gnu.org>
  1107. * configure.in: Make GLIB_LIBS a separate AC_SUBST'ed variable,
  1108. use only for the programs that need it (mc and mcserv).
  1109. * configure.in: Fix help text for gpm and ncurses. Properly
  1110. handle --without-ncurses.
  1111. Reported by Moritz Barsnick <moritz@barsnick.net>
  1112. * configure.in: Work around a bug in Autoconf-2.53 that prevents
  1113. splitting of user-specified path in AC_PATH_PROGS.
  1114. * configure.in: Move glib test earlier, as it tends to fail for
  1115. many users. Make GLIB_CONFIG a precious variable. Check for
  1116. glib12-config - that's how it's called on FreeBSD.
  1117. Reported by Pavel Shirshov <me@pavelsh.pp.ru>
  1118. 2002-08-22 Pavel Roskin <proski@gnu.org>
  1119. * configure.in: Remove old-style Linux-only support for shadow
  1120. passwords.
  1121. 2002-08-21 Pavel Roskin <proski@gnu.org>
  1122. * configure.in: Restore AM_INIT_AUTOMAKE with two arguments for
  1123. now, otherwise Automake 1.5 breaks. Remove version number from
  1124. AC_INIT, the version from AM_INIT_AUTOMAKE takes preference.
  1125. Substitute RH_VERSION, which is VERSION without dashes, needed
  1126. for RedHat specfile.
  1127. * configure.in: Bump version to 4.6.0-pre1a. Don't use
  1128. arguments in AM_INIT_AUTOMAKE to avoid defining the version in
  1129. two places.
  1130. Release mc-4.6.0-pre1.
  1131. * configure.in: Bump version to 4.6.0-pre1.
  1132. * po/*.po: Regenerate.
  1133. 2002-08-20 David Martin <dmartina@excite.com>
  1134. * doc/es/mc.1.in: Minor changes.
  1135. * doc/es/xnc.hlp: Likewise.
  1136. 2002-08-20 Andrew V. Samoilov <sav@bcs.zp.ua>
  1137. * mc.spec.in: Add /usr/lib/mc/mc.charsets and
  1138. %{_mandir}/*/man1/*.
  1139. 2002-08-20 Pavel Roskin <proski@gnu.org>
  1140. * doc/it/mc.1.in (Controlling Midnight Commander): Remove.
  1141. 2002-08-19 Pavel Roskin <proski@gnu.org>
  1142. * configure.in: Add Italian documentation.
  1143. * doc/Makefile.am: Likewise.
  1144. * acinclude.m4 (MC_WITH_VFS): Disable mcfs by default.
  1145. * configure.in: Enable subshell support on all operating systems
  1146. by default. Old issues are most likely solved by now.
  1147. 2002-08-18 Pavel Roskin <proski@gnu.org>
  1148. * lib/mc.ext.in: Try links before lynx. Force full path when
  1149. invoking X11 browsers - it breaks VFS, but VFS support in mc.ext
  1150. is already broken if the program starts in background. Add a
  1151. comment discouraging taking this code as example.
  1152. * doc/mc.1.in (Controlling Midnight Commander): Remove, it's
  1153. obsolete.
  1154. * doc/es/mc.1.in: Likewise.
  1155. * doc/ru/mc.1.in: Likewise.
  1156. * doc/hu/mc.hlp.hu: Likewise.
  1157. * lib/mc.menu: Remove all references to $MC_CONTROL_FILE, which
  1158. was unsafe by design and is no longer supported. Use %t instead
  1159. of %u to preserve tags in case of failure.
  1160. * vfs/extfs/ftplist.in: Remove support for running commands, it
  1161. makes no sense.
  1162. 2002-08-16 Pavel Roskin <proski@gnu.org>
  1163. * lib/mc.global: Remove, it duplicates the role of mc.lib.
  1164. * lib/mc.lib: Add contents of mc.global.
  1165. * lib/Makefile.am: Remove all references to mc.global.
  1166. * syntax/sh.syntax: Fix highlighting of "<<-EOF".
  1167. Reported by Andrew V. Samoilov <sav@bcs.zp.ua>
  1168. 2002-08-16 Andrew V. Samoilov <sav@bcs.zp.ua>
  1169. * syntax/sh.syntax: Highlight alias, bg, eval, exec, export, fg,
  1170. set, umask and unset like other builtin commands.
  1171. 2002-08-15 Pavel Roskin <proski@gnu.org>
  1172. * configure.in: Remove check for SIGTSTP, it's not needed for
  1173. the subshell support.
  1174. * acinclude.m4 (AC_SHORT_D_NAME_LEN): Remove, this test is now
  1175. done at runtime.
  1176. * configure.in: Don't use AC_SHORT_D_NAME_LEN.
  1177. 2002-08-14 Andrew V. Samoilov <sav@bcs.zp.ua>
  1178. * doc/ru/mc.1.in: Remove reference to README.edit.
  1179. * doc/mc.1.in: Likewise.
  1180. * doc/hu/mc.hlp.hu: Likewise. Remove /var/tmp/mc-4.5.46-buildroot
  1181. everywhere.
  1182. 2002-08-14 Pavel Roskin <proski@gnu.org>
  1183. * doc/mc.1.in: Consistently use "native" ftp syntax.
  1184. * doc/ru/mc.1.in: Likewise.
  1185. * doc/es/mc.1.in: Update from David Martin <dmartina@excite.com>
  1186. * doc/es/xnc.hlp: Likewise.
  1187. * lib/mc.hlp.hu: Move ...
  1188. * doc/hu/mc.hlp.hu: ... here. Make all necessary adjustments.
  1189. 2002-08-09 Pavel Roskin <proski@gnu.org>
  1190. * lib/mc.ext.in: Remove all unrecognized actions (e.g. Extract)
  1191. and entries that are obsolete or make no sense.
  1192. * doc/xnc.hlp: Add translatable titles for topics "QueryBox" and
  1193. "How to use help".
  1194. * doc/Makefile.am: Don't distribute help file. Generate it in
  1195. the build directory.
  1196. * doc/es/Makefile.am: Likewise.
  1197. * doc/ru/Makefile.am: Likewise.
  1198. * lib/xnc.hlp: Move ...
  1199. * doc/xnc.hlp: ... here.
  1200. * doc/Makefile.am: Necessary adjustments.
  1201. * lib/Makefile.am: Likewise.
  1202. * src/Makefile.am: Likewise.
  1203. * configure.in: Add Spanish documentation.
  1204. * doc/Makefile.am: Likewise.
  1205. * doc/es: Spanish documentation.
  1206. From David Martin <dmartina@excite.com>
  1207. 2002-08-08 Pavel Roskin <proski@gnu.org>
  1208. * lib/mc.lib: Add f11-f20 keys for Konsole.
  1209. 2002-08-06 Pavel Roskin <proski@gnu.org>
  1210. * syntax/lisp.syntax: New file.
  1211. * syntax/Syntax: Add lisp.syntax.
  1212. * syntax/Makefile.am: Likewise.
  1213. From Mykolas Juraitis <juramyko@soften.ktu.lt> with minor
  1214. changes.
  1215. 2002-08-04 Pavel Roskin <proski@gnu.org>
  1216. * configure.in: Check for SIGTSTP and SIGCONT signals. Disable
  1217. subshell if this test fails.
  1218. 2002-08-03 Pavel Roskin <proski@gnu.org>
  1219. * syntax/mail.syntax: Colors changed to be more readable.
  1220. * syntax/html.syntax: Don't require character entities to be
  1221. whole, but check their validity.
  1222. 2002-08-02 Pavel Roskin <proski@gnu.org>
  1223. * configure.in: No longer need to define REGEX_MALLOC.
  1224. 2002-08-01 Pavel Roskin <proski@gnu.org>
  1225. * configure.in: Remove support for MAD and Electric Fence.
  1226. Developers should use modern memory debuggers (e.g. Valgrind).
  1227. * INSTALL: Remove references to MAD.
  1228. 2002-07-31 Pavel Roskin <proski@gnu.org>
  1229. * syntax/html.syntax: Remove recognition for any individual
  1230. words - there are too many of them, we cannot keep up.
  1231. 2002-07-30 Pavel Roskin <proski@gnu.org>
  1232. * doc/ru/Makefile.am: Use man2hlp directly.
  1233. 2002-07-28 Pavel Roskin <proski@gnu.org>
  1234. * syntax/changelog.syntax: Highlight "*" only after tab. This
  1235. requires fixed syntax highlighting.
  1236. * lib/mc.ext.in: Open *.doc and *.rtf files with abiword by
  1237. default. Open *.xls with gnumeric. Use mplayer for most video
  1238. formats.
  1239. * syntax/nroff.syntax: Require most keywords to be whole.
  1240. 2002-07-21 Pavel Roskin <proski@gnu.org>
  1241. * syntax/fortran.syntax: Fix highlighting of "*" at the
  1242. beginning of line. Recognize " +" as continuation. Move
  1243. all "linestart" keywords earlier to avoid more conflicts.
  1244. 2002-07-18 Pavel Roskin <proski@gnu.org>
  1245. * syntax/unknown.syntax: Don't highlight anything by default.
  1246. * syntax/changelog.syntax: Highlight functions without
  1247. filenames.
  1248. * syntax/Syntax: Match *ChangeLog*.
  1249. * syntax/c.syntax: Reenable highlighting for "/" and preserve
  1250. highlighting for "//" comments by using exclusive context.
  1251. * syntax/java.syntax: Likewise.
  1252. * syntax/swig.syntax: Likewise.
  1253. * syntax/slang.syntax: Reenable highlighting for "/".
  1254. * syntax/sql.syntax: Enable highlighting for "/" and "-".
  1255. * syntax/sql.syntax: New file.
  1256. * syntax/Syntax: Add sql.syntax.
  1257. * syntax/Makefile.am: Likewise.
  1258. From Walery Studennikov <despair@sama.ru> with minor changes.
  1259. 2002-07-16 Pavel Roskin <proski@gnu.org>
  1260. * lib/mc.ext.in: Remove handling of executables. They should
  1261. be handled internally for "pause after run" to work.
  1262. * syntax/Syntax: Associate *.itcl with tcl.syntax.
  1263. * syntax/tcl.syntax: Add itcl keywords, other improvements.
  1264. 2002-07-15 Pavel Roskin <proski@gnu.org>
  1265. * configure.in: Don't check for strcasecmp(), strncasecmp() and
  1266. strdup() - test results are not used except in gettext, which
  1267. provides its own tests.
  1268. * configure.in: When checking for ncurses, check for
  1269. has_colors(), not curses_version() - the later is missing in
  1270. older version of ncurses.
  1271. 2002-07-13 Pavel Roskin <proski@gnu.org>
  1272. * acinclude.m4 (AC_EXT2_UNDEL): Add ext2fs libraries to MC_LIBS,
  1273. not to LIBS.
  1274. * configure.in: Fix breakage in ncurses headers check from the
  1275. previous commit. Simplify other instances of AC_CHECK_HEADERS.
  1276. Define REGEX_MALLOC here.
  1277. * acinclude.m4 (AC_NCURSES): Remove.
  1278. * configure.in: Use AC_CHECK_HEADERS to find ncurses headers and
  1279. AC_CHECK_LIB to check existence of ncurses library. Eliminate
  1280. variables force_ncurses and search_ncurses.
  1281. 2002-07-10 Pavel Roskin <proski@gnu.org>
  1282. * configure.in: Remove --with-netrc, it is now default and can
  1283. be disabled at the runtime.
  1284. * syntax/tcl.syntax: New file.
  1285. * syntax/Syntax: Add tcl.syntax.
  1286. * syntax/Makefile.am: Likewise.
  1287. * syntax/java.syntax: Don't treat #define separately from other
  1288. preprocessor directives.
  1289. * syntax/slang.syntax: Likewise.
  1290. * syntax/swig.syntax: Likewise.
  1291. 2002-07-09 Pavel Roskin <proski@gnu.org>
  1292. * syntax/c.syntax: Don't treat #define separately from other
  1293. preprocessor directives.
  1294. 2002-07-08 Pavel Roskin <proski@gnu.org>
  1295. * syntax/perl.syntax: Highlight text after __END__ as a comment.
  1296. * syntax/po.syntax: Avoid gray color, which is hard to see.
  1297. 2002-07-05 Pavel Roskin <proski@gnu.org>
  1298. * syntax/dos.syntax: Add more commands.
  1299. 2002-07-04 Pavel Roskin <proski@gnu.org>
  1300. * AUTHORS: Add Andrew V. Samoilov <kai@cmail.ru>, alphabetically
  1301. sort authors.
  1302. 2002-06-24 Pavel Roskin <proski@gnu.org>
  1303. * syntax/dos.syntax: New file - highlighting for DOS batch
  1304. files. From Petr Kozelka <pkozelka@centrum.cz>
  1305. * syntax/Syntax: Add dos.syntax.
  1306. * syntax/Makefile.am: Likewise.
  1307. 2002-06-04 Max Schedriviy <max@humgat.org>
  1308. * syntax/php.syntax: New version.
  1309. 2002-05-23 Andrew V. Samoilov <kai@cmail.ru>
  1310. * NEWS: Mention ftpfs/fish uploading changes and new configure
  1311. options --with-codepagedir=DIR, --with-configdir=DIR and
  1312. --without-mcfs.
  1313. 2002-05-22 Pavel Roskin <proski@gnu.org>
  1314. * doc/ru/Makefile.am: Fix out-of-tree build.
  1315. 2002-05-14 Pavel Roskin <proski@gnu.org>
  1316. * configure.in: Fix logic for gettext 0.10.x.
  1317. 2002-05-14 Andrew V. Samoilov <kai@cmail.ru>
  1318. * configure.in: Don't generate po/Makefile if
  1319. there is 'top_builddir' in po/Makefile.in.
  1320. * autogen.sh: More fixes for gettext 0.11+.
  1321. 2002-05-08 Andrew V. Samoilov <kai@cmail.ru>
  1322. * configure.in (ALL_LINGUAS): Added "be" for Belarusian.
  1323. 2002-04-21 Pavel Roskin <proski@gnu.org>
  1324. * lib/mc.ext.in: Add support for *.rmi files - latest TiMidity++
  1325. can play them.
  1326. 2002-04-09 Andrew V. Samoilov <kai@cmail.ru>
  1327. * autogen.sh: Fix for gettext 0.11 family (and newer).
  1328. 2002-04-08 Pavel Roskin <proski@gnu.org>
  1329. * autogen.sh: Allow gettext newer than 0.10.39.
  1330. From Björn Eriksson <bjorn@bjornen.nu>
  1331. 2002-04-03 Pavel Roskin <proski@gnu.org>
  1332. * doc/ru/Makefile.am: Distribute mc.ru.hlp and don't remove it
  1333. by "make clean" because not everyone has Perl to rebuild it.
  1334. 2002-03-27 Andrew V. Samoilov <kai@cmail.ru>
  1335. * syntax/Syntax: Replace ^Syntax$ with [Ss]yntax$ and add
  1336. first line regular expression.
  1337. 2002-03-26 Andrew V. Samoilov <kai@cmail.ru>
  1338. * configure.in: Define USE_INCLUDED_REGEX if GNU C library 2.1
  1339. or newer is not used.
  1340. * acinclude.m4: New option --with-mcfs and macro WITH_MCFS.
  1341. * src/Makefile.am: Move mc.hlp.ru processing ...
  1342. * doc/ru/Makefile.am: ... here.
  1343. 2002-03-21 Andrew V. Samoilov <kai@cmail.ru>
  1344. * syntax/Syntax: Match ^Syntax$ for Syntax Highlighting.
  1345. * syntax/c.syntax: Highlight "%p" printf format.
  1346. Allow '*' as width and precision for strings and numbers.
  1347. * doc/mc.1.in: Fix smbfs example. Minor format fixes.
  1348. * doc/ru/mc.1.in: Likewise.
  1349. 2002-03-18 Pavel Roskin <proski@gnu.org>
  1350. * doc/ru/Makefile.am: Distribute xnc.hlp.
  1351. 2002-03-12 Pavel Roskin <proski@gnu.org>
  1352. * doc/Makefile.am: Adjust for doc/ru/Makefile.am.
  1353. 2002-03-12 Andrew V. Samoilov <kai@cmail.ru>
  1354. * configure.in (AC_CONFIG_FILES): Add doc/ru/Makefile.am.
  1355. * doc/ru/Makefile.am: New file.
  1356. 2002-03-08 Pavel Roskin <proski@gnu.org>
  1357. * doc/Makefile.am (EXTRA_DIST): Distribute doc/ru/mc.1.
  1358. 2002-03-04 Andrew V. Samoilov <kai@cmail.ru>
  1359. * configure.in (AC_CONFIG_FILES): Add doc/ru/mc.1.
  1360. 2002-03-01 Andrew V. Samoilov <kai@cmail.ru>
  1361. * doc/mc.1.in: Use nodename `Background jobs' for section
  1362. `Background Jobs' to reflect user visible Command menu option
  1363. and src/cmd.c dialog implementation.
  1364. * doc/ru: New directory for Russian manuals.
  1365. * doc/ru/mc.1.in: Translated mc.1 manual page. Originally
  1366. translated by Victor A. Kostromin for mc 4.5.30. Converted
  1367. from binary mc.hlp.ru, corrected and actualized by me.
  1368. * doc/ru/xnc.hlp: Translated lib/xnc.hlp. See above.
  1369. * doc/ru/.cvsignore: Ignore mc.1.
  1370. 2002-02-27 Andrew V. Samoilov <kai@cmail.ru>
  1371. * doc/mc.1.in (Macro Substitution): Document "%var{ENV-default}".
  1372. (FILES): Document changes in mc behavior. ~/.mc/ini now overrides
  1373. mc.lib settings.
  1374. (Virtual File System): Document SMB File System.
  1375. 2002-02-26 Pavel Roskin <proski@gnu.org>
  1376. * lib/mc.ext.in: Run "file" before "nm" to avoid an error
  1377. message "no symbol found" for unsupported architectures and
  1378. provide more useful information.
  1379. 2002-02-22 Pavel Roskin <proski@gnu.org>
  1380. * README.smbfs: Remove. It contained no useful information
  1381. and the webpage is now dead.
  1382. * Makefile.am: Remove README.smbfs.
  1383. * README: Mention that glib 1.2.x is required.
  1384. 2002-02-21 Andrew V. Samoilov <kai@cmail.ru>
  1385. * lib/edit.indent.rc: Use "#! /bin/sh"
  1386. * lib/edit.spell.rc: Likewise.
  1387. * lib/mcserv.init: Likewise.
  1388. * lib/cedit.menu: Eliminate bashisms.
  1389. Add missed `:' in AUTHOR evaluation.
  1390. Unset LANGUAGE and make LC_ALL empty.
  1391. Use "#! /path/to/program".
  1392. 2002-02-20 Andrew V. Samoilov <kai@cmail.ru>
  1393. * doc/mc.1.in (FILES): Use ~/.mc/bindings instead of
  1394. ~/.mc/ext, ~/.mc/ini instead of ~/.mc.ini.
  1395. Fix tarfs URL syntax example. Minor typo and format fixes.
  1396. 2002-02-14 Andrew V. Samoilov <kai@cmail.ru>
  1397. * doc/mc.1.in (FILES): Use MC_LIBDIR instead of MCHOME.
  1398. Fix location of configuration files.
  1399. 2002-02-05 Pavel Roskin <proski@gnu.org>
  1400. * configure.in: Don't use defunct ncurses_version.
  1401. Reported by Thomas Dickey <dickey@herndon4.his.com>
  1402. Set force_ncurses whenever --with-ncurses is used. If set,
  1403. suppress checks for S-Lang and fail is ncurses is not found.
  1404. * configure.in: Introduce a new variable screen_type that is
  1405. either "slang" or "ncurses" without additional text. Use it
  1406. instead of screen_manager whenever possible. Fix text in
  1407. AC_NCURSES call, use m4 quotes and move shell quotes into the
  1408. macro.
  1409. * acinclude.m4: Likewise.
  1410. 2002-01-28 Petr Kozelka <pkozelka@email.cz>
  1411. * syntax/Syntax: Known Delphi/Kylix source file extensions
  1412. supported (*.dpr, *.inc).
  1413. * syntax/pascal.syntax: Many new (Delphi/Kylix) keywords added.
  1414. Special highlighting for CVS keywords. Understands single-line
  1415. comments (//).
  1416. 2002-01-24 Alexander Shopov <al_shopov@web.bg>
  1417. * configure.in (ALL_LINGUAS): Added "bg"
  1418. 2002-01-21 Pavel Roskin <proski@gnu.org>
  1419. * NEWS: Mention word completion in the editor.
  1420. 2002-01-17 Pavel Roskin <proski@gnu.org>
  1421. * extraconf.h: Remove OS/2 specific code.
  1422. * doc/mc.1.in (Configuration): Clarify some entries.
  1423. 2002-01-11 Andrew V. Samoilov <kai@cmail.ru>
  1424. * acinclude.m4: New options for smbfs:
  1425. --with-configdir=DIR Where the Samba configuration files are (/etc)
  1426. --with-codepagedir=DIR Where the Samba codepage files are
  1427. 2002-01-11 Pavel Roskin <proski@gnu.org>
  1428. * syntax/xml.syntax: New file - highlighting for XML.
  1429. From Petr Kozelka <pkozelka@centrum.cz>
  1430. * syntax/Syntax: Add xml.syntax.
  1431. * syntax/Makefile.am: Likewise.
  1432. 2002-01-04 Pablo Saratxaga <pablo@mandrakesoft.com>
  1433. * configure.in: Added "eu" to ALL_LINGUAS.
  1434. 2002-01-03 Pavel Roskin <proski@gnu.org>
  1435. * lib/mc.menu: Correct quoting.
  1436. Reported by Matthias Urban <murban@cs.uni-magdeburg.de>
  1437. * NEWS: Mention removal of the OS/2 port.
  1438. * README.PC: Remove OS/2 specific parts.
  1439. 2002-01-02 Pavel Roskin <proski@gnu.org>
  1440. * configure.in: Make help about --with-subshell easier to
  1441. understand. Minor alignment fixes for the help.
  1442. * acinclude.m4: Minor alignment fixes for the help.
  1443. 2001-12-31 Pavel Roskin <proski@gnu.org>
  1444. * configure.in: Generate vfs/Makefile from vfs/Makefile.in, not
  1445. from vfs/Make-mc.in.
  1446. 2001-12-27 Duarte Loreto <happyguy_pt@hotmail.com>
  1447. * configure.in: Added Portuguese to ALL_LINGUAS
  1448. 2001-12-21 Pavel Roskin <proski@gnu.org>
  1449. * acinclude.m4 (AC_WITH_SLANG): Don't add ../slang to includes.
  1450. Don't remove slang/slang.h - it's never created.
  1451. * acinclude.m4 (AC_WITH_SLANG): Don't make symlink from
  1452. slang-mc.h to slang.h. Remove fastdepslang variable, it's
  1453. unused.
  1454. 2001-12-01 Wang Jian <lark@linux.net.cn>
  1455. * configure.in(ALL_LINGUAS): Renamed zh_CN.GB2312 to zh_CN.
  1456. 2001-11-29 Pavel Roskin <proski@gnu.org>
  1457. * lib/mc.ext.in: Use "type" to recognize zip and lha archives.
  1458. 2001-11-27 Pavel Roskin <proski@gnu.org>
  1459. * lib/mc.ext.in: When running X programs in background, do it
  1460. from subshell. Otherwise some of them terminate when mc exits.
  1461. Reported by Christian Dysthe <christian@dysthe.net>
  1462. Remove some obsolete and gmc-specific entries. Use StarOffice
  1463. to open files detected as "Microsoft Office Document".
  1464. * lib/mc.lib: Support "Home" and "End" sequences in xterm from
  1465. XFree86 4.1.0.
  1466. 2001-11-16 Andrew V. Samoilov <kai@cmail.ru>
  1467. * doc/mcedit.1.in: Fix help file location.
  1468. 2001-11-14 Pavel Roskin <proski@gnu.org>
  1469. * acinclude.m4 (MC_UNDELFS_CHECKS): Check for ext2_ino_t,
  1470. fallback to ino_t for e2fsprogs version 1.19 and older.
  1471. 2001-10-30 Pavel Roskin <proski@gnu.org>
  1472. * lib/mc.ext.in: Add support for Netpbm files.
  1473. 2001-10-25 Andrew V. Samoilov <kai@cmail.ru>
  1474. * slang/slvideo.c (SLtt_set_color): Eliminate C++ comments.
  1475. http://bugzilla.gnome.org/show_bug.cgi?id=60935
  1476. By drk@sgi.com.
  1477. * doc/mc.1.in: Document %p macro.
  1478. 2001-10-24 Pavel Roskin <proski@gnu.org>
  1479. * configure.in: Move AC_FUNC_MMAP before it's used indirectly.
  1480. Allow using --without-mmap.
  1481. * INSTALL: Document --without-mmap.
  1482. 2001-10-24 Andrew V. Samoilov <kai@cmail.ru>
  1483. * configure.in: Resurrect ALL_LINGUAS test, to allow specify list
  1484. of languages to be installed by setting env variable before
  1485. configure. If it is empty, it defaults to full list.
  1486. By Alex Tkachenko <alex@bcs.zp.ua>.
  1487. 2001-10-19 Pavel Roskin <proski@gnu.org>
  1488. * syntax/sh.syntax: Highlight reserved words inside backticks.
  1489. Use the same wholechars settings for reserved words and
  1490. commands. Recognize more words. Recognize function definitions
  1491. without "function" or without "()". Use brightmagenta instead
  1492. of brightblue.
  1493. 2001-10-18 Pavel Roskin <proski@gnu.org>
  1494. * configure.in: When checking for "nroff -mandoc" support, don't
  1495. use /dev/null as input file, use stdin. Some versions of nroff
  1496. (e.g. groff-1.16.1) don't accept special files.
  1497. 2001-10-14 Pavel Roskin <proski@gnu.org>
  1498. * lib/mc.ext.in: Treat Makefile.PL as a Perl program, not as a
  1499. Makefile. Don't allow any suffixes after "Makefile".
  1500. 2001-10-12 Pavel Roskin <proski@gnu.org>
  1501. * lib/mc.ext.in: Add support for *.xcf files (native GIMP
  1502. format).
  1503. 2001-10-06 Andrew V. Samoilov <sav@bcs.zp.ua>
  1504. * lib/mc.menu: Use "case" instead of non-portable "egrep -q".
  1505. Fix compress<->bzip2 conversion and conversion of tagged
  1506. archives.
  1507. 2001-10-05 Pavel Roskin <proski@gnu.org>
  1508. * lib/mc.ext.in: Use ogginfo to view *.ogg files.
  1509. Suggested by Marcel Pol <mpol@gmx.net>
  1510. * lib/mc.ext.in: Use xmms to play *.mp3 under X. When viewing
  1511. *.mp3, use "verbose" option to mpg123. Add support for *.ogg
  1512. and *.mid files.
  1513. 2001-09-30 Pavel Roskin <proski@gnu.org>
  1514. * configure.in: Don't check whether grep supports stdin - it's
  1515. not used anymore.
  1516. * NEWS: Mention this change.
  1517. 2001-09-19 Pavel Roskin <proski@gnu.org>
  1518. * doc/mcedit.1.in: Fix a very long line - use double
  1519. backslashes since they are interpreted even in the .nf blocks.
  1520. * lib/edit.spell.rc: Try aspell before resorting to ispell.
  1521. * syntax/php.syntax: Replace with a better implementation by
  1522. Max Schedriviy <max@tavrida.net>
  1523. 2001-09-15 Pavel Roskin <proski@gnu.org>
  1524. * doc/mc.1.in: Fix location of mcedit files.
  1525. * doc/mcedit.1.in: Likewise. Remove obsolete technical details.
  1526. 2001-09-14 Pavel Roskin <proski@gnu.org>
  1527. * configure.in: Don't check for ncurses version and for keyok()
  1528. because the mouse support code doesn't need this hack anymore.
  1529. 2001-09-13 Pavel Roskin <proski@gnu.org>
  1530. * configure.in: Fix some cases of overquoting and underquoting.
  1531. * acinclude.m4: Likewise.
  1532. 2001-09-12 Pavel Roskin <proski@gnu.org>
  1533. * configure.in: Update list of browsers. Don't fallback to
  1534. lynx since it cannot be run in background.
  1535. * lib/mc.ext.in: Redirect output of X11 browsers to /dev/null.
  1536. If no browser for X11 was found, use lynx.
  1537. * autogen.sh: Add a workaround to ensure that "depcomp" is
  1538. distributed.
  1539. * configure.in: Replace obsolete macros. Use AC_MSG_NOTICE
  1540. where appropriate.
  1541. * acinclude.m4: Likewise. Fix check whether S-Lang uses
  1542. terminfo.
  1543. * configure.in: Use three-argument form of AC_INIT. Use
  1544. AC_CONFIG_AUX_DIR. Remove some unused or implied macros.
  1545. * Makefile.am (EXTRA_DIST): Remove "depcomp" - this workaround
  1546. is not needed if AC_CONFIG_AUX_DIR is used.
  1547. * vfs/Make-mc.in: Adjust mkinstalldirs location.
  1548. * autogen.sh: Create "config" and remove "autom4te.cache".
  1549. 2001-09-11 Pavel Roskin <proski@gnu.org>
  1550. * syntax/Syntax: New file, extracted from edit/syntax.c.
  1551. * syntax/Makefile.am: Add Syntax.
  1552. * configure.in: Add -lcurses (for use with S-Lang) to MCLIBS not
  1553. to LIBS. Don't use unportable "grep -q", use "case" instead.
  1554. 2001-09-10 Pavel Roskin <proski@gnu.org>
  1555. * configure.in: Only check for X if --with-tm-x-support has been
  1556. specified.
  1557. * configure.in: Add check for sys/ioctl.h.
  1558. * configure.in: Use AC_FUNC_STRCOLL instead of generic test.
  1559. * acinclude.m4: Put -lncurses to MCLIBS, not LIBS.
  1560. * configure.in: Likewise. Add MCLIBS to LIBS temporarily when
  1561. testing for functions in ncurses.
  1562. * acinclude.m4: Provide descriptions in all AC_DEFINE macros.
  1563. * configure.in: Likewise. Use AH_BOTTOM to include extraconf.h.
  1564. * acconfig.h: Remove.
  1565. * configure.in: Eliminate LIBSLANG and LSLANG.
  1566. * acinclude.m4: Likewise. Use MCLIBS for -lslang.
  1567. * configure.in: Use MCLIBS for -lgpm. Remove LGPM. Check for
  1568. resizeterm() and keyok() only if configuring with ncurses.
  1569. * configure.in: Remove now unused variables LIBVFS and LVFS.
  1570. * configure.in: Remove unused variables LINTL and INTLDEPS.
  1571. * configure.in: Add -I\$(top_builddir)/intl to CPPFLAGS when
  1572. building with included gettext, because libintl.h is copied
  1573. there.
  1574. 2001-09-09 Pavel Roskin <proski@gnu.org>
  1575. * NEWS: Update.
  1576. * configure.in: Remove a hack for Unixware. AC_FUNC_GETMNTENT
  1577. checks -lgen for getmntent as of Autoconf 2.52.
  1578. 2001-09-07 Pavel Roskin <proski@gnu.org>
  1579. * configure.in: Check for pwd.h.
  1580. * Make.common.in: Remove.
  1581. * configure.in: Remove all references to Make.common.in and
  1582. MCCPPFLAGS.
  1583. * aclocal.m4: Likewise.
  1584. * configure.in: Require Autoconf 2.52. Remove hacks for
  1585. Autoconf 2.13.
  1586. * Makefile.am: Require Automake 1.5.
  1587. 2001-09-06 Pavel Roskin <proski@gnu.org>
  1588. * syntax/php.syntax: New file - PHP file highlighting. Copied
  1589. from Cooledit 3.17.4.
  1590. * syntax/Makefile.am: Add php.syntax.
  1591. 2001-09-06 Timur Bakeyev <mc@bat.ru>
  1592. * acconfig.h: Brought back couple of symbols, that are still necessary
  1593. due reference to them from configure.in.
  1594. 2001-09-04 Pavel Roskin <proski@gnu.org>
  1595. * syntax/changelog.syntax: Fix highlighting of functions. Relax
  1596. strictness for dates.
  1597. * doc/mc.1.in: Fix troff warnings.
  1598. * doc/mcedit.1.in: Likewise.
  1599. 2001-09-03 Pavel Roskin <proski@gnu.org>
  1600. * doc/mc.1.in: Spellcheck.
  1601. * doc/mcedit.1.in: Likewise.
  1602. * doc/mcserv.8.in: Likewise.
  1603. * doc/mc.1.in (Learn Keys): Complete rewrite.
  1604. 2001-09-02 Pavel Roskin <proski@gnu.org>
  1605. * acconfig.h: Remove all unused symbols.
  1606. * lib/ncurses.h: Remove.
  1607. * lib/Makefile.am: Remove ncurses.h.
  1608. 2001-09-02 Abel Cheung <maddog@linux.org.hk>
  1609. * configure.in (ALL_LINGUAS): zh_TW.Big5 -> zh_TW
  1610. 2001-08-28 Pavel Roskin <proski@gnu.org>
  1611. * syntax/sh.syntax: Require two '<' before EOF. Recognize END
  1612. like EOF.
  1613. 2001-08-26 Pavel Roskin <proski@gnu.org>
  1614. * configure.in: New conditionals USE_VFS_NET, USE_UNDEL_FS and
  1615. CONS_SAVER. Put all conditionals together.
  1616. * Makefile.am (EXTRA_DIST): Add depcomp to work around a bug in
  1617. Automake 1.5.
  1618. * configure.in: Remove XCURSES variable - it's unused.
  1619. * configure.in: New conditional USE_EDIT.
  1620. * syntax/changelog.syntax: Don't require '@' to be in the
  1621. address. This also works around a bug in the syntax engine
  1622. that prevented highlighting of addresses.
  1623. 2001-08-25 Pavel Roskin <proski@gnu.org>
  1624. * configure.in: New conditionals USE_VFS and INCLUDED_SLANG.
  1625. 2001-08-24 Pavel Roskin <proski@gnu.org>
  1626. * extraconf.h: Remove all references to HAVE_X.
  1627. * acinclude.m4: s/GNOME_/MC_/
  1628. * configure.in: Likewise. Remove or clarify all references to
  1629. the "text edition". Minor fixes.
  1630. * configure.in: Remove support for curses libraries other than
  1631. ncurses.
  1632. * acinclude.m4: Likewise.
  1633. * FAQ: Remove everything about UNIX curses.
  1634. * INSTALL: Likewise.
  1635. * configure.in: Enable large file support by default.
  1636. * NEWS: Mention it.
  1637. * INSTALL: Document it. Minor fixes.
  1638. * FAQ: Remove information about GNOME edition. Minor fixes.
  1639. * README: Likewise.
  1640. * NEWS: Mention removing the GNOME edition.
  1641. * acinclude.m4: Include all used macros from the macros
  1642. directory.
  1643. * autogen.sh: Remove all references to "macros".
  1644. * Makefile.am: Likewise.
  1645. * configure.in: Remove all GNOME stuff except GNOME_VFS_CHECKS.
  1646. * Makefile.am (SUBDIRS): Remove all GNOME-related directories.
  1647. * lib/startup.links: Remove.
  1648. * lib/README.desktop: Likewise.
  1649. * lib/Makefile.am: Remove all references to DESKTOP_FILES.
  1650. * configure.in: Bump version to 4.5.99a.
  1651. * configure.in: Bump version to 4.5.55. Release mc-4.5.55.
  1652. * po/*.po: Regenerate.
  1653. * AUTHORS: Update and spell check.
  1654. * FAQ: Likewise.
  1655. * INSTALL: Likewise.
  1656. * INSTALL.FAST: Likewise.
  1657. * NEWS: Likewise.
  1658. * README.PC: Likewise.
  1659. * README.QNX: Likewise.
  1660. * configure.in: Add check for stropts.h.
  1661. 2001-08-23 Pavel Roskin <proski@gnu.org>
  1662. * lib/edit.indent.rc: Create cooledit.error right away to
  1663. override its old contents. Don't use ksh extensions. Treat *.C
  1664. files as C++. Recognize more C++ extensions. Support java.
  1665. Update URL for "astyle". Quote all arguments to protect spaces.
  1666. * lib/edit.spell.rc: Don't save terminal settings - mc does it
  1667. itself. Quote all arguments to protect spaces.
  1668. 2001-08-21 Pavel Roskin <proski@gnu.org>
  1669. * doc-gnome/C/figs/Makefile.am: Don't install GNOME-specific
  1670. files if GNOME frontend is disabled.
  1671. * idl/Makefile.am: Likewise.
  1672. * lib/Makefile.am: Likewise.
  1673. * new_icons/Makefile.am: Likewise.
  1674. * autogen.sh: Fall back to aclocal without "-I gettext.m4" in
  1675. case it already has gettext macros elsewhere and doesn't like
  1676. duplicates (i.e. it's aclocal from Automake-1.4).
  1677. 2001-08-20 Pavel Roskin <proski@gnu.org>
  1678. * AUTHORS: Updated.
  1679. * INSTALL: Likewise.
  1680. * NEWS: Likewise.
  1681. * doc/mc.1.in: Likewise.
  1682. * doc/mcserv.8.in: Likewise.
  1683. * acinclude.m4 (AC_GET_FS_INFO): Specify includes when checking
  1684. for sys/mount.h.
  1685. 2001-08-19 Andras Timar <timar@gnome.hu>
  1686. * lib/Makefile.am: Added Hungarian hints
  1687. * lib/mc.hint.hu: by Arpad Biro <biro_arpad@yahoo.com>
  1688. 2001-08-19 Pavel Roskin <proski@gnu.org>
  1689. * lib/mc.lib: Add definition for "bs" for xterm and xterm-color.
  1690. 2001-08-17 Pavel Roskin <proski@gnu.org>
  1691. * syntax/po.syntax: New file - PO file highlighting.
  1692. From David Martin <dmartina@excite.es>
  1693. * syntax/Makefile.am: Add po.syntax.
  1694. * lib/mc.lib: Add "delete=\e[3~" for xterm and xterm-color -
  1695. it's sometimes missing from the databases.
  1696. 2001-08-16 Abel Cheung <maddog@linux.org.hk>
  1697. * lib/mc.hint.zh_TW.Big5 -> lib/mc.hint.zh: Temporary measure.
  1698. * lib/Makefile.am: Reflect above change.
  1699. 2001-08-15 Pavel Roskin <proski@gnu.org>
  1700. * doc/mc.1.in (Terminal databases): Recommend using \e, not \E.
  1701. 2001-08-14 Pavel Roskin <proski@gnu.org>
  1702. * lib/mc.lib: Add popular sequences for "home" and "end" in
  1703. "xterm" and "xterm-color" terminals.
  1704. 2001-08-13 Pavel Roskin <proski@gnu.org>
  1705. * lib/mc.ext.in: Move ls-lR.gz before generic gzip support.
  1706. Replace "Can't" with "Cannot" everywhere.
  1707. 2001-08-12 Pavel Roskin <proski@gnu.org>
  1708. * edit/edit_key_translator.c (cooledit_key_map): Use Ctrl-O for
  1709. subshell, not for "Open file...".
  1710. (emacs_key_map): Likewise.
  1711. * README: Changes from Frederic L. W. Meunier <0@pervalidus.net>
  1712. 2001-08-10 Pavel Roskin <proski@gnu.org>
  1713. * Makefile.am (EXTRA_DIST): Remove BUGS.
  1714. * doc/Makefile.am (EXTRA_DIST): Remove LSM and FILES.
  1715. * BUGS: Remove. Bugzilla.gnome.org doesn't have those bugs.
  1716. * doc/LSM: Remove, it's outdated.
  1717. * doc/FILES: Likewise.
  1718. * doc/DEVEL: Remove information about FILES.
  1719. * FAQ: Eliminate all broken URLs on the MC site.
  1720. From Frederic L. W. Meunier <0@pervalidus.net>
  1721. * FAQ: Restore information about xterm.
  1722. 2001-08-08 Pavel Roskin <proski@gnu.org>
  1723. * FAQ: Changes from Frederic L. W. Meunier <0@pervalidus.net>
  1724. 2001-08-07 Pavel Roskin <proski@gnu.org>
  1725. * doc/mc.1.in (Internal File Viewer): Document Ctrl-O and F17.
  1726. * doc/mc.1.in: Fix all broken links.
  1727. 2001-08-06 Pavel Roskin <proski@gnu.org>
  1728. * INSTALL: Numerous changes. Declare old curses obsolete.
  1729. Partly from Frederic L. W. Meunier <0@pervalidus.net>
  1730. * doc/mc.1.in (Menu Bar): Add link to the "Options Menu".
  1731. 2001-08-03 Abel Cheung <maddog@linux.org.hk>
  1732. * lib/Makefile.am: Remove space after backslash introduced in the
  1733. previous commit.
  1734. * lib/mc.hint.zh_TW.Big5: New file.
  1735. * lib/Makefile.am: Added mc.hint.zh_TW.Big5
  1736. 2001-08-02 Pavel Roskin <proski@gnu.org>
  1737. * lib/mc.hint.uk: New file.
  1738. From Maksym Polyakov <polyama@yahoo.com>
  1739. * lib/Makefile.am: Add mc.hint.uk.
  1740. 2001-08-01 Pavel Roskin <proski@gnu.org>
  1741. * lib/mc.hint.nl: New file.
  1742. From Steef Boerrigter <sxmboer@sci.kun.nl>
  1743. * lib/Makefile.am: Add mc.hint.nl.
  1744. * lib/mc.hint: Remove ftp site. Update copyright.
  1745. * lib/mc.hint.cs: Likewise.
  1746. * lib/mc.hint.es: Likewise.
  1747. * lib/mc.hint.it: Likewise.
  1748. * lib/mc.hint.pl: Likewise.
  1749. * lib/mc.hint.ru: Likewise. Shorten some lines.
  1750. * edit/Makefile.in: Allow running "make install" before "make all".
  1751. * gtkedit/Makefile.in: Likewise.
  1752. 2001-07-31 Pavel Roskin <proski@gnu.org>
  1753. * lib/edit.spell.rc: New file. Invoke ispell on Ctrl-p in the
  1754. editor.
  1755. * lib/Makefile.am: Add lib/edit.spell.rc.
  1756. * autogen.sh: Use gettextize.
  1757. * ABOUT-NLS: Remove from CVS, it's installed by autogen.sh.
  1758. * po/Makefile.in.in: Likewise.
  1759. 2001-07-29 Pavel Roskin <proski@gnu.org>
  1760. * syntax/slang.syntax: New file.
  1761. From Walery Studennikov <despair@sama.ru>
  1762. * syntax/Makefile.am: Add slang.syntax.
  1763. 2001-07-27 Pavel Roskin <proski@gnu.org>
  1764. * extraconf.h: Move WITH_BACKGROUND here.
  1765. 2001-07-24 Pavel Roskin <proski@gnu.org>
  1766. * doc/mc.1.in: Quote all section headers. Minor formatting fix.
  1767. 2001-07-23 Pavel Roskin <proski@gnu.org>
  1768. * doc/mc.1.in: Fix description of mc.lib. Fix broken links.
  1769. 2001-07-20 Pavel Roskin <proski@gnu.org>
  1770. * Make.common.in: Move all defines ...
  1771. * gnome/Makefile.in: ... here ...
  1772. * src/Makefile.in: ... and here.
  1773. 2001-07-19 Pavel Roskin <proski@gnu.org>
  1774. * configure.in: Don't check for getwd, it's completely
  1775. eliminated.
  1776. * INSTALL: Remove reference to HAVE_GETWD.
  1777. * lib/mc.ext.in: Fix opening info pages on VFS. Modernize
  1778. entries for compressed cpio archives.
  1779. * lib/mc.ext.in: Comment changes. Remove rules for programs -
  1780. they were only used in obsolete frontends. Don't ever use %view
  1781. without commands - it's slower and loses user settings, e.g.
  1782. hex mode. Put shared libraries before man pages and read.me
  1783. before .me macros so that they match correctly. Use nm for
  1784. shared libraries. Add rules for StarOffice and AbiWord.
  1785. 2001-07-14 Pavel Roskin <proski@gnu.org>
  1786. * configure.in: Bump version to 4.5.54a.
  1787. 2001-07-13 Pavel Roskin <proski@gnu.org>
  1788. * lib/mcserv.init: Fix exit status.
  1789. http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=44601
  1790. * lib/mc.ext.in: Anchor all regexes in the type/ rules except
  1791. "executable", which should follow a space. Simplify rules for
  1792. images. Add shell/ rule for *.info files. Fix all incorrect
  1793. uses of the alternation operator.
  1794. Reported by Oskar Liljeblad and Michel Casabona.
  1795. 2001-07-12 Pavel Roskin <proski@gnu.org>
  1796. * configure.in: Don't check for iconv, it's already checked for
  1797. in AM_GNU_GETTEXT.
  1798. 2001-07-10 Pavel Roskin <proski@gnu.org>
  1799. * doc/mc.1.in: Update documentation about hex search.
  1800. * edit/edit_key_translator.c (cooledit_key_map): Bind
  1801. Ctrl-Shift-Up and Ctrl-Shift-Down to scroll with highlight.
  1802. From Steef Boerrigter <sxmboer@sci.kun.nl>
  1803. * edit/Makefile.in: Make edit.o depend on edit_key_translator.c.
  1804. * edit/edit_key_translator.c (cooledit_key_map): Add support
  1805. for bracket matching on Alt-B.
  1806. * gtkedit/gtkeditkey.c: Likewise.
  1807. From Steef Boerrigter <sxmboer@sci.kun.nl>
  1808. 2001-07-06 Pavel Roskin <proski@gnu.org>
  1809. * lib/mc.ext.in: Use nm to view object files.
  1810. * Make.common.in: Remove GNOME-specific and unused definitions.
  1811. Partly moved to gnome/Makefile.in.
  1812. * configure.in: Remove all references to SEDCMD and SEDCMD2 -
  1813. they are usused.
  1814. * Make.common.in: Likewise.
  1815. 2001-06-29 Pavel Roskin <proski@gnu.org>
  1816. * ABOUT-NLS: Update to the version from gettext-0.10.38.
  1817. * Make.common.in (XCPPFLAGS): Don't add -I$(top_srcdir) - it's
  1818. now done in configure. Move -I.. to the beginning.
  1819. * Makefile.am (SUBDIRS): Move intl po to the beginning, since
  1820. libintl.a may be required to link mc.
  1821. (ACLOCAL_M4_SOURCES): Remove macros/gnome-gettext.m4.
  1822. * configure.in: Use AM_GNU_GETTEXT instead of AM_GNOME_GETTEXT.
  1823. Move all i18n code to one place. Don't substitute INTLSUB - it's
  1824. unused. Substitute INTLDEPS, since AM_GNU_GETTEXT doesn't do it.
  1825. Remove SCO-specific i18n hacks. Add -I$(top_srcdir) to CPPFLAGS.
  1826. 2001-06-25 Pavel Roskin <proski@gnu.org>
  1827. * configure.in: For Autoconf 2.50+, use AC_SYS_LARGEFILE.
  1828. It should be enabled explicitly by giving `--enable-largefile'
  1829. to configure.
  1830. * INSTALL: Document it.
  1831. 2001-06-22 Pavel Roskin <proski@gnu.org>
  1832. * extraconf.h: Don't define HAVE_INFOMOUNT_QNX on QNX Neutrino.
  1833. * acinclude.m4 (AC_GET_FS_INFO): Fix checking for f_fstypename
  1834. in struct statfs.
  1835. Reported by Libor Motyèka <libor.motycka@ortex.cz>.
  1836. * acinclude.m4 (AC_GET_FS_INFO): Warn only once that the list of
  1837. mounted filesystems cannot be read. Don't define NO_INFOMOUNT.
  1838. Define HAVE_INFOMOUNT_LIST if a any suitable function has been
  1839. found.
  1840. * extraconf.h: Define HAVE_INFOMOUNT and HAVE_INFOMOUNT_QNX.
  1841. 2001-06-19 Pavel Roskin <proski@gnu.org>
  1842. * configure.in: Check for telldir and seekdir. Join adjacent
  1843. calls to AC_CHECK_FUNCS.
  1844. 2001-06-16 Pavel Roskin <proski@gnu.org>
  1845. * Makefile.am: Change the order of SUBDIRS to fully compile text
  1846. edition before compiling anything for GNOME.
  1847. * mc.spec.in: Don't use brace expansion to avoid implicit
  1848. build-time dependency on bash.
  1849. 2001-06-13 Pavel Roskin <proski@gnu.org>
  1850. * acinclude.m4 (AC_SHORT_D_NAME_LEN): Fix compiler warnings in
  1851. the test code.
  1852. * configure.in: Fix compiler warnings in the arguments to
  1853. AC_TRY_WARNINGS. Fix value of NEED_CRYPT_PROTOTYPE - add spaces
  1854. around `=' in the `test' command.
  1855. 2001-06-07 Pavel Roskin <proski@gnu.org>
  1856. * doc-gnome/C/gmc.sgml: Remove index - it's not used in the
  1857. GNOME documentation template.
  1858. * doc-gnome/C/mkhtml: Don't generate index.
  1859. * doc-gnome/C/Makefile.am: Don't distribute genindex.sgml.
  1860. 2001-06-06 Pavel Roskin <proski@gnu.org>
  1861. * lib/Makefile.am: Make compatible with Automake 1.4 - remove
  1862. conditional variables from EXTRA_DIST.
  1863. 2001-06-05 Pavel Roskin <proski@gnu.org>
  1864. * edit/edit_key_translator.c [HAVE_CHARSET]: Add charset
  1865. conversion support.
  1866. From Walery Studennikov <hqsoftware@mail.ru>.
  1867. * extraconf.h [HAVE_X]: Undefine HAVE_TEXTMODE_X11_SUPPORT.
  1868. 2001-06-01 Pavel Roskin <proski@gnu.org>
  1869. * lib/mc.charsets: Synchronize with the latest patch - remove
  1870. a comment.
  1871. 2001-05-30 Pavel Roskin <proski@gnu.org>
  1872. * extraconf.h [HAVE_X]: Undefine HAVE_CHARSET - it doesn't
  1873. work with GNOME.
  1874. * lib/mc.charsets: New file. From Walery Studennikov.
  1875. * lib/Makefile.am: Distribute mc.charsets. Install it if
  1876. the charset support is enabled.
  1877. * configure.in: Add check for iconv() and the necessary code
  1878. to support the charset selection patch.
  1879. * configure.in: Add check for ESCDELAY variable in ncurses.
  1880. 2001-05-29 Pavel Roskin <proski@gnu.org>
  1881. * extraconf.h [!USE_VFS]: Undefine USE_NETCODE and
  1882. USE_EXT2FSLIB.
  1883. * extraconf.h: Remove unused HAS_DIRECT_COLOR_ACCESS.
  1884. * pc/config.h: Likewise.
  1885. * lib/mc.ext.in: For MS Word documents try "catdoc", "word2x"
  1886. and "strings". Recognize "write" files and MS Word templates.
  1887. For MS Excel documents try "xls2csv" and "strings".
  1888. Escape spaces in the "type" directives.
  1889. From Nerijus Baliunas.
  1890. * Make.common.in: Add -I$(top_srcdir) to XCPPFLAGS.
  1891. * Make.common.in: Remove hpath, it's unused.
  1892. * acconfig.h: Move constant parts ...
  1893. * extraconf.h: ... here.
  1894. [HAVE_X]: Disable subshell, s-lang and curses.
  1895. * Makefile.am: Add extraconf.h.
  1896. 2001-05-28 Pavel Roskin <proski@gnu.org>
  1897. * acconfig.h: Remove some useless entries. Eliminate OLD_TOOLS
  1898. and SLANG_H_INSIDE_SLANG_DIR. Move some descriptions ...
  1899. * configure.in: ... here.
  1900. 2001-05-27 Pavel Roskin <proski@gnu.org>
  1901. * configure.in: Remove unused HAVE_PORTABLE_TOKEN_PASTING.
  1902. * acconfig.h: Likewise.
  1903. * src/layout.c: Likewise.
  1904. * Make.common.in: Remove all percent rules.
  1905. * acinclude.m4 (AC_PROG_GNU_MAKE): Remove.
  1906. * configure.in: Remove AC_PROG_GNU_MAKE. Don't substitute
  1907. PCENTRULE. Remove AC_PROG_MAKE_SET - it's called by
  1908. AM_INIT_AUTOMAKE.
  1909. * Make.common.in: Remove obsolete dependency tracking system.
  1910. * configure.in: Likewise.
  1911. * edit/Makefile.in: Likewise.
  1912. * gnome/Makefile.in: Likewise.
  1913. * gtkedit/Makefile.in: Likewise.
  1914. * slang/Makefile.in: Likewise.
  1915. * src/Makefile.in: Likewise.
  1916. * vfs/Make-mc.in: Likewise.
  1917. * src/depend.awk: Remove.
  1918. 2001-05-26 Pavel Roskin <proski@gnu.org>
  1919. * gtkedit/syntax.c (syntax_text): Add support for Octave files.
  1920. * syntax/octave.syntax: New file. From Walery Studennikov.
  1921. * syntax/Makefile.am: Add octave.syntax.
  1922. * configure.in: Fix incorrect test for stdin support in grep -
  1923. it would always fail when configuring in an empty directory.
  1924. Portability fixes - unset, backslashed space in here-documents.
  1925. Eliminate all instances of "changequote".
  1926. * configure.in: Define SCO_FLAVOR based on $host_os, not on the
  1927. user choice.
  1928. * acconfig.h: Changes for the above.
  1929. * INSTALL: Don't document --with-sco - it's now defunct.
  1930. * INSTALL.FAST: Likewise.
  1931. 2001-05-25 Pavel Roskin <proski@gnu.org>
  1932. * lib/mc.ext.in: Match both "mail" and "Mail", but only if they
  1933. are in the beginning of the "file" output.
  1934. 2001-05-23 Pavel Roskin <proski@gnu.org>
  1935. * lib/mc.ext.in: Add associations for viewing RPM files.
  1936. 2001-05-22 Pavel Roskin <proski@gnu.org>
  1937. * doc-gnome/C/mkhtml: Support $JADE. Check that $DSL exists.
  1938. By default exit after the first error in jade.
  1939. * doc-gnome/C/mkhtml: Use jade directly, not jw. Support DSL and
  1940. JADEFLAGS environment variables. Report progress. Clean up on
  1941. failure.
  1942. 2001-05-21 Pavel Roskin <proski@gnu.org>
  1943. * doc-gnome/C/Makefile.am: Allow "make install" without *.html
  1944. files.
  1945. * doc-gnome/C/mkhtml: Print a big warning if the script fails.
  1946. * doc-gnome/C/Makefile.am: Ignore exit status of mkhtml.
  1947. 2001-05-20 Pavel Roskin <proski@gnu.org>
  1948. * doc-gnome/C/Makefile.am: Distribute mkhtml and genindex.sgml.
  1949. Create figs/*.eps if needed. Simplify rules for gmc.dvi and
  1950. gmc.rtf - DocBook 4.1 doesn't try to write to $(srcdir).
  1951. * doc-gnome/C/figs/Makefile.am: Add support for converting from
  1952. PNG to EPS.
  1953. * Makefile.am (EXTRA_DIST): Remove create_vcs.
  1954. * doc/FILES: Likewise. Typo fix.
  1955. 2001-05-19 Pavel Roskin <proski@gnu.org>
  1956. * doc-gnome/C/mkhtml: New file. Create HTML files from gmc.sgml.
  1957. * doc-gnome/C/Makefile.am: Don't handle *.css - there are none
  1958. with DocBook 4.1. Never use `cp' without `-f'. Use mkhtml.
  1959. * doc-gnome/C/gmc.sgml: Use DTD DocBook V4.1. Fix duplicate
  1960. index entry "Moving files".
  1961. 2001-05-18 Pavel Roskin <proski@gnu.org>
  1962. * configure.in: Use src/main.c in AC_INIT.
  1963. * create_vcs: Remove.
  1964. * INSTALL: Update download locations for MC, rxvt, gpm, ncurses.
  1965. Add download location for glib.
  1966. * mc.spec.in: Likewise.
  1967. * doc/LSM: Likewise.
  1968. * doc/mc.1.in: Likewise.
  1969. * doc/mcedit.1.in: Likewise.
  1970. * src/ext.c: Don't mention download location for MC.
  1971. * FAQ: Update status of Tk, XView. and GNOME editions. Update
  1972. homepage of gpm.
  1973. * INSTALL: Remove information about Tk and XView. Change the
  1974. mailing list addresses again.
  1975. * FAQ: Change the mailing list addresses again.
  1976. * MAINTAINERS: Likewise.
  1977. * README: Likewise.
  1978. * doc/mc.1.in: Likewise.
  1979. * gnome/gmc-window.c: Likewise.
  1980. * lib/README.xterm: Likewise.
  1981. * lib/mc.ext.in: Likewise.
  1982. * lib/mc.hint*: Likewise.
  1983. * lib/mc.hlp.hu: Likewise.
  1984. * po/*.po: Likewise.
  1985. * src/main.c: Likewise.
  1986. 2001-04-20 Pavel Roskin <proski@gnu.org>
  1987. * FAQ: Change the mailing list addresses and the download
  1988. locations.
  1989. * INSTALL: Likewise.
  1990. * MAINTAINERS: Likewise.
  1991. * README: Likewise.
  1992. * doc/mc.1.in: Likewise.
  1993. * gnome/gmc-window.c: Likewise.
  1994. * lib/README.xterm: Likewise.
  1995. * lib/mc.ext.in: Likewise.
  1996. * lib/mc.hint*: Likewise.
  1997. * lib/mc.hlp.hu: Likewise.
  1998. * po/*.po: Likewise.
  1999. * src/main.c: Likewise.
  2000. 2001-04-19 Pavel Roskin <proski@gnu.org>
  2001. * configure.in: Don't install mcserv unless
  2002. "--enable-mcserv-install" has been specified.
  2003. Don't quote the first argument in all calls to AM_CONDITIONAL
  2004. to work around a bug in Automake 1.4.
  2005. * doc/Makefile.am: Use MCSERV_INSTALL conditional.
  2006. * vfs/Make-mc.in: Likewise.
  2007. 2001-04-13 Pavel Roskin <proski@gnu.org>
  2008. * configure.in: Bump version to 4.5.53a.
  2009. 2001-04-06 Pavel Roskin <proski@gnu.org>
  2010. * gtkedit/editcmd.c: Remove support for XView layout attributes.
  2011. * gtkedit/editoptions.c: Likewise.
  2012. * pc/chmod.c: Likewise.
  2013. * pc/drive.c: Likewise.
  2014. * src/boxes.c: Likewise.
  2015. * src/chmod.c: Likewise.
  2016. * src/dlg.c: Likewise.
  2017. * src/dlg.h: Likewise.
  2018. * src/filegui.c: Likewise.
  2019. * src/find.c: Likewise.
  2020. * src/hotlist.c: Likewise.
  2021. * src/layout.c: Likewise.
  2022. * src/listmode.c: Likewise.
  2023. * src/main.c: Likewise.
  2024. * src/option.c: Likewise.
  2025. * src/panelize.c: Likewise.
  2026. * src/wtools.c: Likewise.
  2027. * src/wtools.h: Likewise.
  2028. * vfs/smbfs.c: Likewise.
  2029. * autogen.sh: Check out "intl" and "macros" directories if they
  2030. are missing. Simply "cvs up -d" won't restore them.
  2031. * configure.in: Bump version to 4.5.52a.
  2032. 2001-03-14 Pavel Roskin <proski@gnu.org>
  2033. * configure.in: Use AC_CHECK_TOOL for finding AR. Define
  2034. Automake conditional USE_SAMBA_FS if Samba is to be supported
  2035. in VFS.
  2036. 2001-03-07 Pavel Roskin <proski@gnu.org>
  2037. * configure.in: Use AM_PROG_CC_STDC if AC_PROG_CC_STDC is not
  2038. defined.
  2039. Reported by Norbert Warmuth.
  2040. * configure.in: Don't process vfs/extfs/uzip - it's now
  2041. constant.
  2042. * syntax/changelog.syntax: Require space after asterisk to have
  2043. it highlighted.
  2044. 2001-03-02 Pavel Roskin <proski@gnu.org>
  2045. * aclocal.m4 (MC_HPUX_PROG_CC_STDC): Remove, it's obsolete.
  2046. * configure.in: Use AC_PROG_CC_STDC instead.
  2047. * lib/mc.ext.in: Recognize files ending by `.lslR' and `.ls-lR'.
  2048. Suggested by Christian Gennerat.
  2049. * lib/mc.ext.in: Add support for "freeze" - old compression
  2050. program used mostly on QNX.
  2051. * lib/mc.ext.in.qnx.diff: Remove, it's obsolete.
  2052. * lib/Makefile.am: Adjusted.
  2053. 2001-02-26 Pavel Roskin <proski@gnu.org>
  2054. * lib/mc-gnome.ext.in: Remove, it's not used.
  2055. * configure.in: Remove lib/mc-gnome.ext.
  2056. * lib/Makefile.am: Likewise.
  2057. 2001-02-20 Pavel Roskin <proski@gnu.org>
  2058. * gtkedit/edit.h: Only include malloc.h if STDC_HEADERS is not
  2059. defined to prevent warnings on OpenBSD 2.7.
  2060. * slang/jdmacros.h: Likewise.
  2061. * src/mad.h: Likewise.
  2062. * src/poptalloca.h: Likewise.
  2063. * configure.in: Check for sys/time.h and sys/timeb.h. Use
  2064. AC_HEADER_TIME.
  2065. 2001-02-07 Pavel Roskin <proski@gnu.org>
  2066. * autogen.sh: Create vfs/samba/include/stamp-h.in.
  2067. * vfs/samba/include/stamp-h.in: Remove.
  2068. * macros/curses.m4: Quote first argument to AC_DEFUN.
  2069. * macros/gnome-cxx-check.m4: Likewise.
  2070. * macros/gnome-gettext.m4: Likewise.
  2071. * macros/gnome-libgtop-check.m4: Likewise.
  2072. * macros/gnome-print-check.m4: Likewise.
  2073. * macros/linger.m4: Likewise.
  2074. * macros/need-declaration.m4: Likewise.
  2075. * configure.in: Only configure in vfs/samba if smbfs support is
  2076. enabled even with Autoconf 2.13.
  2077. 2001-01-30 Pavel Roskin <proski@gnu.org>
  2078. * macros/gnome-vfs.m4 (GNOME_WITH_VFS): Fix mishandling of
  2079. --without-samba due to a typo.
  2080. * configure.in: Only configure in vfs/samba if smbfs support is
  2081. enabled. This optimization will only work with Autoconf-2.49c
  2082. and above.
  2083. 2001-01-13 Pavel Roskin <proski@gnu.org>
  2084. * configure.in: Don't create a faked malloc.h.
  2085. * gtkedit/edit.h: Don't assume that malloc.h always exists.
  2086. * src/mad.h: Likewise.
  2087. * configure.in: Simplified handling of cons.saver.
  2088. * src/Makefile.in: Likewise. Don't install cons.saver setuid.
  2089. * mc.spec.in: Remove a workaround for the above.
  2090. * configure.in: Use AC_CANONICAL_HOST - "target" is meaningless
  2091. for MC. Don't rely on the output of uname - use $host_os.
  2092. 2001-01-11 Pavel Roskin <proski@gnu.org>
  2093. * configure.in: Check for ext2 libraries only if VFS is enabled.
  2094. * src/Makefile.in: Create directories before installing files.
  2095. Removed all occurrences of libprefix - it's never defined.
  2096. * configure.in: All macros from configure.in moved to
  2097. acinclude.m4. Added missing quotes in several places.
  2098. * acinclude.m4: Likewise.
  2099. * edit/Makefile.in: Don't install or uninstall mcedit -
  2100. it cannot be installed before mc on systems without symlinks.
  2101. * gtkedit/Makefile.in: Likewise.
  2102. * src/Makefile.in: Install mcedit (if enabled) and mcview.
  2103. Uninstall them.
  2104. * macros/gnome-gettext.m4: Propagated change by Owen Taylor
  2105. from acinclude.m4 in gtk+:
  2106. Don't define ENABLE_NLS unless we have a working NLS.
  2107. (This should keep libintl.h from being included when it doesn't
  2108. exist).
  2109. 2001-01-09 Pavel Roskin <proski@gnu.org>
  2110. * doc-gnome/C/figs/Makefile.am: New file.
  2111. * doc-gnome/C/Makefile.am: Don't handle figs, let the new
  2112. makefile do it.
  2113. * configure: Substitute doc-gnome/C/figs/Makefile.
  2114. * lib/Makefile.am: Distribute files listed in LOCALIZED_HELP.
  2115. 2001-01-08 Szabolcs Ban <shooby@gnome.hu>
  2116. * lib/mc.hlp.hu: Added Hungarian help file from
  2117. tothb1@freemail.hu, Janos.Zana@elfiz2.kee.hu,
  2118. maci@integrity.hu, mfh47@freemail.hu
  2119. * lib/Makefile.am: Added LOCALIZED_HELP for further
  2120. mc.hlp l10ns
  2121. * src/cmd.c, src/dlg.c, src/tree.c, src/view.c,
  2122. gtkedit/editcmd.c: I18n of mc.hlp
  2123. 2000-12-29 Szabolcs Ban <shooby@gnome.hu>
  2124. * doc/mc.1.in: Corrected badly formatted link...
  2125. 2000-11-10 Robert Brady <robert@suse.co.uk>
  2126. * configure.in: Add Tamil to ALL_LINGUAS.
  2127. 2000-10-23 Pavel Roskin <proski@gnu.org>
  2128. * mc.spec.in: Allow mcserv.8 to be gzipped.
  2129. * doc-gnome/C/Makefile.am: Workaround for buggy db2html
  2130. that cannot deal with "./gmc.sgml".
  2131. 2000-10-09 Pavel Roskin <proski@gnu.org>
  2132. * Makefile.am: GNOME_M4_FILES renamed to ACLOCAL_M4_SOURCES so
  2133. that CVS Automake will drop dependencies to the macros that
  2134. we don't distribute.
  2135. * lib/mc.ext.in: Removed references to icons. Source RPMs
  2136. grouped to one regex. Removed "Update" for source RPMs, added
  2137. "Rebuild" instead. Added "Check signature" for all RPMs.
  2138. Added a comment about pop-up menus in the text edition.
  2139. 2000-10-06 Pavel Roskin <proski@gnu.org>
  2140. * gnome/Makefile.in, src/Makefile.in, vfs/Make-mc.in: Required
  2141. flags moved out of CFLAGS as recommended by GNU coding
  2142. standards.
  2143. * configure.in: Don't add GLIB_CFLAGS to CFLAGS.
  2144. * Make.common.in: XINC eliminated. GLIB_CFLAGS is now added to
  2145. XCPPFLAGS.
  2146. * INSTALL (Random notes on porting to other architectures):
  2147. Completely rewritten. Recommended using CFLAGS instead of XINC.
  2148. 2000-10-05 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2149. * lib/mc.ext.in: .spm is used by SuSE to mark src rpms
  2150. 2000-10-04 Christophe Merlet <christophe@merlet.net>
  2151. * gnome/*.desktop: Updated French strings.
  2152. 2000-10-03 Pavel Roskin <proski@gnu.org>
  2153. * doc-gnome/C/gmc.sgml: DTD changed to "PNG Variant V1.1"
  2154. to allow <legalnotice>. Unclosed tags fixed.
  2155. 2000-09-30 Pavel Roskin <proski@gnu.org>
  2156. * mc.spec.in: New package mc-common. Use DESTDIR instead of
  2157. misusing prefix. Don't install old icons - they don't exist.
  2158. * lib/mc.sh.in: Use "rm -f" to delete temporary files. Use
  2159. "export -f" to have mc() exported.
  2160. * doc/mc.1.in: Changed description of the "-P" option to
  2161. avoid inclusion of mc.sh and mc.csh into the manual.
  2162. Corrected paths of mc.hlp, mc.no_proxy and ~/mc/Tree.
  2163. 2000-09-24 Pavel Roskin <proski@gnu.org>
  2164. * doc/mc.1.in: Minor formatting fixes.
  2165. * lib/mc.sh.in: Remove temporary file non-interactively.
  2166. * doc/mc.1.in: updated example for mc.sh.
  2167. 2000-09-23 Pavel Roskin <proski@gnu.org>
  2168. * Makefile.am: mc.spec included to noinst_DATA so that "make all"
  2169. updates it when needed.
  2170. * mc.spec.in: Include translations with mc, not gmc. Run
  2171. chkconfig --del in %preun, not %postun. --without-debug not
  2172. needed. /etc/X11/wmconfig not needed. /etc/pam.d/mcserv shouldn't
  2173. be executable. New files in %{prefix}/lib/mc/ - translated hints,
  2174. editor files.
  2175. * doc-gnome/C/Makefile.am: Fixed *clean targets. Use temporary
  2176. directory for document processing. Comment changes. gmc.ps and
  2177. gmc.pdf now generated from gmc.dvi.
  2178. * configure: Always include Make.common as file, otherwise
  2179. "make distclean" breaks.
  2180. * edit/Makefile.in, gnome/Makefile.in, gtkedit/Makefile.in,
  2181. slang/Makefile.in, src/Makefile.in, vfs/Make-mc.in: $(RMF)
  2182. replaced with "rm -f" - the standard says that "rm" is portable.
  2183. Ditto $(MV). Adjusted *clean targets to match those in
  2184. Automake. Removed "cross" target.
  2185. 2000-09-22 Pavel Roskin <proski@gnu.org>
  2186. * doc/mc.sgml: Removed as obsoleted by doc/mc.in.1
  2187. * doc/gnome.sgml: Removed as obsoleted by doc-gnome/C/gmc.sgml
  2188. * doc/Makefile.in: Converted to ...
  2189. * doc/Makefile.am: ... this.
  2190. 2000-09-21 Pavel Roskin <proski@gnu.org>
  2191. * lib/mc.sh.in: Use $HOME instead of '~' because the tilde
  2192. is not expanded in all shells.
  2193. * doc/mc.sgml: Updated the example script to reflect the above
  2194. changes.
  2195. * doc/mc.in.1: Likewise.
  2196. 2000-09-19 Pavel Roskin <proski@gnu.org>
  2197. * lib/Makefile.in (LIBFILES_CONST): Added mc.hint.it from
  2198. Marco Ciampa
  2199. 2000-09-18 Pavel Roskin <proski@gnu.org>
  2200. * Make.common.in: Added installcheck to placate "make distcheck"
  2201. * configure.in, Make.common.in, doc/Makefile.in,
  2202. edit/Makefile.in, gnome/Makefile.in, gtkedit/Makefile.in,
  2203. slang/Makefile.in, src/Makefile.in, vfs/Make-mc.in: Replacing
  2204. variable MKINSTALLDIRS and builddir with Automake-compatible
  2205. mkinstalldirs and top_builddir.
  2206. * doc-gnome/C/Makefile.am: Only maintainers regenerate html
  2207. files. Added uninstall-local target.
  2208. 2000-09-17 Pavel Roskin <proski@gnu.org>
  2209. * configure.in: fixed wrong use of AC_MSG_RESULT inside
  2210. AC_CACHE_VAL
  2211. * Make.common.in: Added the "dvi" target for "make distcheck"
  2212. to go further
  2213. * doc-gnome/C/Makefile.in: converted to ...
  2214. * doc-gnome/C/Makefile.am: ... this
  2215. 2000-09-15 Pavel Roskin <proski@gnu.org>
  2216. * acconfig.h, configure.in: Require autoconf 2.13 or above.
  2217. Removed workarounds for older versions. Removed MCDEBUG
  2218. variable - it's not used. --with-debug renamed to --with-mad and
  2219. cleaned up. Always use -Wall with gcc, other manipulations with
  2220. CFLAGS removed.
  2221. * doc/Makefile.in, edit/Makefile.in, gnome/Makefile.in,
  2222. gtkedit/Makefile.in, slang/Makefile.in, src/Makefile.in,
  2223. vfs/Make-mc.in: preserve timestamp on "make distdir", otherwise
  2224. mc.pot becomes out of date in the tarball.
  2225. 2000-09-14 Pavel Roskin <proski@gnu.org>
  2226. * configure.in: Removed some abuses of CPPFLAGS. Removed useless
  2227. tests for cp, mv and rm.
  2228. * Make.common.in: Removed variables xv_bindir and STRIP.
  2229. Variables CP, MV and RMF are assigned trivial values.
  2230. * edit/Makefile.in: Don't link headers, add extra includes
  2231. to CPPFLAGS instead. Put links to the build directory.
  2232. Remove the hack with "mx" - it is not needed anymore.
  2233. * configure.in: remove any manipulations with top_srcdir.
  2234. Don't change CPPGLAGS when the internal editor is enabled,
  2235. instead do it ...
  2236. * edit/Makefile.in, gtkedit/Makefile.in: ... here
  2237. * configure.in, Make.common.in, doc/Makefile.in,
  2238. edit/Makefile.in, gnome/Makefile.in, gtkedit/Makefile.in,
  2239. slang/Makefile.in, src/Makefile.in, vfs/Make-mc.in: rootdir
  2240. changed to top_srcdir for Automake compatibility
  2241. * configure.in: REGEX_O variable removed - always use our regex
  2242. * configure.in: MCFGR variable removed
  2243. 2000-09-12 Pavel Roskin <proski@gnu.org>
  2244. * configure.in: enable AM_MAINTAINER_MODE to be consistent with
  2245. other GNOME modules
  2246. * autogen.sh: remove "-I ." from the "aclocal" command line
  2247. 2000-09-01 Pavel Roskin <proski@gnu.org>
  2248. * configure.in: output vfs/extfs/Makefile
  2249. * configure.in: AC_CANONICAL_SYSTEM moved above AM_INIT_AUTOMAKE
  2250. to avoid a warning
  2251. * acinclude.m4: removed unused macros AC_CHECK_HEADER_IN_PATH,
  2252. AC_LIB_XPM, AC_X_SHAPE_EXTENSION
  2253. 2000-08-29 Pavel Roskin <proski@gnu.org>
  2254. * configure.in: use AM_GNOME_GETTEXT
  2255. * gettext.m4: removed
  2256. * Makefile.am: adjusted files to distribute, previous change
  2257. reverted
  2258. * mc-aclocal.m4: renamed to ...
  2259. * acinclude.m4: ... this
  2260. * autogen.sh: simplified - no more tricks with mc-aclocal.m4
  2261. * Makefile.am: aclocal should scan "." for gettext.m4
  2262. 2000-08-28 Pavel Roskin <proski@gnu.org>
  2263. * Make.common.in: removed hack for "make distcopy"
  2264. * doc/Makefile.in, edit/Makefile.in, gnome/Makefile.in,
  2265. gtkedit/Makefile.in, slang/Makefile.in, src/Makefile.in,
  2266. vfs/Make-mc.in: added "distdir" target. Now "make dist" works
  2267. for external builds.
  2268. * edit/Makefile.in, slang/Makefile.in: added "Makefile" target
  2269. 2000-08-24 Pavel Roskin <proski@gnu.org>
  2270. * new_icons/Makefile.in: converted to ...
  2271. * new_icons/Makefile.am: ... this
  2272. * configure.in: automake conditional GNOME introduced.
  2273. "insticons" removed
  2274. * icons/*: removed
  2275. * Makefile.am, configure.in: necessary adjustments
  2276. * config.guess, config.sub, install-sh, mkinstalldirs: removed,
  2277. automake installs them now
  2278. * syntax/Makefile.in: converted to ...
  2279. * syntax/Makefile.am: ... this
  2280. * idl/Makefile.in: converted to ...
  2281. * idl/Makefile.am: ... this
  2282. * lib/Makefile.am: simplified, fixed "make dist"
  2283. * lib/Makefile.in: converted to ...
  2284. * lib/Makefile.am: ... this
  2285. * lib/tkmc.wmconfig: removed
  2286. * lib/Makefile.in, doc/FILES: removed lib/tkmc.wmconfig
  2287. * Makefile.in, doc-gnome/Makefile.in, pc/Makefile: converted
  2288. to ...
  2289. * Makefile.am, doc-gnome/Makefile.am, pc/Makefile.am: ... this
  2290. * Make.common.in: support for "distdir" for compatibility
  2291. with Automake-generated makefiles
  2292. * autogen.sh: run automake. Force cache - it is off by default
  2293. in autoconf 2.49a, but it's still handy for maintainers
  2294. * configure.in: adapted for Automake
  2295. * AUTHORS: new file
  2296. 2000-08-23 Pavel Roskin <proski@gnu.org>
  2297. * configure.in: resurrect definition of xvers
  2298. * VERSION.in: removed
  2299. * Makefile.in: don't do anything with VERSION.in and VERSION
  2300. Take mc.spec from builddir, not srcdir
  2301. * configure.in: don't create VERSION
  2302. 2000-08-22 Pavel Roskin <proski@gnu.org>
  2303. * *.c, *.h: Updated address of Free Software Foundation
  2304. 2000-08-21 Pavel Roskin <proski@gnu.org>
  2305. * Make.common.in, acconfig.h, configure.in, mc-aclocal.m4,
  2306. doc-gnome/Makefile.in, doc-gnome/C/Makefile.in: removed stuff
  2307. related to XView, libXPM, libXext and Tk
  2308. 2000-08-18 Pavel Roskin <proski@gnu.org>
  2309. * Makefile.in, lib/Makefile.in: adjusted lists of distributed
  2310. files
  2311. * configure.in: Simplified dependency tracking by using
  2312. "-include" with GNU Make
  2313. * autogen.sh: Exit on all failures
  2314. 2000-08-17 Pavel Roskin <proski@gnu.org>
  2315. * doc/mc.sgml: Curly braces replaced with &lcub; and &rcub;
  2316. Fixed all misuses of single and double quotes. Typo fixes.
  2317. Ensured compatibility with sgml2html, sgml2txt and sgml2latex
  2318. * doc/mc.1.in: Typo fix
  2319. * doc/mc.sgml: made compatible with sgml-tools 1.0.9
  2320. * doc/linuxdoc-sgml.diff: removed
  2321. * doc/Makefile.in: don't distribute linuxdoc-sgml.diff,
  2322. distribute gnome.sgml
  2323. 2000-08-15 Pavel Roskin <proski@gnu.org>
  2324. * Makefile.in: fixes for improper usage of $(srcdir), cleanup
  2325. in the "distclean" target
  2326. * doc-gnome/Makefile.in: Fixed some abuses of $(srcdir)
  2327. Removed all XVIEW-related stuff
  2328. Fixed placement of png files on "make dist"
  2329. * doc/mc.1.in: Updated info about the internal editor
  2330. * Makefile.in, */Makefile.in: Fail if $(RMF) fails - it may
  2331. indicate serious problems. Fixes for uninstall.
  2332. * doc/Makefile.in: Rebuild if it is out of date.
  2333. * lib/cedit.menu: Added. This file has been missing
  2334. * lib/Makefile.in: Install mc.sh and mc.csh in $(suppbindir) only
  2335. 2000-08-08 Pavel Roskin <proski@gnu.org>
  2336. * Makefile.in: correctly detect make failures in subdirs
  2337. 2000-08-01 Pavel Roskin <proski@gnu.org>
  2338. * nt, os2, tk, xv: removed all files
  2339. * configure.in: don't create os2 and nt directories
  2340. 2000-08-01 Pavel Roskin <proski@gnu.org>
  2341. * configure.in, mc-aclocal.m4: AC_WARN replaced with AC_MSG_WARN
  2342. * README.PC, doc/mc.1.in, doc/mc.sgml: Updated e-mail address
  2343. 2000-07-21 Pablo Saratxaga <pablo@mandrakesoft.com>
  2344. * src/main.c: make 8bit input/output the default (99% of the people
  2345. expects that; lets the remaining 1% use the configuration menu
  2346. to disactivate it if they want)
  2347. 2000-07-20 Andrew V. Samoilov <sav@bcs.zp.ua>
  2348. * gtkedit/ChangeLog: There was no ChangeLog there, so I added one.
  2349. 2000-06-20 Jacob Berkman <jacob@helixcode.com>
  2350. * configure.in: check for gnome-libs with window icon support
  2351. * acconfig.h: add icon define
  2352. 2000-06-08 Matthias Warkus <mawa@iname.com>
  2353. * new_icons/gnome-pack-*.png: Updated.
  2354. * gnome/mc.keys: Added a MIME type for SLP packages.
  2355. 2000-05-30 Pavel Roskin <pavel_roskin@geociiities.com>
  2356. * syntax/diff.syntax: Highlight lines beginning with "File",
  2357. "Files" and "Binary"
  2358. * syntax/makefile.syntax: Highlight "ifndef"
  2359. * syntax/sh.syntax: Don't highlight "basnemae" ("basename" is
  2360. highlighted)
  2361. 2000-05-05 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2362. * lib/mc.ext.in: More changes by rebel@atrey: he forgot to begin
  2363. comment lines with # in last release
  2364. 2000-05-03 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2365. * lib/mc.ext.in: Fixes to changes by rebel@atrey.karlin.mff.cuni.cz.
  2366. 2000-04-26 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2367. * lib/mc.ext.in: Changes from rebel@atrey.karlin.mff.cuni.cz. They
  2368. look more consistent than original.
  2369. 2000-04-14 Timur Bakeyev <mc@bat.ru>
  2370. * config.in: Added check against strcoll().
  2371. 2000-04-14 Timur Bakeyev <mc@bat.ru>
  2372. * syntax/perl.syntax: According to Tomasz Wegrzanovski <maniek@beer.com>
  2373. added 'and', 'or', 'not', 'for' keywords.
  2374. 2000-04-06 Timur Bakeyev <mc@bat.ru>
  2375. * syntax.c: Very dirty fix to allow compilation of mcedit on ncurses
  2376. based systems. Hope, this will make FreeBSD midc maintainer to enable
  2377. build-in editor by default. Still, syntax highlighting is disabled.
  2378. Need to port...
  2379. 2000-03-13 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2380. * gtkedit/syntax.c (upgrade_syntax_file): possible buffer overflow
  2381. fixed, some messages gettext()ed again here and in
  2382. gtkedit/editmenu.c:edit_about_cmd()
  2383. 2000-03-13 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2384. * doc/mc.sgml (Examples): Fixed documentation, thanx
  2385. to martin@internet-treff.uni-koeln.de.
  2386. 2000-03-01 Pavel Roskin <pavel_roskin@geocities.com>
  2387. * gtkedit/editcmd.c (edit_replace_prompt): fix index for
  2388. the label text
  2389. 2000-02-25 Pavel Roskin <pavel_roskin@geocities.com>
  2390. * gtkedit/syntax.c: treat *.ads as Ada source
  2391. * syntax/ada95.syntax: escape "+" and "*"
  2392. * syntax/diffc.syntax: removed (obsoleted by diff.syntax)
  2393. * syntax/Makefile.in: remove diffc.syntax
  2394. * edit/edit_key_translator.c: interpret code 0177 as
  2395. backspace unless recognized otherwise
  2396. 2000-02-23 Norbert Warmuth <nwarmuth@privat.circular.de>
  2397. * gtkedit/editcmd.c (edit_replace_prompt): fix incorrect
  2398. initialization of array of structure (gcc version 2.96 20000131
  2399. chokes on it).
  2400. * lib/mc.hint: C-y and not C-u can be used to insert text in input
  2401. lines (e. g. text which has been deleted with M-d).
  2402. * configure.in: Fix the extfs-configure-fragment-in-final-output bug
  2403. 2000-01-31 Yuan-Chung Cheng <platin@linux.org.tw>
  2404. * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
  2405. 2000-01-29 Matthias Warkus <mawa@iname.com>
  2406. * new_icons/gnome-pack-deb.png: Replaced with Eduardo Silva's
  2407. design on Federico's request.
  2408. 2000-01-26 Federico Mena Quintero <federico@helixcode.com>
  2409. * idl/FileManager.idl (Desktop): Added arrange_icons() method and
  2410. an ArrangeType enum.
  2411. 2000-01-03 Aaron Lehmann <aaronl@vitelus.com>
  2412. * gdesktop.c, gdnd.c, gaction.c, gicon.c,
  2413. gnome-file-property-dialog.c, gpopup.c, gpopup2.c, gprefs.cgmain.h,
  2414. setup.c: Add option of using GNOME "magic" routines to determine file
  2415. types. This makes MC intelligently look at the data in the file to see
  2416. what type of file it is, rather than looking at the filename extension.
  2417. This slows down MC quite a bit, so it has been made an optional
  2418. preference item. Type detection is expected to improve as mime-magic
  2419. matures.
  2420. 2000-01-15 Federico Mena Quintero <federico@helixcode.com>
  2421. * lib/mc.menu (shell_patterns): Add a missing "esac". Thanks to
  2422. Martin Bialasinski <martin@internet-treff.uni-koeln.de> for
  2423. providing a patch.
  2424. 2000-01-11 Matthias Warkus <mawa@iname.com>
  2425. * Added icon and keys entry for Scheme source.
  2426. 2000-01-03 Fatih Demir <kabalak@gmx.net>
  2427. * configure.in: Added tr -> ALL_LINGUAS .
  2428. 1999-12-28 Matthias Warkus <mawa@iname.com>
  2429. * new_icons/*.png: Added a bunch of new icons.
  2430. 1999-12-06 Federico Mena Quintero <federico@redhat.com>
  2431. * configure.in (VERSION): Bumped version number to 4.5.42.
  2432. 1999-11-25 Yuri Syrota <rasta@renome.rovno.ua>
  2433. * configure.in: added 'uk' to ALL_LINGUAS.
  2434. 1999-11-09 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
  2435. * lib/Makefile.in (LIBFILES_CONST): Adding mc.hint.cs file on
  2436. request from David Sauer
  2437. 1999-11-01 Federico Mena Quintero <federico@redhat.com>
  2438. * configure.in (VERSION): Bumped version number to 4.5.41.
  2439. 1999-09-23 Federico Mena Quintero <federico@redhat.com>
  2440. * configure.in (VERSION): Set version number to 4.5.39.
  2441. 1999-09-23 Jorge Godoy <godoy@conectiva.com.br>
  2442. * configure.in: Added pt_BR to ALL_LINGUAS
  2443. 1999-09-22 Norbert Warmuth <nwarmuth@privat.circular.de>
  2444. * lib/mc.sh.in, mc.csh.in: renamed from mc.sh resp. mc.csh. Adapt
  2445. path to the mc binary according to @prefix@.
  2446. * lib/Makefile.in (srcdir): mc.sh and mc.csh are now created by
  2447. configure. Install mc.sh and mc.csh in $(suppbindir).
  2448. * doc/mc.1.in, mc.sgml: Updated the mc function definition for bash
  2449. and zsh. Suggest to source mc.sh or mc.csh instead of adding verbatim
  2450. copies of the included function definitions.
  2451. * mcfn_install.in: Comment out definitions of the mc functions. Source
  2452. mc.sh instead of adding an outdated mc function definition.
  2453. * configure.in: output mc.sh and mc.csh
  2454. 1999-09-20 Federico Mena Quintero <federico@redhat.com>
  2455. * lib/startup.links: Changed the news link to Gnotices
  2456. 1999-09-19 David Martin <dmartina@usa.net>
  2457. * gtkedit/editcmd.c (edit_print_string): Use unsigned char so that
  2458. 8 bit chars from strftime get displayed when inserting date.
  2459. * lib/mc.ext.in: Add entries for bzip2 compressed pages as used in
  2460. Mandrake 6.0. The generic entry for bzip2 moved to the end of the
  2461. file to avoid interferences. In this one I changed the extension check
  2462. to a type check (as used for gzip) which might give problems in some
  2463. systems.
  2464. * configure.in: Use -Tlatin1 to format man pages when available and
  2465. "view" 8 bit chars.
  2466. 1999-09-19 Norbert Warmuth <nwarmuth@privat.circular.de>
  2467. * gtkedit/edit.h: Include file reordering to make it compile with
  2468. --with-debug
  2469. * gtkedit/editcmd.c (menu_save_mode_cmd): calculate dialog width
  2470. dependent on length of translated strings to display.
  2471. 1999-09-16 Owen Taylor <otaylor@redhat.com>
  2472. * Remove the magicdev autoconf test in favor of just
  2473. including the idl file. Otherwise we have a dependency
  2474. loop between this and magicdev.
  2475. 1999-09-08 Federico Mena Quintero <federico@redhat.com>
  2476. * idl/FileManager.idl: Changed names, and put everything under a
  2477. FileManager module. Added a Desktop interface and some methods to
  2478. the WindowFactory interface.
  2479. 1999-09-08 Kjartan Maraas <kmaraas@online.no>
  2480. * doc-gnome/*: Shiny new docs from users-guide.
  2481. All synced up.
  2482. 1999-09-03 Pablo Saratxaga <pablo@mandrakesoft.com>
  2483. * configure.in: added 'nl' to ALL_LINGUAS, it was missing.
  2484. 1999-09-01 Federico Mena Quintero <federico@redhat.com>
  2485. * README: Updated and spell-checked.
  2486. * NEWS: Updated.
  2487. 1999-08-31 Richard Hult <rhult@hem2.passagen.se>
  2488. * configure.in (ALL_LINGUAS): Added sv.
  2489. 1999-08-30 Norbert Warmuth <nwarmuth@privat.circular.de>
  2490. * lib/mc.sh: create temporary files in ~/.mc/tmp in order to avoid
  2491. symlink attacks (mcfn_install and the man page still needs to be
  2492. updated).
  2493. 1999-08-20 Norbert Warmuth <nwarmuth@privat.circular.de>
  2494. * configure.in (AC_WITH_SLANG): rm -f destination before making
  2495. a symbolic link (ln -sf doesn't work as expected on Solaris)
  2496. 1999-08-19 Elliot Lee <sopwith@redhat.com>
  2497. * */Makefile.in: Have 'make dist' work with builddir != srcdir.
  2498. 1999-08-19 Federico Mena Quintero <federico@redhat.com>
  2499. * doc-gnome/C/gmc.sgml: Index fixes.
  2500. 1999-08-18 Elliot Lee <sopwith@redhat.com>
  2501. * gtkedit/gtkedit.c: Make it build with gcc 2.95, by fixing the non-constant
  2502. initializers in the GnomeUIInfo structure.
  2503. 1999-08-16 Federico Mena Quintero <federico@redhat.com>
  2504. * configure.in (VERSION): Bumped version number to 4.5.38.
  2505. 1999-08-15 Norbert Warmuth <nwarmuth@privat.circular.de>
  2506. * lib/Makefile.in: added mc.hint.es to LIBFILES_CONST
  2507. 1999-08-15 David Martin <dmartina@usa.net>
  2508. * gtkedit/edit.c: Print localized date with strftime()
  2509. * lib/mc.hint.es: NEW FILE. Hints in Spanish flavor.
  2510. 1999-08-08 David Martin <dmartina@usa.net>
  2511. * gtkedit/syntax.c (upgrade_syntax_file): Mark error strings for
  2512. translation.
  2513. * gtkedit/editmenu.c (edit_about_cmd): Mark text in "about" for
  2514. translation as it used to be.
  2515. 1999-08-05 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2516. * doc-gnome/C/gmc.sgml: Set the book element's id to "index" so
  2517. that the correct index.html will be generated.
  2518. 1999-07-27 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2519. * syntax/Makefile.in (ALLSYNTAX): Added the missing syntax files
  2520. to the list.
  2521. 1999-07-21 Paul Sheer <psheer@obsidian.co.za>
  2522. * gtkedit.c, edit.c, editcmd.c, syntax.c, edit.h, bookmark.c,
  2523. editwidget.c: bring editor stuff up to date with cooledit 3.11.5
  2524. This adds some new syntax rules, and spell check on the fly
  2525. which if someone bugs me for, will actually get enabled in
  2526. both the text and gnome versions. Bookmark stuff also needs
  2527. some keys bound to it, I suppose: any takers?
  2528. 1999-07-19 Elliot Lee <sopwith@redhat.com>
  2529. * Makefile.in: Remove doc-gnome* from codedirs variable. Fixes
  2530. infinitely recursing make.
  2531. 1999-07-05 Miguel de Icaza <miguel@gnu.org>
  2532. * Makefile.in (all): Makefile fix.
  2533. 1999-05-27 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2534. * Make.common.in (confdir): Define confdir as sysconfdir. This
  2535. should fix the problem we had with FSSTND distributions.
  2536. 1999-07-04 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2537. * Makefile.in (DISTMAIN): Added config.guess and config.sub to the
  2538. list of distributed files.
  2539. 1999-07-03 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2540. * configure.in (VERSION): Bumped version number to 4.5.34.
  2541. 1999-07-02 Tuomas J. Lukka <lukka@iki.fi>
  2542. * Add fi into ALL_LINGUAS
  2543. 1999-07-01 Tuomas Kuosmanen <tigert@gimp.org>
  2544. * gnome/i-zipdisk2.png: Added another zip-disk icon
  2545. by <scarab@egyptian.net> - It looks very nice. Variation
  2546. is good.
  2547. 1999-06-22 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2548. * acconfig.h: Add WITH_SMBFS
  2549. * macros/gnome-vfs.m4: Support conditional samba support.
  2550. 1999-05-27 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2551. * Make.common.in (confdir): Define confdir as sysconfdir. This
  2552. should fix the problem we had with FSSTND distributions.
  2553. 1999-02-22 Vladimir Kondratiev <vkondra@iil.intel.com>
  2554. * mc.spec.in: added syntax files to %files
  2555. 1999-06-22 David Martin <dmartina@usa.net>
  2556. * gtkedit/gtkedit.c (tb_items): Mark strings for localization.
  2557. 1999-06-07 Shooby Ban <bansz@szif.hu>
  2558. * po/hu.po, configure.in: added Hungarian translations...
  2559. I'm not sure it's OK, but it seems usable.
  2560. Translators: Tamas Fejos and Andras Kadar
  2561. 1999-06-07 Kjartan Maraas <kmaraas@online.no>
  2562. * configure.in, Makefile.in: added the gmc helpfile to the build
  2563. 1999-05-23 Yukihiro Nakai <nacai@iname.com>
  2564. * Add ja entry to LANG in configure.in
  2565. 1999-05-19 Tuomas Kuosmanen <tigert@gimp.org>
  2566. * gnome/Makefile.in (ICONS): OK, perhaps we also want the zip-icon to
  2567. be installed in the system :) (added it to the Makefile.in)
  2568. 1999-05-19 Tuomas Kuosmanen <tigert@gimp.org>
  2569. * gnome/i-zipdisk.png: I added an icon for the ZIP(tm I guess :)
  2570. disks - someone please add it to the mount.c code so it gets used..
  2571. Everyone have a nice time at the expo! :) I hope to join the
  2572. next time.
  2573. Mon May 17 07:30:48 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2574. * configure.in: Added check for getpt ()
  2575. 1999-05-05 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2576. * configure.in (VERSION): Bumped version number to 4.5.31.
  2577. Wed Apr 21 22:04:30 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2578. * gtkedit/editcmd.c (edit_save_file): MAD knows about tempnam, no
  2579. need to fool it by strdup'ing the return value of tempnam.
  2580. Wed Apr 21 20:44:41 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2581. * configure.in: New option --with-tm-x-support, use MCCFLAGS and
  2582. MCLIBS which are specific to the text edition.
  2583. * INSTALL: Added documentation for --with-tm-x-support
  2584. Sun Apr 18 17:51:54 EDT 1999 Gregory McLean <gregm@comstar.net>
  2585. * mc.spec.in : Folded in some changes from the 'official' rpm
  2586. spec file.
  2587. 1999-04-16 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2588. * configure.in (SHELL): Do not use grep -q, as it is not portable
  2589. to every OS.
  2590. Thu Apr 15 21:59:52 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2591. * configure.in: Linking from $srcdir/slang is broken when configure
  2592. isn't called with an absolute path. Link from ../$srcdir/slang if
  2593. configure was invoked with a relative path.
  2594. 1999-03-20 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
  2595. * configure.in: Do not rm the destination file and then link, use
  2596. ln -sf. Link from $srcdir/slang, not from ../$srcdir/slang.
  2597. Tue Apr 13 06:07:05 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2598. * configure.in: Some AC_ARG_WITH macros haven't checked $withval, i.e.
  2599. --with-PACKAGE and --without-PACKAGE gave the same results.
  2600. 1999-04-09 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2601. * configure.in (VERSION): Bumped version number to 4.5.30.
  2602. 1999-03-30 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2603. * configure.in (VERSION): Bumped version number to 4.5.29.
  2604. Sun Mar 28 23:46:01 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2605. * configure.in: Deleted duplicate VFS checks. GNOME_VFS_CHECKS
  2606. now contains all checks.
  2607. 1999-03-26 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2608. * configure.in (VERSION): bumped version number to 4.5.28.
  2609. Fri Mar 26 19:16:38 1999 Timur Bakeyev <mc@bat.ru>
  2610. * */Makefile.*: fixed several missed conversions from libdir to
  2611. mclibdir. (Should be automake'd, really)
  2612. 1999-03-24 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2613. * Make.common.in: There were conflicting definitions of mclibdir
  2614. (one for installation, one for source). Now the source one is
  2615. called mcsrclibdir.
  2616. * doc/Makefile.in: Use mcsrclibdir where appropriate.
  2617. Mon Mar 22 03:00:15 1999 Timur Bakeyev <mc@bat.ru>
  2618. * edit/syntax.c: Remove extra "|" in "file ..\*\\.(pp|PP|pas|PAS|)$ \
  2619. Pascal Program" (Heh, second time :)
  2620. * Makefile.common: Until things gets clear, keep syntax rules in
  2621. $(prefix)/lib/mc//syntax, as this is how (LIBDIR "/syntax") expands.
  2622. Also, $(libdir) changed to $(mclibdir), to avoid confusion with expanded
  2623. @libdir@.
  2624. Mon Mar 22 01:52:32 1999 Timur Bakeyev <mc@bat.ru>
  2625. * configure.in, Makefile.in, Makefile.common: Add syntax/Makefile.in,
  2626. as requested by Paul. Still, need some checking...
  2627. Sun Mar 21 03:55:24 1999 Paul Sheer <psheer@obsidian.co.za>
  2628. * edit/*.[ch] gtkedit/*.[ch]: brought the editor up
  2629. to date with cooledit 3.9.0. This adds some new features.
  2630. Firstly the SYNTAX RULES ARE NO LONGER HARDCODED into
  2631. syntax.c. This is because the rule set is becoming too
  2632. large to maintain in its current form and because file
  2633. loading is starting to get slow.
  2634. There is also a bookmark feature which does not yet have
  2635. key bindings assigned to it, but should be cool once
  2636. these get inserted. Syntax rules files are named
  2637. $LIBDIR/cooledit/syntax/*.syntax
  2638. 1999-03-20 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
  2639. * configure.in: Create slang directory, it is needed when
  2640. builddir != srcdir.
  2641. Use -f when calling rm, the file does not exist on
  2642. first compile.
  2643. No need to copy VERSION from $srcdir, it's already generated in
  2644. $builddir.
  2645. Fri Mar 19 06:32:36 1999 David Martin <dmartina@usa.net>
  2646. * edit/edit_key_translator.c: Added missing translation tags.
  2647. 1999-03-18 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2648. * configure.in: Minimum version of glib should be 1.2.0.
  2649. (VERSION): Bumped version number to 4.5.27.
  2650. Wed Mar 10 21:52:55 1999 David Martin <dmartina@usa.net>
  2651. * gtkedit/editcmd.c: Added missing translation tags.
  2652. * gtkedit/editoptions.c: Added missing translation tags. Translate
  2653. radio buttons on first use.
  2654. Sat Feb 27 21:00:45 1999 Gregory McLean <gregm@comstar.net>
  2655. * applied a patch from Duncan Mak <mustapha@wegythu.res.cmu.edu>
  2656. to get the mc spec file to work.
  2657. * hacked configure to generate a properly versioned spec file.
  2658. Fri Feb 26 22:06:51 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2659. * gtkedit/editcmd.c (menu_save_mode_cmd): translate strings for
  2660. radio buttons on first pass.
  2661. Fri Feb 26 21:45:30 1999 David Martin <dmartina@usa.net>
  2662. * gtkedit/editcmd.c: Mark strings in the search and replace
  2663. dialogs for translation. Resized these dialogs to let the messages
  2664. fit.
  2665. 1999-02-22 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2666. * gtkedit/editwidget.c (selection_send): Use the proper type for
  2667. 64-bit cleanliness (Patch from George Lebl).
  2668. Tue Feb 16 21:24:43 1999 David Martin <dmartina@usa.net>
  2669. * gtkedit/gtkedit.c: Hack to get one more string defined in a macro
  2670. into the catalog file.
  2671. Sat Feb 13 01:39:17 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2672. * configure.in: Make Timur's libtermcap check work with SLang
  2673. 0.99.98, too.
  2674. 1999-02-12 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2675. * new_icons/Makefile.in (ALLICONS): Added Tigert's new icons for
  2676. PS and EPS files. Thanks, Tigert!
  2677. 1999-02-09 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2678. * configure.in (CCOPTS): Drop the prefix auto-detection.
  2679. Wed Feb 10 02:48:51 1999 Timur Bakeyev <mc@bat.ru>
  2680. * configure.in: Add check, which, in case of system-installed SLang
  2681. library tries to run a test program, which determines, does we need
  2682. linking with libtermcap.a. Also, set of if's for finding terminfo
  2683. dir changed to for cycle - a bit nicer :)
  2684. Tue Feb 9 20:52:19 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2685. * README.QNX: Deleted documentation about mc.menu.qnx.diff.
  2686. Tue Feb 9 20:46:07 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2687. * lib/mc.menu.qnx.diff: Deleted, it was merged with mc.menu.
  2688. Tue Feb 9 20:32:39 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2689. * lib/mc.menu: Removed GNU tar'isms (option z). Removed option -o
  2690. from tar calls when extracting (according to my man page this option
  2691. is only useful when creating archives).
  2692. Tue Feb 9 20:28:15 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2693. * lib/mc.menu: Applied patch from root <root@golia.dntis.ro> which
  2694. adds support for tar.bz2 and merges the support for freeze-compressed
  2695. tar files (tar.F) from mc.menu.qnx.diff.
  2696. Sun Feb 7 06:11:48 1999 Timur Bakeyev <mc@bat.ru>
  2697. * Makefile.in: Change calls to xmkdir to mkinstalldirs - this is more
  2698. GNU-like :)
  2699. 1999-01-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2700. * gtkedit/gtkedit.c: Hack to get a string defined in a macro into
  2701. the catalog file.
  2702. 1999-02-02 Tuomas Kuosmanen <tigert@gimp.org>
  2703. * new_icons/gnome-core.png: New icon for core files. Someone
  2704. please add the code part :)
  2705. Mon Feb 1 01:28:19 1999 Timur Bakeyev <mc@bat.ru>
  2706. * configure.in: Add check against setuid() and setreuid() functions.
  2707. Fri Jan 29 22:55:56 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
  2708. * slang/slang.h: renamed to slang-mc.h
  2709. * slang/Makefile.in: delete slang.h on "make clean"
  2710. * configure.in: link slang/slang-mc.h to slang/slang.h when the
  2711. included slang is used. Problem was that MC's slang.h was used
  2712. when we compiled with an already installed SLang and the systems
  2713. header file were included with <slang/slang.h>.
  2714. Unfortunately I can't use AC_LINK_FILES to make the links because
  2715. if we needn't make any links AC_LINK_FILES makes a link from
  2716. srcdir to top_builddir (builddir != srcdir).
  2717. Temporary add $LGPM to $LIBS when checking for the resizeterm
  2718. and keyok functions (ncurses might be linked against GPM).
  2719. Substitute PACKAGE (intl/Makefile makes use of it)
  2720. Wed Jan 27 03:34:44 1999 Timur Bakeyev <mc@bat.ru>
  2721. * gtkedit/edit.h: including of <malloc.h> and <stdlib.h> swapped by
  2722. #include "global.h".
  2723. 1999-01-13 Jonathan Blandford <jrb@redhat.com>
  2724. * Make.common.in (gnewdir): new path.
  2725. Sun Jan 17 03:19:47 1999 Timur Bakeyev <mc@bat.ru>
  2726. * configure.in: Add comments before "Let" and "the" - typo. Add new
  2727. path to include's search.
  2728. 1999-01-10 Ilya Zakharevich <ilya@math.ohio-state.edu>
  2729. * gtkedit/edit.c (edit_load_file): Off-by-one error disabled editing.
  2730. 1999-01-11 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2731. * configure.in (REGEX_O): Always include regex.o as the code we
  2732. are using in gmc is not using regcomp/regexec, but the internal
  2733. Emacs API.
  2734. * src/regex.c: Do not compile the POSIX compatibility code, as we
  2735. do not use it.
  2736. Tue Dec 29 15:49:45 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  2737. * doc/mc.sgml, mc1.in (Color section): minor polishing
  2738. (Layout section): documented Highlight...
  2739. Thu Dec 24 18:30:53 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  2740. * configure.in: Deleted du checks
  2741. * INSTALL: Deleted --with-dusum documentation.
  2742. * doc/mc.sgml, mc.1.in: Completed documentation about the Options/
  2743. Configuration dialog. Added Advanced chown subsection. Deleted
  2744. variables from the Special settings section which are now covered
  2745. by the configuration dialog.
  2746. Mon Dec 21 22:26:34 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  2747. * doc/mc.sgml, mc.1.in: Deleted obsolete information about
  2748. tar_gz_memlimit. Partially rewrote the section about the
  2749. Virtual FS.. configuration dialog.
  2750. 1998-12-17 Christopher Blizzard <blizzard@appliedtheory.com>
  2751. * autogen.sh (srcdir): Honor $ACLOCAL_FLAGS when running aclocal.
  2752. Sun Dec 13 15:26:19 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
  2753. * Makefile.in (target installdirs): create $(DESTDIR)$(idldir)
  2754. * lib/Makefile.in (target install): install $(LIBFILES_OUT) from the
  2755. builddir
  2756. 1998-12-08 Tuomas Kuosmanen <tigert@gimp.org>
  2757. * new_icons/gnome-image-[lots].png: I added some icons for file
  2758. types (image) there - someone please tell me what the correct
  2759. location and naming convention is and I will try to follow that. :)
  2760. 1998-12-08 Christopher Blizzard <blizzard@appliedtheory.com>
  2761. * configure.in (builddir): Add icons/Makefile to AC_OUTPUT so that
  2762. the build will still work. (Has this been replaced by new_icons?)
  2763. Tue Dec 1 11:58:55 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
  2764. * doc/mc.1.in, mc.sgml: added my name to list of authors
  2765. 1998-12-02 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2766. * Makefile.in (codedirs): Dropped xv and tk ports from the
  2767. distribution. include idl directory.
  2768. 1998-12-01 Miguel de Icaza <miguel@nuclecu.unam.mx>
  2769. * configure.in (slang_use_system_installed_lib): Define slang
  2770. here, to avoid having this on LIBS.
  2771. 1998-11-26 Herbert Valerio Riedel <hvr@hvrlab.ml.org>
  2772. * gtkedit.c: changed occurrence of 'va_list *ap' to 'va_list ap'
  2773. Thu Nov 26 12:20:06 1998 Pavel Roskin <pavel_roskin@geocities.com>
  2774. * config.h.in: Removed from CVS, added to .cvsignore
  2775. * acconfig.h, macros/curses.m4, src/xcurses.c, src/tty.h,
  2776. configure.in:
  2777. NO_COLOR_SUPPORT renamed to NO_COLOR_CURSES
  2778. HAVE_SUNOS_CURSES and SUNOS_CURSES renamed to USE_SUNOS_CURSES
  2779. HAS_CURSES added to acconfig.h
  2780. 1998-11-24 Federico Mena Quintero <federico@nuclecu.unam.mx>
  2781. * autogen.sh: Add "-I macros" to the aclocal flags.
  2782. * mc-aclocal.m4: Renamed fp_PROG_CC_STDC to MC_HPUX_PROG_CC_STDC
  2783. so that aclocal will not complain about an obsolete macro.
  2784. * configure.in: Use MC_HPUX_PROG_CC_STDC
  2785. * ChangeLog: There was no ChangeLog here, so I added one.