ChangeLog 110 KB

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