ChangeLog 89 KB

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