ChangeLog 132 KB

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