ChangeLog 116 KB

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