ChangeLog.00 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  1. 2000-12-29 Derek Price <derek.price@openavenue.com>
  2. * automake.in (handle_dependencies): Switched the DEP_FILES
  3. definition to be conditional on @AMDEP@.
  4. 2001-02-03 Ville Laurikari <vlaurika@hutcs.cs.hut.fi>
  5. * depcomp (aix): New side-effect dependency tracking mode, for
  6. the C for AIX compiler.
  7. * m4/depend.m4 (AM_DEPENDENCIES): Recreate `conftest.c' and
  8. `conftest.h' for each test.
  9. 2001-02-03 Tom Tromey <tromey@redhat.com>
  10. * automake.texi (Dist): Updated to mention caveat of putting
  11. directory in EXTRA_DIST and also providing a nice example of
  12. removing the CVS dir.
  13. From Ganesan Rajagopal.
  14. * m4/depend.m4 (depcpp): Run tests in a subdir. Fixes report from
  15. Bob Proulx.
  16. * automake.in (scan_one_autoconf_file): Disable warning about
  17. AM_PROG_LIBTOOL.
  18. * automake.in (handle_configure): Don't modify variable which
  19. aliases list element. Don't push @inputs onto the dist list.
  20. Fixes colon7.test.
  21. (initialize_per_input) [dist_dirs]: New variable.
  22. (handle_dist_worker): Use global dist_dirs.
  23. (handle_configure): Set dist_dirs entries at toplevel.
  24. 2001-02-02 Gordon Sadler <gbsadler1@lcisp.com>
  25. * automake.texi (Java Support): Added index, @section.
  26. 2001-02-02 Pavel Roskin <proski@gnu.org>
  27. * automake.in (scan_autoconf_traces): Restore trace messages.
  28. * automake.in (handle_aclocal_m4): Fix stripping of the initial
  29. "./" from the dependencies of aclocal.m4.
  30. Reported by Ralf Corsepius.
  31. 2001-02-01 Pavel Roskin <proski@gnu.org>
  32. * aclocal.in: Rename "verbosity" to "verbose". Always prepend
  33. "aclocal: " to the verbose output.
  34. * automake.in: Remove all debugging messages.
  35. 2001-01-31 Akim Demaille <akim@epita.fr>
  36. * automake.in (add_depend2): Quote properly $obj and $source.
  37. 2001-01-31 Akim Demaille <akim@epita.fr>
  38. * depend2.am: Instead of replacing @PFX@ in $(@PFX@COMPILE), and
  39. then replacing `$(@PFX@COMPILE)' for the files that need some
  40. special flags, use only @COMPILE@. Similarly for @LTCOMPILE@.
  41. Try to document this file.
  42. * automake.in (add_depend2): Adjust to these changes.
  43. 2001-01-31 Akim Demaille <akim@epita.fr>
  44. * automake.in (%factored_dependencies): New.
  45. (file_contents): Use it.
  46. (handle_phony): Rename as...
  47. (handle_factored_dependencies): this.
  48. * subdirs.am: No need for convolved syntax to declare .PHONY.
  49. 2001-01-31 Akim Demaille <akim@epita.fr>
  50. * automake.in: maintainer-check fixes.
  51. 2001-01-31 Akim Demaille <akim@epita.fr>
  52. * automake.in (file_contents): Rewrite: instead of trying to parse
  53. it line by line, first swallow it completely into $CONTENTS,
  54. *then*, parse it *paragraph* by paragraph.
  55. 2001-01-30 Akim Demaille <akim@epita.fr>
  56. * automake.in (file_contents): Remove.
  57. (file_contents_with_transform): Swap the order of the arguments,
  58. and rename as...
  59. (file_contents): this.
  60. Adjust all uses.
  61. 2001-01-30 Tom Tromey <tromey@redhat.com>
  62. * automake.in (scan_one_autoconf_file): Don't mention
  63. omit_dependencies.
  64. 2001-01-29 Akim Demaille <akim@epita.fr>
  65. * automake.in (&scan_autoconf_config_files): Extract from
  66. &scan_one_autoconf_file.
  67. (&scan_one_autoconf_file): Use it.
  68. (&scan_autoconf_traces): New.
  69. ($scan_autoconf_files): Use it.
  70. 2001-01-29 Akim Demaille <akim@epita.fr>
  71. * texinfos.am, tags.am, subdirs.am, multilib.am, mans.am: Add a
  72. .PHONY target.
  73. * automake.in (handle_texinfo, handle_man_pages, handle_multilib)
  74. (handle_etags, handle_subdirs): Don't push into @phony.
  75. 2001-01-29 Akim Demaille <akim@epita.fr>
  76. * automake.in (scan_one_autoconf_file): Correctly recognize
  77. configure.ac.
  78. 2001-01-29 Akim Demaille <akim@epita.fr>
  79. * automake.in (handle_tests_dejagnu): New, extracted from...
  80. (handle_tests): here. Use `.PHONY:'.
  81. 2001-01-29 Akim Demaille <akim@epita.fr>
  82. * automake.in (handle_phony): Sort.
  83. (file_contents_with_transform): Catch `.PHONY:'.
  84. (handle_tests): Instead dumping the hard coded target check-TESTS
  85. and registering its .PHONYsm, get them from...
  86. * check.am: here, new file.
  87. 2001-01-29 Akim Demaille <akim@epita.fr>
  88. * automake.in (add_depend2): Use &transform.
  89. 2001-01-29 Akim Demaille <akim@epita.fr>
  90. * automake.in (handle_tags): Use &transform.
  91. (am_error, am_line_error, am_conf_error, read_am_file): Use
  92. directly arrays in strings, no need for &join.
  93. Require Perl 5.
  94. * Makefile.am (maintainer-check): Use grep -w when looking for
  95. words.
  96. 2001-01-29 Akim Demaille <akim@epita.fr>
  97. * automake.in (prog_error): New.
  98. Spread its use.
  99. 2001-01-29 Akim Demaille <akim@epita.fr>
  100. * automake.in (handle_single_transform_list): if (@list) { foreach
  101. (@list) ...} can be written as a simple `foreach' loop.
  102. 2001-01-29 Akim Demaille <akim@epita.fr>
  103. * automake.in (define_standard_variables): Use &transform instead
  104. of build_rx.
  105. 2001-01-29 Akim Demaille <akim@epita.fr>
  106. * automake.in (handle_texinfo): Use the new $texinfodir instead of
  107. the removed $texinfo_tex.
  108. 2001-01-29 Akim Demaille <akim@epita.fr>
  109. * automake.in (handle_libraries, handle_ltlibraries): Use
  110. &transform.
  111. 2001-01-29 Akim Demaille <akim@epita.fr>
  112. * automake.in (handle_programs) <xexe>: Remove, replaced by
  113. `exeext'.
  114. Use it, and &transform.
  115. 2001-01-29 Akim Demaille <akim@epita.fr>
  116. * automake.in (get_object_extension) <$default_includes>: New.
  117. Use it and &transform.
  118. 2001-01-28 Tom Tromey <tromey@redhat.com>
  119. * automake.in (variable_value_as_list_worker): Handle entries in
  120. %am_var_defs. Fixes listval.test.
  121. 2001-01-26 Akim Demaille <akim@epita.fr>
  122. * automake.in (handle_texinfo): Don't use $conf_pat, just
  123. $conf_dir to transform MDDIR since now &transform handles the
  124. escaping of RE special characters by itself.
  125. 2001-01-24 Akim Demaille <akim@epita.fr>
  126. * m4/depend.m4 (AM_DEPENDENCIES): Don't leave `AC_PROG_CC' etc. in
  127. clear.
  128. * m4/init.m4: Likewise.
  129. * m4/sanity.m4: s/conftestfile/conftest.file/.
  130. 2001-01-24 Tom Tromey <tromey@redhat.com>
  131. * automake.in (handle_libraries): Use $configure_ac; typo fix.
  132. * automake.in (transform): Quote substitution.
  133. 2001-01-21 Alexandre Duret-Lutz <duret_g@epita.fr>
  134. Tom Tromey <tromey@redhat.com>
  135. * automake.in (obsolete_rx): Match whole macro names, not
  136. substrings.
  137. * aclocal.in (obsolete_rx): Likewise.
  138. 2001-01-21 Tom Tromey <tromey@redhat.com>
  139. * automake.texi: Changed dir category.
  140. 2001-01-18 Akim Demaille <akim@epita.fr>
  141. * automake.in (handle_texinfo): Use &transform, and transform
  142. CONFIGURE_AC.
  143. Reported by Lars Hecking, and diagnosed by Raja R Harinath.
  144. 2001-01-16 Akim Demaille <akim@epita.fr>
  145. Let Automake support `configure.ac'.
  146. * automake.in: In the comments, prefer `configure.ac' to
  147. `configure.in'.
  148. When using &am_conf_error, don't repeat `in configure.in', since
  149. the function already reports it.
  150. When referring to `configure.in' use `$configure_ac' instead.
  151. (configure_ac): New global variable.
  152. (scan_configure, scan_one_configure_file): Rename as...
  153. (scan_autoconf_files, scan_one_autoconf_file): this.
  154. (scan_autoconf_files): Compute $configure_ac.
  155. (transform): New function.
  156. (handle_configure): Use it to transform CONFIGURE_AC in
  157. `remake.am' and in `remake-hdr.am'.
  158. (common_files): Also consider `configure.ac'.
  159. Use consistently single quotes.
  160. * aclocal.in (configure_ac): New variable.
  161. Use it.
  162. * texi-vers.am: Depend on CONFIGURE_AC not configure.in.
  163. * remake.am: Likewise.
  164. * remake-hdr.am: Likewise.
  165. 2001-01-16 Akim Demaille <akim@epita.fr>
  166. * m4/multi.m4: Remove the hairy useless quotation of `$'.
  167. Simplify `ifelse([$2],,,[$2])' into... `$2'!
  168. * m4/minuso.m4: Don't use changequote!
  169. * m4/cond.m4: Fix quotation.
  170. * m4/sanity.m4: Follow the Autoconf coding style.
  171. * m4/missing.m4 (AM_MISSING_INSTALL_SH): Use a for loop.
  172. * m4/depend.m4 (AM_DEPENDENCIES): Fix quotation issues.
  173. Use AC_CACHE_CHECK.
  174. 2001-01-15 Tom Tromey <tromey@redhat.com>
  175. * automake.in (handle_single_transform_list): Don't print rule
  176. here when source is in subdir and object is not. Fixes
  177. subobj4.test.
  178. * automake.in (handle_single_transform_list): Correctly compute
  179. $nonansi_obj. Fixes cxxansi.test.
  180. * automake.texi (Man pages): Updated to account for man1_MANS,
  181. etc.
  182. 2001-01-13 Steve Robbins <smr@debian.org>
  183. Tom Tromey <tromey@redhat.com>
  184. * aclocal.in (scan_configure): Don't recognize macro assignments
  185. or AC_SUBSTs.
  186. (add_file): Likewise.
  187. 2001-01-13 Kevin Ryde <user42@zip.com.au>
  188. * automake.in (handle_ltlibraries): Omit -rpath from
  189. check_LTLIBRARIES, as per noinst_LTLIBRARIES.
  190. 2001-01-11 Tom Tromey <tromey@redhat.com>
  191. * depcomp (case gcc3): Use -MD, not -M.
  192. 2001-01-10 Tom Tromey <tromey@redhat.com>
  193. * depcomp: Handle gcc 3.
  194. 2000-12-23 Tom Tromey <tromey@redhat.com>
  195. * configure.in: Updated to 1.4c for cvs.
  196. * configure.in: Updated to 1.4b and released.
  197. * config.guess, config.sub, texinfo.tex: New versions.
  198. * automake.in (handle_dist_worker): Always define DIST_SUBDIRS.
  199. Re-fixes pr87.test.
  200. * subdirs.am (maintainer-clean-recursive): Use DIST_SUBDIRS for
  201. distclean and maintainer-clean.
  202. * automake.texi (Top level): Document use of DIST_SUBDIRS.
  203. From Rusty Ballinger:
  204. * automake.in (handle_java): Don't skip `noinst' prefix.
  205. * automake.texi (Invoking aclocal): Mention ## comments.
  206. 2000-12-22 Tom Tromey <tromey@redhat.com>
  207. From Raja R Harinath:
  208. * automake.in (libtoolize_sometimes): New global.
  209. (initialize_global_constants): Added libtoolize_sometimes to
  210. common_files.
  211. * m4/depend.m4 (AM_SET_DEPDIR): Ignore errors when running rmdir.
  212. * m4/depend.m4 (AM_SET_DEPDIR): Remove .deps directory when done.
  213. 2000-12-21 Tom Tromey <tromey@redhat.com>
  214. * automake.texi (Tags): Document GTAGS target.
  215. * tags.am (GTAGS): New target.
  216. * automake.in (libtoolize_files): Removed ltconfig.
  217. (initialize_global_constants): Added ltconfig to common_files.
  218. 2000-12-21 Kevin Ryde <user42@zip.com.au>
  219. * automake.in (handle_footer): Generate .SUFFIXES target when user
  220. defines suffixes but automake does not.
  221. 2000-12-20 Marc Espie <espie@openbsd.org>
  222. * automake.in (handle_texinfo): Make path of $vtexi explicit in
  223. dependency.
  224. * texi-vers.am: Likewise.
  225. 2000-12-20 Tom Tromey <tromey@redhat.com>
  226. From Kevin Ryde:
  227. * automake.in (handle_footer): Always push user suffixes at the
  228. start of .SUFFIXES:.
  229. * automake.texi (Suffixes): Updated to reflect new suffix
  230. handling.
  231. 2000-12-18 Tom Tromey <tromey@redhat.com>
  232. * automake.in (handle_built_sources): Removed.
  233. (handle_merge_targets): Handle BUILT_SOURCES.
  234. * automake.texi (Sources): Updated documentation of
  235. BUILT_SOURCES.
  236. 2000-12-17 Tom Tromey <tromey@redhat.com>
  237. * m4/protos.m4: Always do header checks.
  238. * automake.in (handle_ltlibraries): Check for LDFLAGS variables
  239. before using values.
  240. * automake.in (handle_ltlibraries): Allow _LDFLAGS to be
  241. conditionally defined. Fixes PR automake/77 and ldflags.test.
  242. 2000-11-25 Tom Tromey <tromey@cygnus.com>
  243. * automake.in (file_contents_with_transform): Added file name and
  244. line number to error report.
  245. (MACRO_PATTERN, BOGUS_MACRO_PATTERN): Leading spaces are ok.
  246. 2000-11-23 Pavel Roskin <proski@gnu.org>
  247. * m4/regex.m4 (AM_WITH_REGEX): This macro was broken because
  248. of M4 underquoting.
  249. * m4/ccstdc.m4 (AC_PROG_CC_STDC): Added some M4 quotes.
  250. * m4/dmalloc.m4 (AM_WITH_DMALLOC): Likewise.
  251. * m4/lispdir.m4 (AM_PATH_LISPDIR): Likewise.
  252. * m4/maintainer.m4 (AM_MAINTAINER_MODE): Likewise.
  253. * m4/multi.m4 (AM_WITH_DMALLOC): Likewise.
  254. * m4/python.m4 (AM_PATH_PYTHON): Likewise.
  255. * m4/strtod.m4 (AM_FUNC_STRTOD): Likewise.
  256. 2000-11-23 Tom Tromey <tromey@cygnus.com>
  257. * automake.in (require_file_internal): Pass $file as second
  258. argument to maybe_push_required_file. Fixes PR automake/87.
  259. 2000-11-18 Tom Tromey <tromey@cygnus.com>
  260. * m4/depend.m4 (AM_DEPENDENCIES): Redirect `$am_depcomp' stdout to
  261. /dev/null. From Paul Martinolich.
  262. 2000-11-16 Morten Eriksen <mortene@sim.no>
  263. * aclocal.in (write_aclocal): Set ``binmode'' after file has been
  264. opened, otherwise it has no effect.
  265. 2000-10-23 Morten Eriksen <mortene@sim.no>
  266. * aclocal.in (write_aclocal): Don't write aclocal.m4 with
  267. CRLFs. This circumvents a bug in Cygwin bash.
  268. * automake.in (generate_makefile): Don't write Makefile.in
  269. files with CRLFs, as it causes problems for the dependency-file
  270. extraction in AM_OUTPUT_DEPENDENCY_COMMANDS.
  271. 2000-10-19 Alex Hornby <alex@anvil.co.uk>
  272. * automake.in (handle_merge_targets): Allow parallel install
  273. with forced relink.
  274. 2000-10-19 Akim Demaille <akim@epita.fr>
  275. * subdir4.test (depcomp): Don't create it, defs does.
  276. 2000-10-17 Pavel Roskin <proski@gnu.org>
  277. * automake.in (handle_aclocal_m4): exclude aclocal.m4 and
  278. acinclude.m4 from the dependencies of aclocal.m4 to avoid
  279. circular and duplicated dependencies. Strip "./" from the
  280. dependencies.
  281. 2000-10-17 Lars J. Aas <larsa@sim.no>
  282. * aclocal.in (write_aclocal): Set up aclocal.m4 header with
  283. normal comments (#) instead of m4 dnl-type comments.
  284. 2000-10-17 Alex Hornby <alex@anvil.com>
  285. * depcomp: Altered sed clause to strip of inclusion depth
  286. numbers generated by cpp. Also output in gcc style.
  287. 2000-10-16 Morten Eriksen <mortene@sim.no>
  288. * depcomp (msvisualcpp): New dependency tracking mode, for
  289. Microsoft Visual C++.
  290. 2000-10-16 Morten Eriksen <mortene@sim.no>
  291. * depcomp: Fix a bug in SGI dependency tracking mode with source
  292. files which do not dependend on any other source files.
  293. 2000-10-16 Rodney Brown <RodneyBrown@mynd.com>
  294. * aclocal.in, aclocal.m4: Standardize FSF Copyright statements.
  295. * automake.in, automake.texi: Likewise.
  296. * clean-kr.am, clean.am: Likewise.
  297. * comp-vars.am: Likewise.
  298. * compile, compile.am: Likewise.
  299. * data-clean.am: Likewise.
  300. * data.am: Likewise.
  301. * dejagnu.am: Likewise.
  302. * depcomp: Likewise.
  303. * depend.am, depend2.am: Likewise.
  304. * dist-vars.am, dist.am: Likewise.
  305. * elisp-comp: Likewise.
  306. * footer.am: Likewise.
  307. * header-vars.am, header.am: Likewise.
  308. * java-clean.am java.am: Likewise.
  309. * kr-extra.am: Likewise.
  310. * library.am: Likewise.
  311. * libs-clean.am, libs.am: Likewise.
  312. * libtool.am: Likewise.
  313. * lisp-clean.am lisp.am: Likewise.
  314. * ltlib-clean.am ltlib.am: Likewise.
  315. * ltlibrary.am: Likewise.
  316. * m4/Makefile.in: Likewise.
  317. * m4/strtod.m4: Likewise.
  318. * mans-vars.am, mans.am: Likewise.
  319. * mdate-sh: Likewise.
  320. * missing: Likewise.
  321. * multilib.am: Likewise.
  322. * program.am: Likewise.
  323. * progs-clean.am, progs.am: Likewise.
  324. * python-clean.am, python.am: Likewise.
  325. * remake-hdr.am, remake.am: Likewise.
  326. * scripts.am: Likewise.
  327. * subdirs.am: Likewise.
  328. * tags-clean.am, tags.am: Likewise.
  329. * texi-vers.am: Likewise.
  330. * texinfos.am: Likewise.
  331. * ylwrap: Likewise.
  332. 2000-10-09 Pavel Roskin <proski@gnu.org>
  333. * m4/init.m4 (AM_INIT_AUTOMAKE): Don't rely on variable
  334. assignments changing $? - it's broken in ash-0.2.
  335. * m4/missing.m4 (AM_MISSING_HAS_RUN): Likewise.
  336. * automake.in (handle_aclocal_m4): If ACLOCAL_M4_SOURCES is
  337. defined use it as the list of M4 files aclocal.m4 depends on.
  338. 2000-10-06 Alexandre Duret-Lutz <duret_g@epita.fr>
  339. * aclocal.in (add_file): Strip comments while scanning for
  340. macro dependencies.
  341. 2000-09-15 Alexandre Duret-Lutz <duret_g@epita.fr>
  342. * automake.in (initialize_global_constants): End the
  343. result of dist-bzip2 with tar.bz2, not bz2.
  344. 2000-08-30 Tom Tromey <tromey@cygnus.com>
  345. Fix for PR automake/72:
  346. * automake.in (initialize_per_input): Define `need_link'.
  347. (finish_languages): Use need_link.
  348. (handle_source_transform): Set need_link if required.
  349. 2000-08-28 Tom Tromey <tromey@cygnus.com>
  350. * automake.in (yacc, yaccxx, lex, lexxx): Set `derived-autodep'
  351. key.
  352. (register_language): Default the `derived-autodep' option.
  353. (handle_single_transform_list): Add to %dep_files if language has
  354. `derived-autodep' set. Re-fixes lex4.test.
  355. 2000-08-27 Tom Tromey <tromey@cygnus.com>
  356. * automake.in (handle_single_transform_list): Only add to
  357. %dep_files if language is found and supports automatic dependency
  358. tracking. Fixes PR automake/75.
  359. * automake.in (am_primary_prefixes): Don't set `valid' for
  360. configure variables that don't satisfy the other constraints.
  361. Fixes PR automake/68.
  362. 2000-04-14 Victor V. Vengerov <vvv@oktet.ru>
  363. Fix for PR automake/67.
  364. * automake.in (handle_multilib): remove .am suffix in fragment
  365. name passed to file_contents.
  366. * m4/multi.m4: Add missing ')' in AC_ARG_ENABLE invocation.
  367. Remove external quotes in first arg of AC_OUTPUT_COMMANDS.
  368. Remove unnecessary "rel-to-top-srcdir" before config-ml.in.
  369. 2000-08-26 Tom Tromey <tromey@cygnus.com>
  370. * subdirs.am (maintainer-clean-recursive): Always run clean rules
  371. in `.' after all subdirs. Fixes PR automake/3 and PR automake/24.
  372. * automake.in (handle_man_pages): Generate install targets for man
  373. even if man_MANS not defined. From `danpb'. Fixes PR automake/73.
  374. * m4/depend.m4 (depcpp): Use `-o conftest.o'.
  375. Fix for PR automake/74. From js pendry.
  376. 2000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
  377. * depcomp (gcc): Support DOS-style absolute file names with drive
  378. letters.
  379. 2000-08-06 Jim Meyering <meyering@lucent.com>
  380. * automake.in (handle_dependencies): Set $require_file_found{'depcomp'}
  381. if the depcomp file exists, before calling require_config_file on
  382. `depcomp'. This makes require_file_internal skip its buggy existence
  383. test that would make automake fail (with `required file `lib/depcomp'
  384. not found') when AC_CONFIG_AUX_DIR is not set.
  385. This change change does not fix the existing bug where, if `depcomp'
  386. is not present in the build directory (at the top level), automake
  387. still gives the inaccurate diagnostic about *lib*/depcomp rather
  388. than ./depcomp.
  389. 2000-08-05 Jim Meyering <meyering@lucent.com>
  390. * m4/header.m4 (AM_CONFIG_HEADER): Fix typo in last change:
  391. add missing closing bracket and closing parenthesis.
  392. Don't quote the first argument to AC_OUTPUT_COMMANDS.
  393. Backslash-escape the backquotes and `$' in `am_indx'-incrementing stmt.
  394. 2000-08-04 Tom Tromey <tromey@cygnus.com>
  395. Idea from Nicolas Thiery:
  396. * automake.texi (Tests): Document DEJATOOL as a list.
  397. * dejagnu.am (RUNTESTDEFAULTFLAGS): Use $$tool, not $(DEJATOOL).
  398. (check-DEJAGNU): Run runtest in a loop.
  399. 2000-08-02 Akim Demaille <akim@epita.fr>
  400. * m4: Quote properly the name of the macros being defined.
  401. Use `#' instead of `dnl' where appropriate.
  402. * m4/header.m4 (AM_CONFIG_HEADER): Get rid of changequote, just
  403. quote.
  404. Don't quote passive characters.
  405. Pull the AC_PREREQ outside the macro.
  406. * m4/init.m4: Pull the AC_PREREQ outside the macro.
  407. 2000-07-28 Tom Tromey <tromey@cygnus.com>
  408. * lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR).
  409. From Bruno Haible.
  410. 2000-07-13 Kevin Ryde <user42@zip.com.au>
  411. * automake.in (am_install_var): Apply the $(EXEEXT) hack to
  412. EXTRA_PROGRAMS as well as other _PROGRAMS.
  413. 2000-07-02 Jim Meyering <meyering@lucent.com>
  414. * automake.in (scan_one_configure_file): Recognize AC_LIBOBJ.
  415. 2000-06-19 Paolo Bonzini <bonzini@gnu.org>
  416. * texi-vers.am: define UPDATED-MONTH variable (for an example, see
  417. GNU make's manual)
  418. 2000-06-02 Morten Eriksen <mortene@sim.no>
  419. * depcomp: workaround for problem with SGI IRIX sed (it can only
  420. handle lines of up to 8192 characters, the rest of the line will
  421. be mangled).
  422. 2000-05-31 Morten Eriksen <mortene@sim.no>
  423. * depcomp: tell SGI MIPSpro compilers to generate dependencies
  424. through the pre-processor (only CVS libtool has the -Wc option
  425. yet).
  426. 2000-05-15 Brendan O'Dea <bod@compusol.com.au>
  427. * missing: Add support for `help2man'.
  428. 2000-05-11 Tom Tromey <tromey@cygnus.com>
  429. * automake.in (handle_tests): Work correctly if TESTS is empty;
  430. print nothing if it is. From Kevin Ryde.
  431. 2000-05-08 Tom Tromey <tromey@cygnus.com>
  432. * automake.texi (Texinfo): Mention vers*.texi.
  433. 2000-05-04 Akim Demaille <akim@epita.fr>
  434. AM_INIT_AUTOMAKE is no longer optional, so don't look for
  435. `VERSION=' and `PACKAGE='.
  436. * automake.in (seen_package, seen_version): Remove initializations of
  437. unnecessary variables.
  438. (scan_one_configure_file): Don't set them.
  439. (scan_configure): Don't use them.
  440. 2000-05-01 Akim Demaille <akim@epita.fr>
  441. * m4/init.m4 (AC_PROVIDE_IFELSE): If it is not defined, do it.
  442. (AM_INIT_AUTOMAKE): Update the writing conventions.
  443. Quote the arguments properly.
  444. Add a few missing `dnl'.
  445. Use AC_PROVIDE_IFELSE.
  446. 2000-04-26 Jim Meyering <meyering@lucent.com>
  447. * automake.in (scan_one_configure_file): Handle the AC_CONFIG_FILES
  448. macro. Based on a patch from Harlan Stenn.
  449. 2000-04-13 Akim Demaille <akim@epita.fr>
  450. * compile: Remove unnecessary double quotes in assignments.
  451. 2000-04-13 Akim Demaille <demaille@epita.fr>
  452. * automake.in (scan_one_configure_file): Also recognize
  453. AC_CONFIG_HEADERS.
  454. Remove trailing blanks.
  455. 2000-04-05 Tom Tromey <tromey@cygnus.com>
  456. * header-vars.am (DESTDIR): Commented out definition.
  457. * automake.in (require_file_internal): Pass --copy to libtoolize
  458. if automake was run with `--copy'.
  459. 2000-03-22 Tom Tromey <tromey@cygnus.com>
  460. * automake.texi (Uniform): Fix definition of pkglibdir.
  461. From thi <ttn@revel.glug.org>.
  462. 2000-03-19 Tom Tromey <tromey@cygnus.com>
  463. * aclocal.in (parse_arguments): Copyright 2000.
  464. (write_aclocal): Likewise.
  465. * automake.in (parse_arguments): Copyright 2000.
  466. (initialize_global_constants): Likewise.
  467. * automake.in (generate_makefile): Call handle_dist after
  468. handle_dependencies and handle_tests. Fixes subobj3.test and
  469. pr19.test regressions.
  470. 2000-03-19 Gordon Matzigkeit <gord@fig.org>
  471. * depend2.am (@EXT@.o): Look for the source file in srcdir as well
  472. as the current directory.
  473. (@EXT@.lo): Likewise.
  474. 2000-03-19 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
  475. * automake.in (handle_data): Pass -candist instead of
  476. -defaultdist, for the compatibility.
  477. 2000-03-19 Tom Tromey <tromey@cygnus.com>
  478. Fix for test nodepcomp.test:
  479. * automake.in (require_file_internal): Use readlink on symlinks.
  480. Only unlink file if we are going to try to add it again.
  481. (handle_dependencies): Require `depcomp' here.
  482. (scan_configure): Don't require `depcomp'.
  483. 2000-03-16 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
  484. * automake.in (handle_configure): Remove $(BUILT_SOURCES) from
  485. the rule to remake Makefile, whether $use_dependencies is true
  486. or not. This was a historical one and doesn't make sense any
  487. longer.
  488. 2000-03-19 Tom Tromey <tromey@cygnus.com>
  489. More for PR automake/38:
  490. * automake.texi (Invoking Automake): Document --force-missing.
  491. * automake.in (force_missing): New global.
  492. (parse_arguments): Recognize --force-missing.
  493. (initialize_global_constants): Document --force-missing.
  494. (require_file_internal): Handle --force-missing.
  495. Fix for PR automake/38:
  496. * automake.in (require_file_internal): Check for and handle
  497. dangling symlinks. Fixes symlink2.test.
  498. Fix for PR automake/45:
  499. * automake.texi (configure): Mention requirement to run
  500. AM_INIT_AUTOMAKE.
  501. (Requirements): Removed most text.
  502. * automake.in (seen_init_automake): New global.
  503. (scan_configure): Error if AM_INIT_AUTOMAKE not seen.
  504. (scan_one_configure_file): Don't support AM_INIT_GUILE_MODULE.
  505. Set seen_init_automake if needed.
  506. Fix for PR automake/41:
  507. * automake.in (require_file_found): New global.
  508. (require_file_internal): Set require_file_found entry.
  509. (handle_texinfo): Require file any number of times.
  510. * automake.in (handle_dist_worker): Exit if `cp' fails. Fixes
  511. install2.test.
  512. * tags.am: Don't reference $$here. Report from Sven Verdoolaege.
  513. 2000-03-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
  514. * m4/missing.m4: Print the backtick in a way that won't cause
  515. autoconf CVS to emit any warnings.
  516. 2000-03-01 Jim Meyering <meyering@lucent.com>
  517. * automake.in (handle_dist_worker) [generating rules for distdir]:
  518. Don't use `ln' (which was just a space optimization anyway) to
  519. populate $(distdir). Otherwise, the dist rules that change
  520. permissions would end up affecting the master sources.
  521. * texinfos.am (dist-info): Likewise.
  522. 2000-02-13 Jim Meyering <meyering@lucent.com>
  523. * automake.in (generate_makefile): Detect write/close failure.
  524. 2000-02-02 Assar Westerlund <assar@sics.se>
  525. * automake.in (handle_single_transform_list): do not use $< which
  526. is not handled by all non-GNU makes. Instead do explicit sh code
  527. testing for the file in this directory and srcdir. Based on a
  528. suggestion by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
  529. 2000-01-12 Tom Tromey <tromey@cygnus.com>
  530. * m4/lispdir.m4: Added --with-lispdir argument processing.
  531. From Kevin Dalley.
  532. 2000-01-06 Tom Tromey <tromey@cygnus.com>
  533. * automake.in (handle_configure): Don't check for
  534. AC_PROG_MAKE_SET.
  535. (scan_configure): Check for AC_PROG_MAKE_SET.
  536. * header-vars.am (@SET_MAKE@): Added.
  537. * subdirs.am (@SET_MAKE@): Removed. Report from Motoyuki
  538. Kasahara.
  539. 1999-12-19 Tom Tromey <tromey@cygnus.com>
  540. * automake.in (handle_dist_worker): Expand DIST_COMMON under all
  541. conditions.
  542. (require_file_internal): Corrected arguments to second invocation
  543. of maybe_push_required_file.
  544. Fix for PR automake/9:
  545. * automake.in (make_dirs, make_dirs_set): New globals.
  546. (is_make_dir): New function.
  547. (handle_configure): Use it.
  548. (require_file_internal): Push file if there is no Makefile in its
  549. directory.
  550. (initialize_per_input): Initialize handle_dist_run.
  551. (push_dist_common): Inspect handle_dist_run.
  552. (handle_dist): Set handle_dist_run. Push items from
  553. configure_dist_common onto dist_common if appropriate.
  554. (configure_dist_common): New global.
  555. (scan_configure): Set it.
  556. (maybe_push_required_file): New function.
  557. (require_file_internal): Use it.
  558. * automake.in (handle_dist_worker): Scan DIST_COMMON to see if
  559. more subdirs are defined. From Axel Belinfante. Fixes
  560. PR automake/2.
  561. 1999-12-18 Tom Tromey <tromey@cygnus.com>
  562. Partial fix for PR automake/40:
  563. * lisp.am (install-@DIR@LISP): Handle nobase_ case.
  564. (uninstall-@DIR@LISP): Likewise.
  565. * header.am (install-@DIR@HEADERS): Handle nobase_ case.
  566. (uninstall-@DIR@HEADERS): Likewise.
  567. * data.am (install-@DIR@DATA): Handle nobase_ case.
  568. (uninstall-@DIR@DATA): Likewise.
  569. * automake.in (am_primary_prefixes): Recognize `nobase_' prefix.
  570. (am_install_var): Recognize and handle `nobase_' prefix.
  571. 1999-12-17 Tom Tromey <tromey@cygnus.com>
  572. * automake.in (get_object_extension): Added space before `-I.'.
  573. Report from Ralf Corsepius.
  574. 1999-12-15 Tom Tromey <tromey@cygnus.com>
  575. * aclocal.in: Don't pass $acdir to scan_m4_files.
  576. (parse_arguments): Push $acdir on end of dirlist.
  577. (scan_file): Don't warn if duplicate macro seen.
  578. 1999-12-13 Tom Tromey <tromey@cygnus.com>
  579. Fix for PR automake/30 and PR automake/23. Fixes test
  580. suffix3.test.
  581. * automake.in (initialize_per_input): Initialize
  582. source_suffix_pattern.
  583. (derive_suffix): New function.
  584. (handle_single_transform_list): Call it.
  585. * automake.in (add_depend2): Handle the no-dependency-tracking
  586. case. Fixes test suffix2.test.
  587. * depcomp (tmpdepfile): [case sgi] Added missing `fi'.
  588. * automake.in (get_object_extension): Fixed quoting on
  589. -I$(srcdir).
  590. * depend2.am: Removed erroneous comment.
  591. * automake.texi (Program variables): Document nostdinc.
  592. (Options): Likewise.
  593. * automake.in (get_object_extension): Respect nostdinc option.
  594. (handle_options): Recognize nostdinc.
  595. * comp-vars.am (DEFS): Use @DEFAULT_INCLUDES@ as sole
  596. substitution.
  597. * automake.in (read_am_file): Allow conditional includes. Fixes
  598. test condincl.test.
  599. * depcomp: Handle case on SGI when libtool is `yes'.
  600. * depend2.am (@EXT@.o): Set libtool.
  601. (@EXT@.lo): Likewise.
  602. (@EXT@.obj): Likewise.
  603. * depcomp: Unify dashmstdout and dashXmstdout cases. Move hp case
  604. after gcc case.
  605. 1999-12-13 Pavel Roskin <pavel_roskin@geocities.com>
  606. * automake.in (add_depend2): substitute $rule in the rules
  607. for individual files. Fixes test specflags5.test.
  608. 1999-12-12 Tom Tromey <tromey@cygnus.com>
  609. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Run mkinstalldirs
  610. to create directories. Fixes test subobj3.test.
  611. 1999-12-10 Tom Tromey <tromey@cygnus.com>
  612. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Don't print
  613. message when creating .deps files.
  614. * automake.in (initialize_global_constants): If unreadable by
  615. owner, make it readable by owner regardless of number of links.
  616. Fixes more of install2.test.
  617. * missing: Try to see if gnutar or gtar exist before invoking
  618. them.
  619. * m4/missing.m4 (AM_MISSING_INSTALL_SH): Remove ${SHELL} from
  620. install_sh value. Look for install-sh and install.sh in a
  621. somewhat more sensible way. Fixes test install2.test. Partially
  622. from Jim Meyering.
  623. 1999-12-09 Pavel Roskin <pavel_roskin@geocities.com>
  624. * m4/missing.m4: remove redundant backquote
  625. 1999-11-23 Tom Tromey <tromey@cygnus.com>
  626. * automake.in (initialize_global_constants): Use `bzip2 -9', not
  627. `bzip --best' Report from Jim Meyering.
  628. 1999-11-22 Tom Tromey <tromey@cygnus.com>
  629. * m4/missing.m4 (AM_MISSING_INSTALL_SH): Don't take argument.
  630. * m4/init.m4 (AM_INIT_AUTOMAKE): Don't pass argument to
  631. AM_MISSING_INSTALL_SH.
  632. * automake.in (scan_one_configure_file): Reverted previous
  633. change.
  634. * automake.in (scan_one_configure_file): Define `install_sh'
  635. configure variable when AM_INIT_AUTOMAKE seen. Report from Jim
  636. Meyering.
  637. * automake.in (handle_single_transform_list): Generate explicit
  638. rule for subdir objects. Fixes new addition to subobj.test.
  639. * automake.in (handle_lib_objects_cond): Allow LIBOBJS to be
  640. defined by AC_SUBST. Fixes ltlibobjs.test.
  641. Fix for sourcesub.test:
  642. * automake.in (handle_single_transform_list): Added `var'
  643. argument. If config sub found, give error.
  644. (handle_source_transform): Updated for new
  645. handle_source_transform.
  646. * py-compile: New file.
  647. * m4/Makefile.am (m4data_DATA): Added python.m4.
  648. * m4/python.m4: New file.
  649. * automake.texi (Uniform): Mention PYTHON.
  650. (Python): New node.
  651. * Makefile.am (amfiles): Added python.am, python-clean.am.
  652. (dist_script_DATA): Added py-compile.
  653. * python.am: New file.
  654. * python-clean.am: New file.
  655. * automake.in (seen_pythondir): New global.
  656. (generate_makefile): Call handle_python.
  657. (handle_python): New function.
  658. (scan_one_configure_file): Set seen_pythondir if AM_PATH_PYTHON
  659. seen.
  660. (am_install_var): Special-case PYTHON like JAVA.
  661. (scan_configure): Check for py-compile.
  662. (initialize_global_constants): Added py-compile to @common_files.
  663. * ltlib.am (install-@DIR@LTLIBRARIES): Added missing space.
  664. 1999-11-21 Tom Tromey <tromey@cygnus.com>
  665. * automake.in (finish_languages): Only generate suffix rule when
  666. not doing dependency tracking.
  667. * m4/init.m4 (AM_INIT_AUTOMAKE): Use AM_MISSING_INSTALL_SH.
  668. * m4/missing.m4 (AM_MISSING_INSTALL_SH): New macro.
  669. * depend2.am: Use @SOURCE@, @OBJ@, @LTOBJ@, @OBJOBJ@, and @BASE@.
  670. Always use `-o'.
  671. 1999-11-19 Tom Tromey <tromey@cygnus.com>
  672. * dist.am: Set `CDPATH=:' to avoid problems. Merged from
  673. Alexandre's change on branch.
  674. 1999-10-02 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
  675. * Makefile.am (maintainer-check): Look for occurrences of ``cd'
  676. without `CDPATH'.
  677. * dejagnu.am: Set CDPATH before cd.
  678. * Makefile.in: Rebuilt.
  679. * automake.in (handle_single_transform_list): Change `\1' for `$1'
  680. in `s///' replacement.
  681. * automake.in (handle_dist): Set CDPATH before cd.
  682. * dejagnu.am (check-DEJAGNU): Likewise.
  683. * texinfos.am (install-info-am, dist-info): Likewise.
  684. * m4/init.m4 (AM_INIT_AUTOMAKE): Likewise.
  685. * m4/missing.m4 (AM_MISSING_HAS_RUN): Likewise.
  686. * aclocal.m4, configure, Makefile.in: Rebuilt.
  687. * AUTHORS: Added myself.
  688. 1999-09-14 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
  689. * m4/missing.m4: Support relative srcdir and ac_aux_dir.
  690. Reported by Tim Wilkinson <tim@transvirtual.com>
  691. * aclocal.m4, configure: Rebuilt.
  692. 1999-08-17 Alexandre Oliva <oliva@dcc.unicamp.br>
  693. * m4/lex.m4 (AM_PROG_LEX): Require AM_MISSING_HAS_RUN and, if no
  694. LEX program is found, use `${am_missing_run}flex'.
  695. 1999-08-16 Alexandre Oliva <oliva@dcc.unicamp.br>
  696. * automake.in (handle_single_transform_list): Replace `$(OBJEXT)'
  697. with `o' in depfile.
  698. * automake.in (handle_lib_objects_cond): Remove second dot from
  699. dependency file names.
  700. * depend2.am (OBJEXT@EXT@.obj): Dependency file should be .Po,
  701. regardless of OBJEXT.
  702. * automake.in (handle_dependencies): Add blank line after depend2.
  703. (handle_dependencies): Start DEP_FILES with `@AMDEP@'. Output
  704. blank line before `include's, not after them.
  705. (scan_one_configure_file): Do not special-case `DEP_' any more.
  706. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Run for loop only
  707. if AMDEP is empty.
  708. * aclocal.m4, configure: Rebuilt.
  709. * m4/depend.m4 (AMDEPBACKSLASH): Define.
  710. * depend2.am (@EXT@.o, @EXT@.lo, @EXT@.obj): Use AMDEPBACKSLASH.
  711. * automake.in (handle_dependencies): Generate `include's for
  712. dependency files after `@AMDEP@'.
  713. * m4/missing.m4: Use eval, instead of a sub-shell, to test for
  714. --run support in the missing script, since SHELL is not exported.
  715. Reported by job bogan <job@piquin.uchicago.edu>
  716. * aclocal.m4, configure: Rebuilt.
  717. 1999-08-15 Alexandre Oliva <oliva@dcc.unicamp.br>
  718. * aclocal.m4, configure: Rebuilt with itself.
  719. * Makefile.in, m4/Makefile.in, tests/Makefile.in: Likewise.
  720. * m4/missing.m4 (AM_MISSING_PROG): Remove DIRECTORY argument.
  721. Require AM_MISSING_HAS_RUN. Use am_missing_run, defined by...
  722. (AM_MISSING_HAS_RUN): New macro.
  723. * m4/init.m4: Remove missing_dir from calls to AM_MISSING_PROG.
  724. * automake.texi (Requirements): Likewise.
  725. * version.texi, stamp-vti: Rebuilt.
  726. 1999-07-28 Tom Tromey <tromey@cygnus.com>
  727. * depcomp: Handle the `hp' mode.
  728. 1999-07-06 Tom Tromey <tromey@cygnus.com>
  729. * depcomp: Work around HP-UX 10.20 sed bug.
  730. 1999-07-05 Tom Tromey <tromey@cygnus.com>
  731. * automake.in (handle_dependencies): Generate a separate include
  732. for each dep file. Report from Alexandre Oliva.
  733. * depend.am: Don't include DEP_FILES.
  734. 1999-06-01 Alexandre Oliva <oliva@dcc.unicamp.br>
  735. * depend.am: Add @AMDEP@ before `include', so that dependency
  736. tracking can be disabled.
  737. * depend2.am: Ditto, before all lines related with dependency
  738. tracking.
  739. * m4/depend.m4 (AM_DEP_TRACK): New macro, that documents
  740. --enable/disable-dependency-tracking and sets AMDEP accordingly.
  741. It is implicitly disabled if depcomp is missing.
  742. (AM_DEPENDENCIES): Disable dependency tracking unless it can be
  743. generated by side-effect.
  744. * m4/init.m4 (AM_INIT_AUTOMAKE): Require AM_DEP_TRACK.
  745. * automake.in (handle_dependencies): Add @AMDEP@ before the value
  746. of DEP_FILES.
  747. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Handle DEP_FILES
  748. starting with `#'.
  749. * depcomp: Support -xM for dependency generation, for Sun CC.
  750. Reported by Alex Hornby <alex@anvil.co.uk>
  751. * m4/depend.m4: Extract the list of supported dependency-tracking
  752. mechanisms from the depcomp script and use it to test each one.
  753. * THANKS: Added Alex Hornby.
  754. * depend2.am: Move $(depcomp) to the line of $(...DEPMODE), so as
  755. to leave $(...COMPILE) in a line by itself.
  756. * THANKS: Added Miles Bader.
  757. 1999-06-01 Miles Bader <miles@ccs.mt.nec.co.jp>
  758. * m4/depend.m4 (AM_DEPENDENCIES): Add check for `makedepend'.
  759. Fix `dashmstdout' to ignore non-dependency-generating uses of the
  760. -M flag.
  761. * depcomp (makedepend): New dependency-generating method.
  762. 1999-06-01 Alexandre Oliva <oliva@dcc.unicamp.br>
  763. * missing: If given `--run' as first argument, try to run the
  764. given program before falling back to the ``emulated'' behavior.
  765. Add support for `tar'.
  766. * automake.in: Use new `tar' support for `dist'.
  767. * m4/missing.m4 (AM_MISSING_PROG): Instead of checking for the
  768. program, prepend `missing --run' to the given program name.
  769. * m4/init.m4: Remove AMTAR-related stuff.
  770. * NEWS: Updated.
  771. * m4/depout.m4: Instead of `find'ing Makefiles, just iterate on
  772. CONFIG_FILES. Do not use temporary variable for list of
  773. dependency files, it breaks Cygwin.
  774. 1999-04-27 Alexandre Oliva <oliva@dcc.unicamp.br>
  775. * depcomp (gcc): Imported comments removed from depend2.am, so
  776. that we don't lose them.
  777. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Avoid sed s/$U//
  778. when not using ansi2knr.
  779. 1999-04-26 Alexandre Oliva <oliva@dcc.unicamp.br>
  780. * m4/depend.m4 (AM_DEPENDENCIES): Test for depcc -E support.
  781. * depcomp (cpp): Extract dependencies from `# nnn "..."' lines.
  782. 1999-04-25 Alexandre Oliva <oliva@dcc.unicamp.br>
  783. * m4/depend.m4 (AM_DEPENDENCIES): Add a definition to conftest.h,
  784. so as not to compile an empty source; some compilers fail on this.
  785. Redirect stderr of depcc to /dev/null. Test for -M with -o,
  786. because some compilers will output the rules to the output file.
  787. * depcomp (dashmstdout): Add --silent before --mode=compile, so
  788. that we don't get libtool output mixed up with make rules.
  789. * m4/init.m4 (AM_INIT_AUTOMAKE): Require AM_SET_DEPDIR.
  790. * depend2.am: Set tmpdepfile too, to speed up depcomp. Always use
  791. -o for libtool, otherwise it may try to deduce the object name
  792. from the dependency-generation flag.
  793. * depcomp: Assume depdir exists. Preserve depfile on unsuccessful
  794. compilations.
  795. * libtool.am: Do not emit .c.lo here...
  796. * depend2.am: ... emit .*.lo here, only when using libtool.
  797. * automake.in (get_object_extension): No more @MINUSO@ here.
  798. (handle_single_transform_list): Set $depfile from $object.
  799. (handle_dependencies): Emit depend2.am for all used languages,
  800. regardless of $use_dependencies; the setting of depcomp makes the
  801. difference.
  802. (lang_cxx_finish): Do not emit compilation rules.
  803. (lang_objc_finish): Likewise.
  804. (lang_java_finish): Likewise.
  805. 1999-04-21 Tom Tromey <tromey@cygnus.com>
  806. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Correctly
  807. interpolate DEPDIR in DEP_FILES expansion.
  808. 1999-04-20 Lee Iverson <leei@Canada.AI.SRI.COM>
  809. * m4/depend.m4 (AM_DEPENDENCIES): Fix up test for SGI-style
  810. dependency updating.
  811. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Fix sed script to
  812. handle multi-line dependency lists.
  813. 1999-11-12 Tom Tromey <tromey@cygnus.com>
  814. Fix for PR automake/14:
  815. * aclocal.in: Added `ud_GNU_GETTEXT'. Updated to mention
  816. AC_CYGWIN.
  817. * automake.in: Mention AC_CYGWIN, not AC_CYGWIN32.
  818. * m4/multi.m4: Added missing `]'. From Akim Demaille.
  819. * Makefile.am (path-check): Make sure distdir is writeable before
  820. removing it.
  821. * automake.in (handle_texinfo): Added `cm' and `ov' extensions.
  822. (handle_dist_worker): Make sure distdir is writeable before
  823. removing it.
  824. (initialize_global_constants [$dist_trailer]): Make sure distdir
  825. is writeable before removing it.
  826. * dist.am (distcheck): Make the new source tree read-only before
  827. compiling. Idea from Karl Berry.
  828. * automake.texi (Gnits): Allow COPYING.LIB again.
  829. * automake.in (check_gnits_standards): Allow COPYING.LIB again.
  830. 1999-11-11 Jim Meyering <meyering@ascend.com>
  831. * dist.am (distcheck): Remove $(distdir).tar.gz before counting
  832. files.
  833. 1999-11-09 Tom Tromey <tromey@cygnus.com>
  834. * automake.in (handle_dist): Typo fix. From Jim Meyering.
  835. 1999-11-09 Jim Meyering <meyering@ascend.com>
  836. * automake.in (handle_dist): Remove the DISTHOOK and GETTEXT
  837. markers, no matter what.
  838. 1999-11-08 Tom Tromey <tromey@cygnus.com>
  839. * dist.am (distcheck): Put `&&' at the start of the distcheck-hook
  840. line.
  841. * automake.in (handle_dist_worker): Use `cp -R', not `cp -r'.
  842. From Jim Meyering. Also, don't mention file name in `cp'
  843. destination. From Olly Betts.
  844. 1999-10-27 Miodrag Vallat <miodrag@ifrance.com>
  845. * texinfos.am (uninstall-info): Use installed info file, not one
  846. from srcdir or builddir.
  847. 1999-11-07 Tom Tromey <tromey@cygnus.com>
  848. * clean.am (maintainer-clean-generic): Remove Makefile.in. From
  849. Jeff Bailey
  850. Fix for PR automake/18:
  851. * automake.in (handle_dist): Add contents of dist.am to the output
  852. rules.
  853. * Makefile.am (amfiles): Added dist.am.
  854. * dist.am: New file.
  855. (distcheck): Added uninstall and distclean checks.
  856. * automake.in (PATH_PATTERN): Added `-' as allowable character.
  857. Fixes PR automake/20. From Matthew D. Langston.
  858. * automake.in (SUFFIX_RULE_PATTERN): Add `0-9' as characters
  859. allowed in suffixes. Fixes PR 22. From Matthias Clasen.
  860. 1999-10-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
  861. * m4/lispdir.m4: -batch must come before -q.
  862. * elisp-comp: Likewise.
  863. Reported by Lars Hecking <lhecking@nmrc.ucc.ie>
  864. * THANKS: Added Lars.
  865. 1999-08-15 Tom Tromey <tromey@cygnus.com>
  866. * automake.in (get_object_extension): Fixed quoting bug. Fixes
  867. ansi4.test.
  868. 1999-07-27 Tom Tromey <tromey@cygnus.com>
  869. * config.guess, config.sub: New versions from autoconf.
  870. 1999-07-13 Tom Tromey <tromey@cygnus.com>
  871. Work around losing `awk'. Report from Harlan Stenn.
  872. * m4/init.m4 (AM_INIT_AUTOMAKE): Require AC_PROG_AWK.
  873. * tags.am (ID, TAGS): Use $(AWK), not `awk'.
  874. * automake.in (handle_source_transform): Mark prefix as seen if
  875. corresponding _SOURCES variable exists. Fixes empty2.test.
  876. 1999-06-25 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
  877. * configure.in (ACLOCAL): Do not prepend the variable SRCDIR to
  878. m4.
  879. (AUTOMAKE): Set --amdir to current directory.
  880. 1999-06-20 Tom Tromey <tromey@cygnus.com>
  881. * Makefile.am (TAGS_FILES): New macro.
  882. (ETAGS_ARGS): Moved files into TAGS_FILES.
  883. (TAGS_DEPENDENCIES): Likewise.
  884. (ETAGS_ARGS): Removed.
  885. (TAGS_DEPENDENCIES): Removed duplicate definition.
  886. * tags.am (ID): Handle VPATH correctly. Use TAGS_FILES. Report
  887. from Ganesan Rajagopal.
  888. (TAGS): Likewise.
  889. 1999-06-18 Thomas Tanner <tanner@ffii.org>
  890. * automake.in (handle_ltlibraries): Check for -module in LDFLAGS,
  891. too.
  892. 1999-06-20 Mark Elbrecht <snowball3@bigfoot.com>
  893. * ylwrap: Handle filenames output by the DOS version of Bison.
  894. 1999-06-20 Tom Tromey <tromey@cygnus.com>
  895. * ylwrap: Be less strict when recognizing DOS paths. From Mark
  896. Elbrecht.
  897. 1999-06-19 Tom Tromey <tromey@cygnus.com>
  898. * automake.in (handle_dist_worker): Remove redundant entries from
  899. DIST_SUBDIRS.
  900. * automake.in (handle_lib_objects_cond): Better error message when
  901. unrecognized option passed in LDADD.
  902. 1999-06-08 Alexandre Oliva <oliva@dcc.unicamp.br>
  903. * configure.in (ACLOCAL, AUTOMAKE): Use our own scripts, with
  904. appropriate --acdir and --amdir arguments.
  905. 1999-06-07 Alexandre Oliva <oliva@dcc.unicamp.br>
  906. * automake.in (dist_header): Avoid changing permissions of files
  907. in the source tree, trying a complex `find/chmod' command before
  908. falling back to plain chmod.
  909. (handle_dist_worker): Do not create directories with mode 777, the
  910. find above will take care of that.
  911. * m4/init.m4: Set install_sh for find/chmod above.
  912. * THANKS: Added Shuhei Amakawa.
  913. 1999-06-07 Shuhei Amakawa <sa264@cam.ac.uk>
  914. * mans.am: Strip dirname from given filename.
  915. 1999-06-07 Jim Meyering <meyering@ascend.com>
  916. * automake.in (handle_dist): Change emitted rules so that a failure
  917. in `$(MAKE) distcheck-hook' propagates to the outer make.
  918. 1999-05-27 Tom Tromey <tromey@cygnus.com>
  919. * automake.in (handle_single_transform_list): Replace AM_FLAG and
  920. not FLAG in compilation rule.
  921. (add_depend2): Likewise.
  922. * ltlib.am (install-@DIR@LTLIBRARIES): Pass INSTALL_STRIP_FLAG to
  923. libtool.
  924. * m4/dmalloc.m4: Updated dmalloc site information.
  925. 1999-05-19 Tom Tromey <tromey@cygnus.com>
  926. * automake.in (handle_single_transform_list): Push object name
  927. without extension onto lang_specific_files. Fixes
  928. specflags4.test.
  929. * automake.in (handle_single_transform_list): Added missing
  930. space. Fixes specflags.test.
  931. 1999-05-05 Tom Tromey <tromey@cygnus.com>
  932. * automake.in: Disabled dependency tracking for Java.
  933. 1999-05-04 Tom Tromey <tromey@cygnus.com>
  934. * library.am (@LIBRARY@): Use $(@XLIBRARY@_AR).
  935. * automake.in (handle_libraries): Recognize _AR variable.
  936. 1999-04-30 Tom Tromey <tromey@cygnus.com>
  937. * automake.in (finish_languages): Always use `-o $@' with
  938. libtool. Define ltcompile and ltlink at outermost scope in
  939. function.
  940. * libtool.am (.c.lo): Removed.
  941. * automake.in (finish_languages): Put `.' before extension in
  942. suffix list, `.obj' rule, and `.lo' rule. Look at `-flags', not
  943. `-flag'. From Pavel Roskin.
  944. 1999-04-28 Tom Tromey <tromey@cygnus.com>
  945. * automake.in (finish_languages): Fixed scoping of ltcompile and
  946. ltlink. From Pavel Roskin.
  947. 1999-04-27 Tom Tromey <tromey@cygnus.com>
  948. * automake.in (read_main_am_file): Don't start macro definition
  949. with backslash-newline. Instead, append newline at the end if
  950. required.
  951. * automake.in (read_am_file): Insert a backslash before a trailing
  952. newline. Fixes pluseq8.test.
  953. * automake.in (MACRO_PATTERN): Allow digits and `_' to start a
  954. macro name.
  955. (check_canonical_spelling): Don't insert `AM' before macro name
  956. (reverts Alexandre's 1999-04-27 patch).
  957. * automake.texi: Reverted documentation change for `AM' patch.
  958. * automake.in (handle_lib_objects_cond): Prefer `$1' over `\1'.
  959. Minor rewrite for clarity.
  960. (check_canonical_spelling): Prefer `$1' over `\1'.
  961. * depend2.am (@OBJ@): Renamed. Use @SOURCE@, @COMPILE@. Always
  962. use `-o $@'.
  963. (@LTOBJ@): Likewise.
  964. * automake.in (handle_single_transform_list): Don't print rule if
  965. doing dependency tracking and the file's language supports it.
  966. (initialize_per_input): Initialize lang_specific_files.
  967. (add_depend2): New function.
  968. (handle_dependencies): Use it.
  969. * automake.in (lang_ppf77_finish): Use lang_f77_finish.
  970. ratfor compiler name is `RCOMPILE'. ppf77 compiler name changed
  971. to `PPF77COMPILE' to allow use of f77 and ppf77 in the same
  972. directory.
  973. (lang_ratfor_finish): Use lang_f77_finish.
  974. * compile.am (NOTDEPEND.c.o): Removed.
  975. (OBJEXT.c.obj): Likewise.
  976. * automake.in: Added `flags' attribute to all relevant languages.
  977. (handle_single_transform_list): Handle per-derived-object flags.
  978. Changed interface and all callers.
  979. (handle_built_sources): Don't call handle_single_transform_list.
  980. Added `compile' and `compiler-name' attribute to all relevant
  981. languages.
  982. (finish_languages): Define compiler variables here.
  983. (lang_cxx_finish): Don't call define_compiler_variable. Don't
  984. define flag variable or .o rules. Don't add to @suffixes.
  985. (lang_f77_finish): Likewise.
  986. (lang_ppf77_finish): Likewise.
  987. (lang_objc_finish): Likewise.
  988. (lang_java_finish): Likewise.
  989. (finish_languages): Define flag variable here.
  990. Added `output-arg' attribute to all relevant languages.
  991. (finish_languages): Define `.o' rules here.
  992. (finish_languages): Put extension on @suffixes.
  993. (get_object_extension): Don't transform NOTDEPEND or MINUSO.
  994. 1999-04-27 Alexandre Oliva <oliva@dcc.unicamp.br>
  995. * automake.in (initialize_global_constants): Invoke gzip for
  996. dist-shar just like in plain dist, i.e., pass it GZIP_ENV and -c.
  997. * automake.in (initialize_global_constants): Remove zip file
  998. before re-creating it.
  999. Reported by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
  1000. * texinfos.am (uninstall-info): Look for info file in srcdir, just
  1001. like in install-info-am.
  1002. Reported by Tudor Hulubei <tudor@cs.unh.edu>
  1003. * automake.in (handle_lib_objects_cond): \Q doesn't work either.
  1004. Let's use the good ol' substitution, then.
  1005. Reported by Russ Allbery <rra@stanford.edu>
  1006. * automake.in (check_canonical_spelling): Insert AM before names
  1007. starting with non-letters.
  1008. * automake.texi: Document it.
  1009. 1999-04-26 Alexandre Oliva <oliva@dcc.unicamp.br>
  1010. * automake.in (handle_lib_objects_cond): Do not use quotemeta, it
  1011. doesn't work on perl4. Maybe \Q and \E do.
  1012. 1999-04-24 Tom Tromey <tromey@cygnus.com>
  1013. * automake.in: Treat `.zip' and `.jar' files as Java.
  1014. * automake.in (generate_makefile): Define `subdir' after reading
  1015. .am file.
  1016. (read_main_am_file): Give programming error if variable defined
  1017. before invocation.
  1018. 1999-04-22 Tom Tromey <tromey@cygnus.com>
  1019. * automake.in (generate_makefile): Define `subdir' variable.
  1020. (handle_dist): Don't define `subdir'.
  1021. * automake.in (handle_texinfo): Change numbering scheme for
  1022. stamp-vti files, to avoid problems with DOS.
  1023. From Michel de Ruiter.
  1024. * automake.texi: Don't mention AM_FUNC_MKTIME.
  1025. * aclocal.in (obsolete_macros): Mention AM_FUNC_MKTIME.
  1026. * automake.in (scan_one_configure_file): Recognize
  1027. AC_FUNC_MKTIME, not AM_FUNC_MKTIME.
  1028. (obsolete_macros): Mention AM_FUNC_MKTIME.
  1029. * m4/Makefile.am (m4data_DATA): Removed mktime.m4.
  1030. * m4/mktime.m4: Removed.
  1031. 1999-04-20 Tom Tromey <tromey@cygnus.com>
  1032. * automake.texi (Top level): Don't recommend substing SUBDIRS.
  1033. 1999-04-20 Brian Ford <ford@vss.fsi.com>
  1034. * scripts.am: Change else if's to elif.
  1035. 1999-04-20 Alexandre Oliva <oliva@dcc.unicamp.br>
  1036. * automake.in (handle_lib_objects_cond): Only require the source
  1037. of a LIBOBJ if it's not in BUILT_SOURCES.
  1038. Reported by Erez Zadok.
  1039. 1999-04-19 Tom Tromey <tromey@cygnus.com>
  1040. * automake.in: Treat `.class' files as Java source.
  1041. (lang_java_finish): Handle `.class' files.
  1042. 1999-04-18 Alexandre Oliva <oliva@dcc.unicamp.br>
  1043. * m4/lispdir.m4: Match only `/(share|lib)/x?emacs/site-lisp/*$'.
  1044. * m4/lispdir.m4: Do not override lispdir if it's already defined.
  1045. Run some emacs-lisp to find out the site-lisp directory, but
  1046. relocate it into prefix.
  1047. 1999-04-17 Paul Eggert <eggert@twinsun.com>
  1048. * m4/mktime.m4 (bigtime_test, main): Move alarm from
  1049. bigtime_test to main, since Solaris 7 (64-bit) mktime loops
  1050. even outside of bigtime_test. Use a time limit of 60 seconds
  1051. for the whole test, not 10 seconds per iteration.
  1052. 1999-04-17 Erez Zadok <ezk@cs.columbia.edu>
  1053. * automake.in: Create stamps for headers in appropriate
  1054. directories, even if the input file lives in a different place.
  1055. * remake-hdr.am: Likewise.
  1056. 1999-04-16 Tom Tromey <tromey@cygnus.com>
  1057. From Brian Ford:
  1058. * progs.am (install-@DIR@PROGRAMS, uninstall-@DIR@PROGRAMS):
  1059. Invoke `sed' only once per program.
  1060. * scripts.am (install-@DIR@SCRIPTS, uninstall-@DIR@SCRIPTS):
  1061. Invoke `sed' only once per program.
  1062. 1999-04-13 Tom Tromey <tromey@cygnus.com>
  1063. * automake.in (handle_subdirs): Make `install-recursive' phony.
  1064. From Michel de Ruiter.
  1065. * automake.in (handle_ltlibraries): Added missing `check'.
  1066. 1999-04-12 Tom Tromey <tromey@cygnus.com>
  1067. * ansi2knr.c: New version from Pavel Roskin (via ansi2knr.c
  1068. maintainer).
  1069. 1999-04-11 Tom Tromey <tromey@cygnus.com>
  1070. * automake.in (handle_dist): Use AMTAR.
  1071. (initialize_global_constants): Likewise.
  1072. * m4/init.m4 (AM_INIT_AUTOMAKE): Use AMTAR, not TAR.
  1073. * automake.in (lang_sub_obj): New function.
  1074. (lang_cxx_rewrite): Use it.
  1075. (lang_asm_rewrite): Likewise.
  1076. (lang_objc_rewrite): Likewise.
  1077. (lang_cxx_finish): Add `-o $@' to all C++ rules.
  1078. (lang_asm_finish): Add `-o' to suffix rules when appropriate.
  1079. (lang_objc_finish): Add `-o $@' to all ObjC rules.
  1080. (lang_java_finish): Likewise.
  1081. * automake.in: Only register `asm' once.
  1082. (lang_asm_finish): Put assembly suffixes on @suffixes.
  1083. * libtool.am (.s.lo): Removed.
  1084. (.S.lo): Likewise.
  1085. * automake.in (lang_asm_finish): Handle libtool.
  1086. * libtool.am (.c.o): Always pass -c to libtool.
  1087. * automake.in (lang_yacc_rewrite): Handle sources in subdirs.
  1088. (lang_yaccxx_rewrite): Likewise.
  1089. (lang_lex_rewrite): Likewise.
  1090. (lang_lexxx_rewrite): Likewise.
  1091. Assembly code no longer included by default:
  1092. * compile.am (.s.o): Removed.
  1093. (.S.o): Likewise.
  1094. * automake.in: Register `asm' language.
  1095. (lang_asm_finish): Generate suffix rules for assembly.
  1096. (get_object_extension): Don't add `.s' or `.S' to suffix list.
  1097. * automake.in (get_object_extension): Substitute @MINUSO@ when
  1098. including compile.am.
  1099. * compile.am (.c.o): Added @MINUSO@.
  1100. (.c.obj): Likewise.
  1101. First cut at allowing objects in subdirectories:
  1102. * m4/Makefile.am (m4data_DATA): Added minuso.m4.
  1103. * Makefile.am (dist_script_DATA): Added compile.
  1104. * m4/minuso.m4: New file.
  1105. * automake.in (initialize_global_constants): Added compile to
  1106. common_files.
  1107. (seen_cc_c_o): New global.
  1108. (scan_one_configure_file): Set it when AM_PROG_CC_C_O seen.
  1109. (handle_options): Recognize `subdir-objects' option.
  1110. (lang_c_rewrite): Added directory argument.
  1111. (lang_yacc_rewrite): Likewise.
  1112. (lang_yaccxx_rewrite): Likewise.
  1113. (lang_lex_rewrite): Likewise.
  1114. (lang_lexxx_rewrite): Likewise.
  1115. (handle_single_transform_list): Pass directory to _rewrite
  1116. function. Generate dependencies for dirstamp files for each .o;
  1117. it is just the rules we want to create once.
  1118. (lang_c_rewrite): Handle `subdir-objects' option.
  1119. (lang_c_rewrite): Require `compile' program.
  1120. * compile: New file.
  1121. * automake.in (initialize_per_input): Initialize %directory_map.
  1122. (handle_single_transform_list): Only create .dirstamp rules once
  1123. per directory.
  1124. * m4/gcj.m4 (AM_PROG_GCJ): Use AC_CHECK_PROGS, not AC_CHECK_PROG.
  1125. Fix for confh.test:
  1126. * automake.in (configure_input_files): New global.
  1127. (scan_configure): Set it.
  1128. (handle_configure): Use configure_input_files when determining
  1129. which subdirs have a Makefile.am. Fixes confh.test.
  1130. (handle_configure): Only recognize acconfig.h in top srcdir.
  1131. 1999-04-10 Tom Tromey <tromey@cygnus.com>
  1132. * depend2.am (%.o): Use `$(*D)/$(*F)', not just `$(*F)'.
  1133. (%.lo): Likewise.
  1134. * automake.in (am_install_var): Remove redundancies from the
  1135. result. Fixes test cond8.test.
  1136. * automake.in (handle_single_transform_list): Handle dependency
  1137. tracking when files are created in subdirs. Error if object in
  1138. subdir has `..' component.
  1139. * automake.in (initialize_global_constants): Use $(TAR), not tar.
  1140. * automake.in (handle_ltlibraries): Allow check_LTLIBRARIES.
  1141. * automake.in (lang_yacc_finish): Added missing `&'.
  1142. 1999-04-10 Alexandre Oliva <oliva@dcc.unicamp.br>
  1143. * automake.in (handle_configure): Replace multiple occurrences of
  1144. @STAMP@ in the same line; completes the patch for remake-hdr.am
  1145. below.
  1146. * automake.in (handle_dependencies): Fix test for `autodep'
  1147. support.
  1148. * automake.in (handle_source_transform): Add a pfx to used_pfx
  1149. only if it's conditional or non-empty, to reduce the number of
  1150. empty variables. Emit _OBJECS variable based on program name if
  1151. no SOURCES were explicitly specified.
  1152. * remake-hdr.am: Create the stamp file before the header file,
  1153. and just rename it after, so that the timestamps will be correct.
  1154. Reported by Marc Horowitz <marc@mit.edu>
  1155. * automake.in (lang_yacc_finish): Generate and dist a `.h' for a
  1156. `.y' iff YFLAGS or AM_YFLAGS contain `-d'.
  1157. Reported by Jim Meyering <meyering@ascend.com>
  1158. * automake.in (lang_yacc_finish): $hname must not contain a `.'.
  1159. 1999-04-10 Tom Tromey <tromey@cygnus.com>
  1160. * Makefile.am (EXTRA_DIST): New macro.
  1161. * ChangeLog.1996, ChangeLog.1998: New files.
  1162. 1999-04-09 Tom Tromey <tromey@cygnus.com>
  1163. * automake.in (handle_source_transform): Handle dist and nodist
  1164. prefixes.
  1165. (initialize_per_input): Initialize dist_sources.
  1166. (check_libobjs_sources): Handle dist and nodist prefixes.
  1167. (generate_makefile): Define DIST_SOURCES.
  1168. * dist-vars.am (DISTFILES): Reference DIST_SOURCES, not SOURCES.
  1169. * automake.texi (Macros): Mention AM_PROG_GCJ.
  1170. (Java Support): New node.
  1171. (Dist): Documented dist_ and nodist_ prefixes.
  1172. * m4/gcj.m4 (AM_PROG_GCJ): Renamed from AC_PROG_GCJ.
  1173. * automake.in (lang_java_finish): Generate .lo rule for `.java'
  1174. files, not `.gcj' files.
  1175. * m4/gcj.m4: New file.
  1176. * m4/Makefile.am (m4data_DATA): Added gcj.m4.
  1177. * automake.in: Register the `java' language.
  1178. (resolve_linker): Handle GCJLINK.
  1179. (lang_java_rewrite): New function.
  1180. (LANG_IGNORE, LANG_PROCESS, LANG_SUBDIR): New constants.
  1181. (lang_c_rewrite): Use new constants.
  1182. (lang_cxx_rewrite): Likewise.
  1183. (lang_header_rewrite): Likewise.
  1184. (lang_yacc_rewrite): Likewise.
  1185. (lang_yaccxx_rewrite): Likewise.
  1186. (lang_lex_rewrite): Likewise.
  1187. (lang_lexxx_rewrite): Likewise.
  1188. (lang_asm_rewrite): Likewise.
  1189. (lang_f77_rewrite): Likewise.
  1190. (lang_ppf77_rewrite): Likewise.
  1191. (lang_ratfor_rewrite): Likewise.
  1192. (lang_objc_rewrite): Likewise.
  1193. (handle_single_transform_list): Likewise. Handle LANG_SUBDIR
  1194. return from rewrite function.
  1195. (lang_java_finish): New function.
  1196. (register_language): Changed interface and all calls. Added
  1197. `autodep' settings to various languages.
  1198. (handle_dependencies): Use `autodep' property of language when
  1199. including dependency-tracking code.
  1200. 1999-04-07 Tom Tromey <tromey@cygnus.com>
  1201. * automake.in (handle_texinfo): Indentation fixes.
  1202. 1999-04-07 Alexandre Oliva <oliva@dcc.unicamp.br>
  1203. * automake.in (value_to_list): Skip *only* trailing backslashes.
  1204. 1999-04-07 Pavel Roskin <pavel_roskin@geocities.com>
  1205. * automake.in (value_to_list): Skip trailing backslashes.
  1206. 1999-04-07 Alexandre Oliva <oliva@dcc.unicamp.br>
  1207. * automake.in (handle_texinfo): Add texinfo.tex to config_aux_dir
  1208. when appropriate.
  1209. Reported by Per Cederqvist <ceder@lysator.liu.se>
  1210. (handle_texinfo): Do not define texinfo_tex='.', use
  1211. '$(srcdir)/texinfo.tex' instead; the directory name will be
  1212. properly extracted.
  1213. (require_conf_file_with_line): Fixed typo.
  1214. 1999-04-03 Raja R Harinath <harinath@cs.umn.edu>
  1215. * automake.in (handle_tests): Test `dir=./' before `dir=', so that
  1216. we do not depend on PATH starting with `.'.
  1217. 1999-03-31 Tom Tromey <tromey@cygnus.com>
  1218. * automake.in (quote_cond_val): Quote \n.
  1219. (unquote_cond_val): Unquote \n.
  1220. (read_am_file): If line ends with `\', preserve it and add a
  1221. newline.
  1222. (read_main_am_file): In conditional case, put conditional text at
  1223. beginning of each generated line.
  1224. 1999-03-31 Alexandre Oliva <oliva@dcc.unicamp.br>
  1225. * automake.in (handle_tests): support XFAIL_TEST
  1226. * automake.texi: document it
  1227. 1999-04-12 Alexandre Oliva <oliva@dcc.unicamp.br>
  1228. * End of merge from trunk.
  1229. 1999-04-12 Alexandre Oliva <oliva@dcc.unicamp.br>
  1230. * automake.in (cmdline_use_dependencies): Reintroduce it.
  1231. (--ignore-deps): Set cmdline_use_dependencies again.
  1232. (handle_dependencies): If use_dependencies is not set, define
  1233. depcomp as empty.
  1234. (handle_configure): Pass --ignore-deps to generated Makefile.ins.
  1235. (scan_configure): Do not require depcomp when ignoring
  1236. dependencies.
  1237. (initialize_global_constants): Reintroduce --ignore-deps.
  1238. 1999-04-10 Alexandre Oliva <oliva@dcc.unicamp.br>
  1239. * depcomp: New file.
  1240. * Makefile.am (dist_script_DATA): Added depcomp.
  1241. * automake.in (cmdline_use_dependencies, omit_dependencies,
  1242. dependency_macros): Removed.
  1243. (--ignore-deps): Just ignore.
  1244. (handle_single_transform_list, dep_files): Named dependency files
  1245. as \$(DEPDIR)/$base.P$obj
  1246. (handle_lib_objects_cond): Likewise.
  1247. (generate_dependency_code): Do not check for AM_*_DEPENDENCIES.
  1248. (scan_one_configure_file): Likewise.
  1249. (handle_dependencies): Always enable auto-dep. Define `depcomp'.
  1250. Ignore OMIT_DEPENDENCIES.
  1251. (handle_configure): Do not pass --ignore-deps.
  1252. (scan_configure): Require `depcomp'.
  1253. (initialize_global_constants): Make `depcomp' common. Remove
  1254. `--ignore-deps' from usage.
  1255. (get_object_extension): No more NOTDEPEND in compile nor libtool.
  1256. * compile.am: Remove rules for .c.o and .c.obj
  1257. * depend.am (distclean-depend): Wipe out $(DEPDIR)
  1258. * depend2.am (@FPFX@DEPMODE): Define from config.status.
  1259. Use it and depcomp in suffix rules.
  1260. * libtool.m4: Likewise.
  1261. * m4/ccdepend.m4, m4/cxxdepend.m4: Removed.
  1262. * m4/depvars.m4, m4/objcdepend.m4: Likewise.
  1263. * m4/Makefile.am (dist_m4data_DATA): Likewise.
  1264. * m4/depout.m4 (AM_OUTPUT_DEPENDENCY_COMMANDS): Extract DEPDIR
  1265. from the Makefile and subst it in deps. Report creation of deps
  1266. files (for now). Replace $U with `_' and the empty string. Write
  1267. a comment to each created file.
  1268. * m4/depend.m4 (AM_SET_DEPDIR): Select a valid deps dir name.
  1269. (AM_DEPENDENCIES): Accept CC, CXX and OBJC. Just determine the
  1270. dependency mode and AC_SUBST [$1]DEPMODE.
  1271. * m4/init.m4 (AM_INIT_AUTOMAKE): Automatically call
  1272. AM_DEPENDENCIES for CC and CXX, if the corresponding AC_PROG
  1273. appears in configure.in, before or after AM_INIT_AUTOMAKE.
  1274. 1999-04-02 Raja R Harinath <harinath@cs.umn.edu>
  1275. * depout.m4: Fix sed expression for extracting `dirpart'.
  1276. 1999-03-29 Tom Tromey <tromey@cygnus.com>
  1277. * depend2.am (DEP_@FPFX@COMPILE): Use `!=' and not `-ne'.
  1278. * compile.am (.c.obj): Also disabled when dependency tracking
  1279. enabled.
  1280. * depend2.am (@EXT@.obj): New target.
  1281. * automake.in (get_object_extension): Added explanatory comment.
  1282. (generate_dependency_code): Handle $seen_objext.
  1283. * depend.am: Removed obsolete comment.
  1284. * depend2.am: Minor formatting fix.
  1285. 1999-03-28 Tom Tromey <tromey@cygnus.com>
  1286. * m4/Makefile.am (dist_m4data_DATA): Renamed, and added new
  1287. files.
  1288. (EXTRA_DIST): Removed.
  1289. * automake.in (dependency_macros): New global.
  1290. (scan_one_configure_file): Recognize new dependency tracking
  1291. macros, and define new resulting configure variables.
  1292. (generate_dependency_code): New sub.
  1293. (handle_dependencies): Use it.
  1294. * depend2.am (DEP_@FPFX@COMPILE): New macro.
  1295. (@EXT@.o): Use it.
  1296. (@EXT@.lo): Likewise.
  1297. * m4/depvars.m4: New file.
  1298. * m4/objcdepend.m4: New file.
  1299. * m4/cxxdepend.m4: New file.
  1300. * m4/init.m4: Moved dependency handling code into depout.m4.
  1301. * m4/depout.m4: New file.
  1302. * m4/ccdepend.m4: New file.
  1303. * m4/depend.m4: New file.
  1304. * depend2.am (@EXT@.o): Renamed to be old-style suffix pattern.
  1305. (@EXT@.lo): Likewise.
  1306. * m4/init.m4 (AM_INIT_AUTOMAKE): Don't create `.deps/.P'; it is no
  1307. longer needed.
  1308. * m4/init.m4 (AM_INIT_AUTOMAKE): Add code to config.status which
  1309. will create the required .P files for dependency tracking.
  1310. * automake.in (scan_dependency_file): Removed.
  1311. (handle_dependencies): Never call scan_dependency_file.
  1312. (generate_deps): Removed.
  1313. (parse_arguments): Don't recognize --generate-deps, --build-dir,
  1314. --srcdir-name, or --include-deps. Do recognize --ignore-deps.
  1315. (srcdir_name): Removed.
  1316. (build_directory): Removed.
  1317. (initialize_global_constants): Changed $USAGE to reflect argument
  1318. parsing changes.
  1319. (handle_dist_worker): Never run automake in `dist' rule.
  1320. (handle_configure): Use --ignore-deps, not --include-deps.
  1321. * depend.am (DEPS_MAGIC): Removed.
  1322. (DEP_FILES): Unconditionally include.
  1323. 1999-03-27 Tom Tromey <tromey@cygnus.com>
  1324. * automake.in (saw_sources_p): Correctly count header extensions
  1325. seen.
  1326. (handle_headers): Fixed order of arguments to am_install_var.
  1327. * automake.in (am_install_var): Don't error if EXTRA_foo is
  1328. defined uselessly.
  1329. * scripts.am (install-@DIR@SCRIPTS): Use NDIR when appropriate.
  1330. (uninstall-@DIR@SCRIPTS): Likewise.
  1331. * progs.am (install-@DIR@PROGRAMS): Use NDIR when appropriate.
  1332. (uninstall-@DIR@PROGRAMS): Likewise.
  1333. * ltlib.am (install-@DIR@LTLIBRARIES): Use NDIR when appropriate.
  1334. (uninstall-@DIR@LTLIBRARIES): Likewise.
  1335. * lisp.am (install-@DIR@LISP): Use NDIR when appropriate.
  1336. (uninstall-@DIR@LISP): Likewise.
  1337. * libs.am (install-@DIR@LIBRARIES): Use NDIR when appropriate.
  1338. (uninstall-@DIR@LIBRARIES): Likewise.
  1339. * java.am (install-@DIR@JAVA): Use NDIR when appropriate.
  1340. (uninstall-@DIR@JAVA): Likewise.
  1341. * header.am (install-@DIR@HEADERS): Use NDIR when appropriate.
  1342. (uninstall-@DIR@HEADERS): Likewise.
  1343. * data.am (install-@DIR@DATA): Use NDIR when appropriate.
  1344. (uninstall-@DIR@DATA): Likewise.
  1345. * Makefile.in: Rebuilt.
  1346. * Makefile.am (dist_pkgdata_DATA): Renamed.
  1347. (EXTRA_DIST): Removed.
  1348. (install-data-hook): Added POST_INSTALL; print commands as they
  1349. are run; respect DESTDIR.
  1350. * dist-vars.am (DISTFILES): Removed $(HEADERS).
  1351. * automake.in (am_install_var): Accept `-candist' and
  1352. `-defaultdist' options. Handle `dist_' and `nodist_' prefixes.
  1353. (am_primary_prefixes): Added can_dist argument. Recognize `dist_'
  1354. and `nodist_' prefixes.
  1355. (handle_scripts): Pass -candist to am_install_var.
  1356. (handle_data): Pass -defaultdist to am_install_var.
  1357. (handle_headers): Likewise.
  1358. (handle_emacs_lisp): Pass -candist to am_install_var.
  1359. (handle_java): Pass -candist to am_install_var.
  1360. 1999-03-26 Tom Tromey <tromey@cygnus.com>
  1361. * m4/init.m4: Fixed typo when invoking SHELL.
  1362. * automake.in (lang_yacc_finish): Always use `.h' as suffix for
  1363. yacc header file. From Ralf Corsepius.
  1364. * Makefile.in: Rebuilt.
  1365. * Makefile.am: Updated to reflect removal of TAR subst.
  1366. * automake.texi (Options): Document dist-bzip2.
  1367. * automake.in (TAR): Removed global.
  1368. (initialize_global_constants): Changed `dist' to use pipe with
  1369. gzip; work with non-GNU tar.
  1370. (handle_dist): Handle non-GNU tar. Don't define TAR.
  1371. (initialize_global_constants): Added `dist-bzip2' entry.
  1372. (handle_options): Recognize dist-bzip2 option.
  1373. (handle_dist): Likewise.
  1374. * configure: Rebuilt.
  1375. * configure.in: Don't check for tar.
  1376. * m4/init.m4 (AM_INIT_AUTOMAKE): Check for `tar'. Substitute
  1377. AMTARFLAGS.
  1378. * automake.in (am_install_var): Removed obsolete comment.
  1379. * texinfos.am (uninstall-info): Don't print loop but instead print
  1380. commands. Simplified pre-uninstall loop.
  1381. * scripts.am (uninstall-@DIR@SCRIPTS): Don't print loop but
  1382. instead print commands.
  1383. * progs.am (uninstall-@DIR@PROGRAMS): Don't print loop but instead
  1384. print commands.
  1385. * ltlib.am (uninstall-@DIR@LTLIBRARIES): Don't print loop but
  1386. instead print commands.
  1387. * lisp.am (install-@DIR@LISP): Strip subdir from file name.
  1388. (uninstall-@DIR@LISP): Likewise. Also, don't print loop but
  1389. instead print commands.
  1390. * libs.am (uninstall-@DIR@LIBRARIES): Don't print loop but instead
  1391. print commands.
  1392. * java.am (uninstall-@DIR@JAVA): Don't print loop but instead
  1393. print commands.
  1394. * header.am (install-@DIR@HEADERS): Strip subdir from file name.
  1395. (uninstall-@DIR@HEADERS): Likewise. Also, don't print loop but
  1396. instead print commands.
  1397. * data.am (install-@DIR@DATA): Strip subdir from file name.
  1398. (uninstall-@DIR@DATA): Likewise. Also, don't print loop but
  1399. instead print commands.
  1400. * automake.in (handle_merge_targets): `install-strip' is a phony
  1401. target. From Michel de Ruiter.
  1402. 1999-03-25 Tom Tromey <tromey@cygnus.com>
  1403. * automake.in (define_compiler_variable): Don't define variable
  1404. with trailing `_'.
  1405. 1999-03-25 Alexandre Oliva <oliva@dcc.unicamp.br>
  1406. * automake.in (LDADD): accept -dlopen and -dlpreopen here
  1407. * automake.texi: ditto
  1408. 1999-03-25 Alexandre Oliva <oliva@dcc.unicamp.br>
  1409. * automake.in (TESTS): make from Solaris 7/x86 loses if srcdir
  1410. is absolute and != objdir. dir="" or "$(srcdir)/" fixes it
  1411. 1999-03-24 Tom Tromey <tromey@cygnus.com>
  1412. * automake.in (define_compiler_variable): New sub.
  1413. (finish_languages): Use it.
  1414. (lang_cxx_finish): Likewise.
  1415. (lang_f77_finish): Likewise.
  1416. (lang_ppf77_finish): Likewise.
  1417. (lang_ratfor_finish): Likewise.
  1418. (lang_objc_finish): Likewise.
  1419. 1999-03-23 Tom Tromey <tromey@cygnus.com>
  1420. * progs.am (install-@DIR@PROGRAMS): Use `-e' instead of multiple
  1421. sed invocations. From Elrond.
  1422. (uninstall-@DIR@PROGRAMS): Likewise.
  1423. * automake.in (lang_lex_finish): Rewrite `l', not `y', to `c'.
  1424. From Ralf Corsepius.
  1425. 1999-02-01 Thomas Tanner <tanner@gmx.de>
  1426. * automake.in: accept both A(C|M)_PROG_LIBTOOL, print a
  1427. warning when AM_PROG_LIBTOOL was found
  1428. * automake.texi: renamed AM_PROG_LIBTOOL to AC_PROG_LIBTOOL
  1429. 1999-03-22 Tom Tromey <tromey@cygnus.com>
  1430. Made `+=' more robust. Fixes pluseq6.test and pluseq7.test.
  1431. * automake.in (define_standard_variables): New sub.
  1432. (read_main_am_file): Use two passes to scan standard variables.
  1433. (read_am_file): Don't special-case configure variables with `+='.
  1434. (initialize_per_input): Initialize %var_was_plus_eq.
  1435. (read_am_file): Set var_was_plus_eq element correctly.
  1436. (define_variable): Give error if variable assigned with `+=' is
  1437. internally defined.
  1438. (initialize_per_input): Initialize %am_var_defs.
  1439. (file_contents_with_transform): Set element in %am_var_defs.
  1440. (read_am_file): Use %am_var_defs.
  1441. 1999-03-21 Tom Tromey <tromey@cygnus.com>
  1442. * automake.in (initialize_per_input): Initialize %object_map.
  1443. (handle_single_transform_list): Allow source files in
  1444. subdirectories.
  1445. 1999-03-21 Jim Meyering <meyering@na-net.ornl.gov>
  1446. * automake.in (handle_dist): Add missing newline after the first
  1447. semicolon.
  1448. 1999-03-11 Tom Tromey <tromey@cygnus.com>
  1449. * m4/error.m4, m4/mktime.m4, m4/obstack.m4, m4/regex.m4,
  1450. m4/strtod.m4: Use $ac_objext, not `.o'. From Jim Meyering.
  1451. From Jim Meyering:
  1452. * automake.in (handle_dist): Add `;\' to end of distcheck-hook
  1453. line.
  1454. (scan_one_configure_file): In LIBOBJS, recognize `$ac_objext' as
  1455. legitimate ending. Fixes libobj9.test.
  1456. From Ralf Corsepius. Fixes lex3.test.
  1457. * automake.in (lang_yacc_finish): Include `.' in name pushed onto
  1458. maintainer-clean list.
  1459. (lang_lex_finish): Likewise.
  1460. 1999-03-02 Tom Tromey <tromey@cygnus.com>
  1461. * subdirs.am (maintainer-clean-recursive): Changed "&&" into "if"
  1462. construct to work around FreeBSD make/sh problem. From Rich Wales.
  1463. 1999-03-01 Tom Tromey <tromey@cygnus.com>
  1464. Fixes from Pavel Roskin:
  1465. * automake.in (variable_conditions_sub): Sort list passed to
  1466. variable_conditions_permutations.
  1467. (variable_conditions): Sort list before returning.
  1468. 1999-02-27 Tom Tromey <tromey@cygnus.com>
  1469. * automake.in (lang_extensions): New sub.
  1470. (handle_dependencies): Use it.
  1471. (cxx_extensions): Removed.
  1472. (lang_cxx_finish): Use lang_extensions.
  1473. (f77_extensions): Removed.
  1474. (lang_f77_finish): Use lang_extensions.
  1475. (objc_extensions): Removed.
  1476. (lang_ppf77_finish): Put `.' before extension. Fixes ext.test.
  1477. Report from Dave Morrison.
  1478. (lang_ratfor_finish): Likewise.
  1479. 1999-02-26 Tom Tromey <tromey@cygnus.com>
  1480. * automake.in (finish_languages): Added AM_LDFLAGS.
  1481. (lang_cxx_finish): Likewise.
  1482. (lang_f77_finish): Likewise.
  1483. (lang_ppf77_finish): Likewise.
  1484. (lang_ratfor_finish): Likewise.
  1485. (lang_objc_finish): Likewise.
  1486. 1999-02-11 Tom Tromey <tromey@cygnus.com>
  1487. * aclocal.in (obsolete_macros): Copied from automake.in.
  1488. (obsolete_rx): Use only keys of obsolete_macros.
  1489. (scan_configure): Report replacement macro for an obsolete macro.
  1490. * automake.in (obsolete_macros): Added ud_GNU_GETTEXT.
  1491. * automake.in (obsolete_macros): Corrected typo in AM_EXEEXT
  1492. entry. Fixes obsolete2.test.
  1493. * automake.in (obsolete_macros): Use empty string to indicate no
  1494. substitution.
  1495. (scan_one_configure_file): Likewise.
  1496. 1999-02-07 Paul Eggert <eggert@twinsun.com>
  1497. * m4/ccstdc.m4 (AM_PROG_CC_STDC): Prefer -Ae to -Aa
  1498. -D_HPUX_SOURCE, since -Ae allows `long long' and this is
  1499. needed by some programs.
  1500. 1999-02-10 Tom Tromey <tromey@cygnus.com>
  1501. * automake.in (handle_texinfo): Added `pgs' to list of
  1502. extensions. From NISHIDA Keisuke.
  1503. 1999-02-04 Akim Demaille <demaille@inf.enst.fr>
  1504. * automake.in (handle_texinfo): remove texinfo.tex from
  1505. TEXINFODIR.
  1506. 1999-02-02 Tom Tromey <tromey@cygnus.com>
  1507. * automake.in (handle_merge_targets): Use INSTALL_STRIP_FLAG.
  1508. * progs.am (install-@DIR@PROGRAMS): Added INSTALL_STRIP_FLAG.
  1509. * header-vars.am (INSTALL_PROGRAM): Removed
  1510. AM_INSTALL_PROGRAM_FLAGS.
  1511. (INSTALL_STRIP_FLAG): New macro.
  1512. * automake.in: Handle `ypp' as C++ yacc source and `lpp' as C++
  1513. lex source.
  1514. (lang_yacc_finish): Likewise.
  1515. (lang_lex_finish): Likewise.
  1516. 1999-02-01 Tom Tromey <tromey@cygnus.com>
  1517. * automake.in (handle_dist_worker): Correctly find find in $$d,
  1518. not $$. From Bill Davidson.
  1519. * automake.in (finish_languages): Use "&", not "do". From Pavel
  1520. Roskin.
  1521. (handle_single_transform_list): Likewise.
  1522. 1999-01-29 Tom Tromey <tromey@cygnus.com>
  1523. * automake.in (handle_configure): Removed unused variable. From
  1524. Pavel Roskin.
  1525. * ansi2knr.c: New version from L. Peter Deutsch.
  1526. 1999-01-22 Tom Tromey <tromey@cygnus.com>
  1527. * automake.in (require_file_internal): Correctly examine return
  1528. value of `system'. From Andris Pavenis. Fixes copy.test.
  1529. * m4/init.m4 (AM_INIT_AUTOMAKE): Require autoconf 2.13.
  1530. * automake.in (lang_ppf77_rewrite): New function. From Jochen
  1531. Kuepper. Fixes ppf77.test.
  1532. (lang_ratfor_rewrite): New function
  1533. * automake.in (handle_configure): Use `&' before sub calls (Perl 4
  1534. fix). From Erez Zadok.
  1535. 1999-01-15 Tom Tromey <tromey@cygnus.com>
  1536. * configure.in: Version 1.4a (oops).
  1537. * configure.in: Updated version to 1.5a.
  1538. 1999-01-14 Tom Tromey <tromey@cygnus.com>
  1539. * automake.in (handle_configure): Compute $header_dir based on
  1540. $one_name, not $one_hdr. Reported by Erez Zadok. Fixes
  1541. confh2.test.
  1542. (handle_configure): Compute relative path to input header
  1543. correctly in all cases.
  1544. * automake.in (handle_tests): Avoid error messages from dejagnu
  1545. test rules. From Karl Heuer.
  1546. * automake.in (handle_texinfo): Add `/' to end of $conf_dir.
  1547. * Makefile.am (AUTOMAKE_OPTIONS): Added `1.4'.
  1548. * texi-vers.am ($(srcdir)/stamp-@VTI@): Find @TEXI@ in srcdir.
  1549. From Alexandre Oliva and Erez Zadok.
  1550. * automake.in (create): Renamed from touch.
  1551. (handle_configure): Use create, not touch.
  1552. * config.sub, config.guess: New versions from autoconf.
  1553. * mkinstalldirs: New version from autoconf.
  1554. 1999-01-12 Tom Tromey <tromey@cygnus.com>
  1555. * config.sub, config.guess, COPYING, texinfo.tex: New versions
  1556. from FSF.
  1557. 1999-01-11 Marcus G. Daniels <mgd@chama.santafe.edu>
  1558. * automake.in (PATH_PATTERN): New variable:
  1559. (INCLUDE_PATTERN): Use it. Ignore all include commands using
  1560. symbols besides $(top_srcdir) and $(srcdir).
  1561. 1999-01-11 Alexandre Oliva <oliva@dcc.unicamp.br>
  1562. * automake.in (handle_dist_worker): avoid failure in `make dist'
  1563. if last file is a builddir-only file
  1564. 1999-01-11 Alexandre Oliva <oliva@dcc.unicamp.br>
  1565. * missing (autoheader): `s' was missing from sed script; grr
  1566. 1999-01-11 Tom Tromey <tromey@cygnus.com>
  1567. * remake-hdr.am (@STAMP@): Reverted timestamp change.
  1568. ($(srcdir)/@STAMP@.in): Likewise.
  1569. 1999-01-10 Tom Tromey <tromey@cygnus.com>
  1570. * Makefile.am (scriptdir): New macro.
  1571. (script_DATA): Likewise.
  1572. (install-data-hook): Use them.
  1573. (EXTRA_DIST): Added script_DATA.
  1574. (installcheck-local): Use script_DATA.
  1575. * Makefile.am (pkgdata_DATA): Removed duplicate definition.
  1576. 1999-01-10 Alexandre Oliva <oliva@dcc.unicamp.br>
  1577. * missing (autoheader): accept multiple header files
  1578. (automake): simplify sed processing
  1579. 1999-01-10 Alexandre Oliva <oliva@dcc.unicamp.br>
  1580. * automake.in (handle_configure, stamp_dir): create only one stamp
  1581. file per header, instead of one in the top-level directory and one
  1582. in the directory that contains the header.
  1583. 1999-01-10 Tom Tromey <tromey@cygnus.com>
  1584. * automake.in (lang_objc_finish): Formatting fix.
  1585. * automake.in (objc_extensions): New sub.
  1586. (handle_dependencies): Only generate dependency-tracking code for
  1587. ObjC when ObjC source seen.
  1588. -----
  1589. Copyright 1999-2017 Free Software Foundation, Inc.
  1590. Copying and distribution of this file, with or without modification, are
  1591. permitted provided the copyright notice and this notice are preserved.