ChangeLog 97 KB

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