ChangeLog-2008 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396
  1. 2008-08-25 Ludovic Courtès <ludo@gnu.org>
  2. * configure.in (GCC_CFLAGS): New variable. Store GCC flags like
  3. `-Werror' inside it so that they are not used when compiling
  4. Gnulib modules.
  5. 2008-08-21 Ludovic Courtès <ludo@gnu.org>
  6. * autogen.sh: Don't use `gnulib-tool', use the Gnulib files
  7. available in the repository.
  8. 2008-08-07 Neil Jerram <neil@ossau.uklinux.net>
  9. * configure.in (SCM_I_GSC_STACK_GROWS_UP): Remove use of
  10. AC_CACHE_CHECK, which was inadvertently causing
  11. SCM_I_GSC_STACK_GROWS_UP _always_ to be 0.
  12. 2008-07-17 Neil Jerram <neil@ossau.uklinux.net>
  13. * configure.in: Update stack direction test to be like that in
  14. Autoconf _AC_LIBOBJ_ALLOCA and Gnulib; specifically in involving a
  15. function calling itself.
  16. 2008-07-16 Ludovic Courtès <ludo@gnu.org>
  17. * configure.in: Look for `struct dirent64' and `readdir64_r ()',
  18. not available on HP-UX 11.11.
  19. 2008-07-06 Ludovic Courtès <ludo@gnu.org>
  20. * configure.in: Update to Autoconf 2.61.
  21. 2008-06-28 Ludovic Courtès <ludo@gnu.org>
  22. * configure.in: Use Automake with `-Wall -Wno-override'.
  23. 2008-05-07 Ludovic Courtès <ludo@gnu.org>
  24. Guile 1.8.5 released.
  25. * GUILE-VERSION (LIBGUILE_INTERFACE_CURRENT): Increment due to
  26. the addition of an inlined version of `scm getc ()' and friends.
  27. (LIBGUILE_INTERFACE_AGE): Increment.
  28. (LIBGUILE_INTERFACE_REVISION): Zeroed.
  29. (LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION): Increment.
  30. 2008-05-04 Ludovic Courtès <ludo@gnu.org>
  31. Add `pkg-config' support. Suggested by Aaron VanDevender, Greg
  32. Troxel, and others.
  33. * configure.in: Substitute `sitedir', produce `guile-1.8.pc'.
  34. * Makefile.am (EXTRA_DIST): Add `guile-1.8.pc.in'.
  35. (pkgconfigdir, pkgconfig_DATA): New.
  36. 2008-04-26 Ludovic Courtès <ludo@gnu.org>
  37. * configure.in (BUILD_PTHREAD_SUPPORT): New Automake
  38. conditional.
  39. 2008-04-26 Ludovic Courtès <ludo@gnu.org>
  40. * Makefile.am (EXTRA_DIST): Remove `ANON-CVS' and `SNAPSHOTS'.
  41. 2008-02-23 Neil Jerram <neil@ossau.uklinux.net>
  42. * FAQ: New file.
  43. * Makefile.am (EXTRA_DIST): Add FAQ
  44. 2008-02-22 Ludovic Courtès <ludo@gnu.org>
  45. * configure.in: Check whether `strncasecmp' is declared.
  46. 2008-02-16 Ludovic Courtès <ludo@gnu.org>
  47. Guile 1.8.4 released.
  48. * GUILE-VERSION (LIBGUILE_INTERFACE_REVISION): Increment.
  49. (GUILE_MICRO_VERSION): Increment.
  50. * configure.in (GUILE_CFLAGS): Include `$CPPFLAGS' since they
  51. may include required `-I' flags (e.g., `-I/path/to/gmp'), so
  52. that "guile-config compile" reports all the needed flags.
  53. 2008-02-15 Neil Jerram <neil@ossau.uklinux.net>
  54. * autogen.sh: Copy versions of config.guess and config.sub from
  55. Guile CVS to build-aux and guile-readline.
  56. 2008-02-14 Neil Jerram <neil@ossau.uklinux.net>
  57. * HACKING: Note need for libtool >= 1.5.26.
  58. * config.rpath, build-aux/config.rpath: Updated to latest upstream
  59. version.
  60. * config.guess, config.sub: 2008-01-07 versions added to Guile
  61. CVS, to ensure that Guile developers are using new enough versions
  62. (in particular for AIX 6.1 support).
  63. 2008-02-11 Neil Jerram <neil@ossau.uklinux.net>
  64. * configure.in (--without-64-calls): Use AC_MSG_CHECKING and
  65. AC_MSG_RESULT instead of just echo.
  66. (GUILE_I): New programs to try using _Complex_I or 1.0fi for the
  67. imaginary unit.
  68. 2008-02-06 Neil Jerram <neil@ossau.uklinux.net>
  69. * configure.in: Default to --without-64-calls for
  70. powerpc-ibm-aix*. Thanks to Rainer Tammer for reporting that the
  71. 64 calls are a problem on that OS.
  72. 2008-02-06 Ludovic Courtès <ludo@gnu.org>
  73. * NEWS: Mention Sun Studio compilation fix.
  74. 2008-02-05 Neil Jerram <neil@ossau.uklinux.net>
  75. * configure.in (--without-64-calls): New option.
  76. 2008-01-30 Neil Jerram <neil@ossau.uklinux.net>
  77. * pre-inst-guile.in (dyld_prefix), pre-inst-guile-env.in
  78. (dyld_prefix): Construct and export dyld_prefix in a similar way
  79. to ltdl_prefix, to allow pre-install dynamic linking to work on
  80. MacOS. Thanks to Roger Mc Murtrie for reporting this problem.
  81. 2008-01-22 Neil Jerram <neil@ossau.uklinux.net>
  82. * LICENSE: Change COPYING.LIB to COPYING.LESSER.
  83. * COPYING.LESSER: Renamed, previously COPYING.LIB.
  84. * COPYING: Removed.
  85. * libguile.h: Update copyright statement to LGPL.
  86. 2007-12-04 Ludovic Courtès <ludo@gnu.org>
  87. * NEWS: Mention `accept' and `scm_c_{read,write}' bug fixes.
  88. 2007-12-03 Ludovic Courtès <ludo@gnu.org>
  89. * NEWS: Add SRFI-69.
  90. 2007-10-24 Neil Jerram <neil@ossau.uklinux.net>
  91. * .cvsignore: Add "lib".
  92. * build-aux/.cvsignore: Add a load more generated files to ignore,
  93. and commit to CVS.
  94. 2007-10-20 Ludovic Courtès <ludo@gnu.org>
  95. * THANKS: Add Julian.
  96. 2007-10-20 Julian Graham <joolean@gmail.com>
  97. * NEWS: Mention thread cancellation and cleanup API.
  98. 2007-10-17 Ludovic Courtès <ludo@gnu.org>
  99. * NEWS: Mention reader bug-fix.
  100. 2007-10-16 Ludovic Courtès <ludo@gnu.org>
  101. Guile 1.8.3 released.
  102. * GUILE-VERSION (GUILE_MICRO_VERSION): Incremented.
  103. (LIBGUILE_INTERFACE_REVISION): Incremented.
  104. 2007-10-10 Ludovic Courtès <ludo@gnu.org>
  105. * configure.in (SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT):
  106. New substituted variable.
  107. Use `-Werror' when using GCC and checking for
  108. `PTHREAD_ONCE_INIT'. Add check for braces around
  109. `PTHREAD_MUTEX_INITIALIZER'.
  110. * NEWS: Mention build fix for IRIX.
  111. 2007-10-02 Ludovic Courtès <ludo@gnu.org>
  112. * NEWS: Mention `(ice-9 slib)' fix and threading fix.
  113. 2007-09-03 Ludovic Courtès <ludo@gnu.org>
  114. * NEWS: Mention alignment-related bug fixes.
  115. 2007-09-03 Kevin Ryde <user42@zip.com.au>
  116. * configure.in (AC_CHECK_FUNCS): Move cexp and clog up into the main
  117. funcs check block. Remove carg which is now unused.
  118. 2007-09-02 Ludovic Courtès <ludo@gnu.org>
  119. * NEWS: Mention memory leak fix in `make-socket-address'.
  120. 2007-09-01 Ludovic Courtès <ludo@gnu.org>
  121. * NEWS: Mention duplicate binding warnings to stderr.
  122. 2007-08-23 Ludovic Courtès <ludo@gnu.org>
  123. * NEWS: Mention Solaris bug fixes.
  124. 2007-08-11 Ludovic Courtès <ludo@gnu.org>
  125. * NEWS: Mention SRFI-35 and the new reader.
  126. 2007-08-08 Ludovic Courtès <ludo@gnu.org>
  127. * NEWS: Mention changes to `record-accessor' and
  128. `record-modifier'.
  129. 2007-07-29 Ludovic Courtès <ludo@gnu.org>
  130. Added Gnulib support.
  131. * autogen.sh: Run `gnulib-tool --update'.
  132. * Makefile.am (SUBDIRS): Added `lib'.
  133. (ACLOCAL_AMFLAGS): Added `-I m4'.
  134. (EXTRA_DIST): Added `m4/ChangeLog'.
  135. * NEWS: Comply with Automake's `check-news' option, i.e., have
  136. the last "Changes in" line appear within the first 15 lines.
  137. Mention use of Gnulib.
  138. * configure.in: Use `build-aux' as `AC_CONFIG_AUX_DIR', and `m4'
  139. as `AC_CONFIG_MACRO_DIR'. Use Automake's `gnu' and `check-news'
  140. options.
  141. Require Autoconf 2.59. Invoke `gl_EARLY' and `gl_INIT', don't
  142. run `AC_AIX', `AC_ISC_POSIX' and `AC_MINIX' since they are
  143. implied by `gl_EARLY'. Don't look for <strings.h> and
  144. `strncasecmp'. Don't invoke `AC_FUNC_ALLOCA'. Produce
  145. `lib/Makefile'.
  146. 2007-07-25 Ludovic Courtès <ludo@gnu.org>
  147. * NEWS: Mention bug fix for "(set! 'x #f)".
  148. 2007-07-22 Ludovic Courtès <ludo@gnu.org>
  149. * configure.in: Check for <strings.h> and `strncasecmp ()'.
  150. 2007-07-19 Ludovic Courtès <ludo@gnu.org>
  151. * NEWS: Mention `(ice-9 i18n)' and lazy duplicate binding
  152. resolution.
  153. 2007-07-18 Ludovic Courtès <ludo@gnu.org>
  154. * NEWS: Mention SRFI-37.
  155. 2007-07-15 Ludovic Courtès <ludo@gnu.org>
  156. Guile 1.8.2 released.
  157. * NEWS: Mention HP-UX/IA64 build fixes.
  158. * THANKS: Added people who reported bugs or sent patches since
  159. 1.8.1. Converted to UTF-8.
  160. * README: Updated version number.
  161. * Makefile.am (EXTRA_DIST): Removed `BUGS' (was outdated).
  162. * ANON-CVS, HACKING, SNAPSHOTS: New, from the `workbook'
  163. directory of the CVS repository.
  164. * autogen.sh: Removed dependency on the `workbook' CVS
  165. directory.
  166. * GUILE-VERSION (GUILE_MICRO_VERSION): Set to 2.
  167. (LIBGUILE_INTERFACE_CURRENT): Incremented due to new symbols.
  168. (LIBGUILE_INTERFACE_REVISION): Set to 0.
  169. (LIBGUILE_INTERFACE_AGE): Incremented.
  170. (LIBGUILE_SRFI_SRFI_60_INTERFACE_REVISION): Incremented due to
  171. bug fixes.
  172. 2007-07-11 Ludovic Courtès <ludo@gnu.org>
  173. * NEWS: Mention GOOPS `method-more-specific?' bug fix.
  174. 2007-07-09 Ludovic Courtès <ludo@gnu.org>
  175. * NEWS: Mention SRFI-19 `date->julian-day' bug fix.
  176. 2007-06-26 Ludovic Courtès <ludo@gnu.org>
  177. * NEWS: Mention fixed memory leaks.
  178. 2007-06-12 Ludovic Courtès <ludo@chbouib.org>
  179. * NEWS: Mention `inet-ntop' bug fix.
  180. 2007-05-09 Ludovic Courtès <ludo@chbouib.org>
  181. * NEWS: Mention SRFI-19 `time-process' bug fix.
  182. 2007-04-17 Ludovic Courtès <ludovic.courtes@laas.fr>
  183. * configure.in (GUILE_FOR_BUILD): Reverted to `$(preinstguile)'
  184. instead of `$(top_builddir_absolute)/$(preinstguile)'.
  185. 2007-04-09 Han-Wen Nienhuys <hanwen@lilypond.org>
  186. * configure.in (HAVE_CRYPT): check for cexp, clog, carg
  187. 2007-02-24 Neil Jerram <neil@ossau.uklinux.net>
  188. * autogen.sh: Announce versions of autoconf, automake, libtool and
  189. m4.
  190. * pre-inst-guile.in (subdirs_with_ltlibs): Add libguile.
  191. 2007-02-18 Neil Jerram <neil@ossau.uklinux.net>
  192. * config.rpath (Module): New (from gettext package).
  193. 2007-01-31 Ludovic Courtès <ludovic.courtes@laas.fr>
  194. * configure.in: Look for `langinfo.h', `nl_types.h', `xlocale.h'
  195. and `nl_langinfo'.
  196. 2007-01-28 Neil Jerram <neil@ossau.uklinux.net>
  197. * INSTALL: New upstream version.
  198. * ABOUT-NLS: New upstream version.
  199. 2007-01-23 Kevin Ryde <user42@zip.com.au>
  200. * configure.in (isinf, isnan): Use a volatile global to stop gcc
  201. optimizing out the test. In particular this fixes solaris where there
  202. isn't an isinf or isnan (though gcc still optimizes as if there is).
  203. Reported by Hugh Sasse.
  204. (AC_C_VOLATILE): New.
  205. 2007-01-22 Han-Wen Nienhuys <hanwen@lilypond.org>
  206. * .gitignore: new file. Make using git easier.
  207. 2007-01-22 Kevin Ryde <user42@zip.com.au>
  208. * configure.in (AC_INIT): Don't use "echo -n", it's not portable and
  209. in particular fails on solaris (resulting in literal "-n"s going into
  210. the output, making the resulting configure unusable). Reported by
  211. Hugh Sasse.
  212. 2007-01-03 Han-Wen Nienhuys <hanwen@lilypond.org>
  213. * autogen.sh (Module): only try to run render-bugs if it exists.
  214. 2006-12-27 Kevin Ryde <user42@zip.com.au>
  215. * configure.in (pthread_get_stackaddr_np, pthread_sigmask): New tests.
  216. 2006-12-24 Han-Wen Nienhuys <hanwen@lilypond.org>
  217. * autogen.sh (mscripts): only execute render-bugs if it exists.
  218. 2006-12-23 Kevin Ryde <user42@zip.com.au>
  219. * configure.in (-lm): No need to suppress libm on mingw, it's not
  220. needed because it's empty, but including it does no harm.
  221. (-lm): Look for "cos" instead of "main", since cos and friends are the
  222. purpose of looking for libm.
  223. (winsock etc): Test $host = *-*-mingw* rather than $MINGW32, autoconf
  224. regards the latter as obsolete.
  225. (AC_MINGW32): Remove test, $MINGW32 now unused.
  226. (uint32_t): Look at HAVE_NETDB_H rather than hard-coding __MINGW32__
  227. in the test program.
  228. 2006-12-15 Kevin Ryde <user42@zip.com.au>
  229. * configure.in (process.h, pipe, _pipe): New checks.
  230. 2006-12-14 Kevin Ryde <user42@zip.com.au>
  231. * configure.in (struct timespec, pthread.h): Look for struct timespec
  232. in <pthread.h> as well as <time.h>, it's in pthread.h on mingw.
  233. Reported by Nils Durner.
  234. 2006-12-03 Kevin Ryde <user42@zip.com.au>
  235. * Makefile.am (AUTOMAKE_OPTIONS): Bump to automake 1.10 required, so
  236. that config.rpath from gettext will go into the dist (and give an
  237. error if not).
  238. * configure.in (AM_PROG_CC_C_O): New macro, needed by automake 1.10
  239. for per-target cflags in libguile/Makefile.am.
  240. 2006-11-18 Ludovic Courtès <ludovic.courtes@laas.fr>
  241. * GUILE-VERSION: Added `LIBGUILE_I18N_*'.
  242. * configure.in: Look for `strcoll_l ()' and `newlocale ()'.
  243. Substitute the `LIBGUILE_I18N_' variables.
  244. * NEWS: Mention `(ice-9 i18n)'.
  245. 2006-11-17 Neil Jerram <neil@ossau.uklinux.net>
  246. * README: Note need for subscription to bug-guile@gnu.org.
  247. * NEWS: Note need for subscription to bug-guile@gnu.org.
  248. 2006-11-08 Ludovic Courtès <ludovic.courtes@laas.fr>
  249. * configure.in: Pass `bug-guile@gnu.org' as a third argument to
  250. `AC_INIT'.
  251. 2006-10-25 Neil Jerram <neil@ossau.uklinux.net>
  252. IA64 HP-UX patch from Hrvoje Nikšić. (Thanks!)
  253. * configure.in: New check for uca lib (needed for IA64 on HP-UX).
  254. 2006-10-06 Rob Browning <rlb@defaultvalue.org>
  255. Guile 1.8.1 released.
  256. * GUILE-VERSION (GUILE_MICRO_VERSION): Increment for release.
  257. (LIBGUILE_INTERFACE_REVISION): Increment for release.
  258. (LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION): Increment for release.
  259. (LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION): Increment for release.
  260. (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION): Increment for release.
  261. (LIBGUILE_SRFI_SRFI_60_INTERFACE_REVISION): Increment for release.
  262. * Makefile.am (EXTRA_DIST): Add LICENSE.
  263. 2006-09-28 Kevin Ryde <user42@zip.com.au>
  264. * configure.in (chsize, ftruncate, truncate): New tests, for mingw.
  265. 2006-09-27 Kevin Ryde <user42@zip.com.au>
  266. * configure.in (clog10): New test, not in mingw.
  267. 2006-09-23 Kevin Ryde <user42@zip.com.au>
  268. * configure.in (complex.h, complex double, csqrt): New tests.
  269. 2006-09-20 Ludovic Courtès <ludovic.courtes@laas.fr>
  270. * configure.in: Check for `isblank ()'.
  271. * NEWS: Mentioned the interaction between `setlocale' and SRFI-14
  272. standard char sets.
  273. 2006-08-22 Kevin Ryde <user42@zip.com.au>
  274. * configure.in: Test if need braces around PTHREAD_ONCE_INIT, set
  275. AC_OUTPUT of SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT.
  276. 2006-08-18 Neil Jerram <neil@ossau.uklinux.net>
  277. * configure.in: Generate Makefile for emacs subdir.
  278. * Makefile.am (SUBDIRS): Add emacs subdir.
  279. * configure.in: Generate Makefile for ice-9/debugging subdir.
  280. 2006-07-25 Kevin Ryde <user42@zip.com.au>
  281. * configure.in (AC_CHECK_FUNCS): Add pthread_getattr_np.
  282. 2006-07-24 Kevin Ryde <user42@zip.com.au>
  283. * configure.in (AC_CHECK_DECLS): Add sethostname for Solaris 10.
  284. (AC_CHECK_FUNCS): Remove dirfd, it's a macro.
  285. Reported by Claes Wallin.
  286. 2006-06-25 Kevin Ryde <user42@zip.com.au>
  287. * configure.in (AC_CHECK_MEMBERS): Test struct tm.tm_gmtoff.
  288. 2006-06-13 Ludovic Courtès <ludovic.courtes@laas.fr>
  289. * NEWS: Mentioned the new behavior of `equal?' for structures.
  290. 2006-06-06 Neil Jerram <neil@ossau.uklinux.net>
  291. * acinclude.m4 (ACX_PTHREAD): Update to latest definition from
  292. autoconf macro archive, to fix pthread linking problem on Solaris
  293. 10, reported by Charles Gagnon.
  294. 2006-05-28 Kevin Ryde <user42@zip.com.au>
  295. * configure.in (isnan): Remove "#ifdef __MINGW32__, #define isnan
  296. _isnan". Mingw provides isnan as a macro (in math.h), the test
  297. already detects it just fine with no special case.
  298. 2006-05-26 Kevin Ryde <user42@zip.com.au>
  299. * configure.in (AC_CHECK_FUNCS): Add ioctl.
  300. (pthread_attr_getstack): Restrict test to pthreads case, to avoid
  301. AC_TRY_RUN when cross-compiling --without-threads.
  302. 2006-05-20 Kevin Ryde <user42@zip.com.au>
  303. * configure.in (S_ISLNK): Remove test, leave it to #ifdef in the .c
  304. files.
  305. 2006-05-16 Kevin Ryde <user42@zip.com.au>
  306. * configure.in (struct stat st_blocks): Change AC_STRUCT_ST_BLOCKS to
  307. a plain AC_CHECK_MEMBERS, we don't want AC_LIBOBJ(fileblocks) which
  308. the former gives. Remove the commented-out code that was to have
  309. munged fileblocks out of LIBOBJS. This fixes mingw, where the lack of
  310. st_blocks and absense of the fileblocks.c replacement caused build
  311. failure. Reported by "The Senator".
  312. (struct stat st_rdev, st_blksize): Combine into a single
  313. AC_CHECK_MEMBERS.
  314. 2006-04-18 Rob Browning <rlb@defaultvalue.org>
  315. * configure.in: Add AC_CONFIG_AUX_DIR([.]) as suggested in the
  316. autotools documentation.
  317. 2006-04-16 Kevin Ryde <user42@zip.com.au>
  318. * configure.in (stat64, off_t): New tests.
  319. 2006-03-31 Kevin Ryde <user42@zip.com.au>
  320. * configure.in (socklen_t): Enhance test for this type, coping with
  321. need for <sys/socket.h> on MacOS X. Reported by Michael Tuexen and
  322. Jay Cotton.
  323. 2006-03-26 Marius Vollmer <mvo@zagadka.de>
  324. * configure.in: Added check that defines
  325. PTHREAD_ATTR_GETSTACK_WORKS when pthread_attr_getstack works for
  326. the main thread.
  327. 2006-02-26 Kevin Ryde <user42@zip.com.au>
  328. * configure.in (AC_CHECK_FUNCS): Add dirfd.
  329. 2006-02-20 Marius Vollmer <mvo@zagadka.de>
  330. Released 1.8.0.
  331. * GUILE-VERSION: Set version.
  332. * GUILE-VERSION: Bumped versions for 1.9 series.
  333. 2006-02-06 Marius Vollmer <mvo@zagadka.de>
  334. Branched for 1.8 series.
  335. * GUILE-VERSION: Bumped version numbers.
  336. * configure.in: Removed --enable-arrays option.
  337. 2005-12-14 Neil Jerram <neil@ossau.uklinux.net>
  338. * NEWS: Remove entry claiming that breakpoints have been added,
  339. because breakpoints are now implemented outside the core distro.
  340. Add entries on obsolescence of the 'cheap option and on tweaking
  341. support in evaluator trap calls. Finally, correct outline level
  342. of item about make-keyword-from-dash-symbol.
  343. 2005-07-09 Neil Jerram <neil@ossau.uklinux.net>
  344. * configure.in (AC_CONFIG_FILES): Removed emacs/Makefile and
  345. ice-9/debugger/breakpoints/Makefile.
  346. * Makefile.am (SUBDIRS): Removed emacs.
  347. 2005-06-05 Marius Vollmer <mvo@zagadka.de>
  348. From Jan Nieuwenhuizen <janneke@gnu.org>. Thanks!
  349. * configure.in: Add tests for socklen_t and ip_mreq.
  350. 2005-03-13 Kevin Ryde <user42@zip.com.au>
  351. * configure.in, GUILE-VERSION (LIBGUILE_SRFI_SRFI_60): New defines.
  352. 2005-03-09 Marius Vollmer <mvo@zagadka.de>
  353. Guile 1.7.2 has been released.
  354. * GUILE-VERSION (GUILE_MICRO_VERSION): Incremented to "2".
  355. 2005-03-08 Marius Vollmer <mvo@zagadka.de>
  356. libltdl is no longer distributed. We expect it to be installed
  357. already.
  358. * configure.in: Do not call AC_LIBLTDL_INSTALLABLE. Use
  359. AC_CHECK_LIB instead. Do not subst LTDLINCL and LIBLTDL. Do not
  360. add "-DLIBLTDL_DLL_IMPORT" on MINGW32.
  361. * Makefile.am (SUBDIRS): Removed libltdl.
  362. * README: Talk about required external packages.
  363. * autogen.sh: Do not call libtoolize.
  364. 2005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  365. * configure.in: Do not check for fast or recursive mutexes. Check
  366. for pthread_attr_getstack.
  367. (SCM_I_GSC_USE_COOP_THREADS): Dot not subst.
  368. (pthread_mutexattr_settype): Do not check for it.
  369. 2005-02-28 Marius Vollmer <mvo@zagadka.de>
  370. * autogen.sh: Add '--verbose' option to autoreconf invocation.
  371. Thanks to Bruno Haible.
  372. 2005-01-02 Marius Vollmer <mvo@zagadka.de>
  373. * configure.in (SCM_I_GSC_HAVE_ARRAYS): Removed '--disable-arrays'
  374. option.
  375. 2004-11-28 Kevin Ryde <user42@zip.com.au>
  376. * configure.in (AC_SUBST): Correction, LTDLINC should be LTDLINCL, the
  377. latter is what libtool defines.
  378. 2004-10-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  379. * libguile.h: Include "libguile/srfi-4.h".
  380. 2004-10-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  381. * autogen.sh: Added explicit invocation of libtoolize before
  382. autoreconf so that libltdl/ is updated as well.
  383. 2004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  384. Removed usage of libguile-ltdl.
  385. * configure.in: Call AC_LIBLTDL_INSTALLABLE instead of
  386. AC_LIB_LTDL.
  387. (AC_CONFIG_SUBDIRS): Added libltdl.
  388. (DLPREOPEN, LTDLINC, LIBLTDL): Moved AC_SUBST near other libtool
  389. stuff. Also subst LTDLINC instead of INCLTDL.
  390. (AC_CONFIG_FILES): Removed libguile-ltdl/Makefile and
  391. libguile-ltdl/upstream/Makefile.
  392. * Makefile.am (SUBDIRS): Replaced libguile-ltdl with libltdl.
  393. 2004-09-28 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  394. * ABOUT-NLS: New, from gettext 0.14.1.
  395. * configure.in: Do use AM_GNU_GETTEXT, since gettextize is not run
  396. with autoconf 2.59.
  397. 2004-09-25 Marius Vollmer <mvo@zagadka.de>
  398. * configure.in: Do not use AM_GNU_GETTEXT for now, it causes
  399. gettextize to run during autogen.sh, which we do not want.
  400. Explicitely check for libintl, gettext, bindtextdomain, and
  401. textdomain instead.
  402. 2004-09-24 Marius Vollmer <mvo@zagadka.de>
  403. * libguile.h: Include <gmp.h> outside of extern "C" block.
  404. (Note that numbers.h still includes gmp.h to make it
  405. self-contained.)
  406. * configure.in: Do not include PTHREAD_CFLAGS in CFLAGS, CFLAGS is
  407. for the user and is often overwritten temporarily.
  408. (GUILE_CFLAGS): New, include PTHREAD_CFLAGS here.
  409. (GUILE_LIBS): Remove THREAD_LIBS_INSTALLED, which is unused now.
  410. 2004-09-22 Marius Vollmer <mvo@zagadka.de>
  411. * configure.in: Add AM_GNU_GETTEXT invocation. From Bruno Haible.
  412. 2004-09-21 Marius Vollmer <mvo@zagadka.de>
  413. * acinclude.m4 (ACX_PTHREAD): New.
  414. * configure.in: Use it instead of simply looking for -lpthread.
  415. Thanks to Andreas Vögele!
  416. 2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  417. * configure.in: Fail when alloca can not be found natively.
  418. 2004-09-03 Stefan Jahn <stefan@lkcc.org>
  419. * configure.in (isinf): Let configure find the isinf() function
  420. on MinGW32 systems.
  421. 2004-08-27 Kevin Ryde <user42@zip.com.au>
  422. * configure.in (AC_CHECK_MEMBERS): Add struct sockaddr.sin_len and
  423. struct sockaddr_in6.sin6_len. Reported by Michael Tuexen.
  424. 2004-08-27 Marius Vollmer <mvo@zagadka.de>
  425. Guile 1.7.1 as been released.
  426. 2004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  427. * GUILE-VERSION: Bumped all versions for the 1.7.1 release. Added
  428. LIBGUILE_*_MAJOR variables for inclusion in the names of shared
  429. libraries such as "libguile-srfi-srfi-1-v-MAJOR.la". Removed
  430. LIBQTHREADS_*.
  431. * configure.in: Updated for the new set of variables defined in
  432. GUILE-VERSION.
  433. 2004-08-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  434. * libguile.h: Include srfi-13.h and srfi-14.h, do not include
  435. strop.h.
  436. 2004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  437. * README: Document the new --disable-discouraged option.
  438. * configure.in (SCM_I_GSC_ENABLE_DISCOURAGED): New, for the new
  439. --enable-discouraged option.
  440. * libguile.h: Include libguile/discouraged.h.
  441. 2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  442. * configure.in: Bugfix: logic in detecting ptrdiff_t was inverted;
  443. assume ptrdiff_t is available when its size is non-zero, not when
  444. it is zero. Do no longer define SCM_I_GSC_*_LIMITS macros. Check
  445. for sizes of size_t and intmax_t.
  446. 2004-07-09 Marius Vollmer <mvo@zagadka.de>
  447. * configure.in: Bugfix: set SCM_I_GSC_T_UINTMAX, not
  448. SCM_I_GSC_T_INTMAX in two places. Thanks to Andreas Vögele!
  449. 2004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  450. * configure.in: When checking for suitable types for scm_t_int8,
  451. etc, try int8_t first, so that we pick them up when they are
  452. defined. Also, substitute limit macros like INT8_MIN into the
  453. configure header for all these types.
  454. 2004-07-05 Kevin Ryde <user42@zip.com.au>
  455. * configure.in (isinf, isnan): Detect macro versions as well as
  456. functions, since C99 specifies them as macros and that's all HP-UX
  457. has. Reported by Andreas Voegele.
  458. 2004-06-28 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  459. * configure.in: Removed code for --enable-htmldoc; support for
  460. HTML is now included in automake.
  461. 2004-06-16 Rob Browning <rlb@defaultvalue.org>
  462. * pre-inst-guile.in: modify to handle move of readline.scm to
  463. ice-9 subdir of guile-readline.
  464. * pre-inst-guile-env.in: modify to handle move of readline.scm to
  465. ice-9 subdir of guile-readline.
  466. * configure.in: move package and version args to AC_INIT as is now
  467. recommended. This also requires m4_esyscmd to read GUILE-VERSION
  468. given the way AC_INIT handles its args.
  469. 2004-04-22 Kevin Ryde <user42@zip.com.au>
  470. * configure.in (AC_CHECK_HEADERS): Add fenv.h.
  471. (AC_CHECK_FUNCS): Add fesetround.
  472. 2004-04-18 Kevin Ryde <user42@zip.com.au>
  473. * configure.in (AC_CHECK_FUNCS): Add readdir_r.
  474. 2004-03-23 Kevin Ryde <user42@zip.com.au>
  475. * configure.in (AC_CHECK_FUNCS): Add sysconf.
  476. (AC_CHECK_HEADERS): Add netdb.h and sys/param.h.
  477. 2004-03-21 Kevin Ryde <user42@zip.com.au>
  478. * configure.in (AC_CHECK_FUNCS): Add gmtime_r.
  479. 2004-03-14 Kevin Ryde <user42@zip.com.au>
  480. * configure.in (strptime): Use #define _GNU_SOURCE to get the
  481. prototype from glibc, use AC_CHECK_DECLS rather than AC_EGREP_HEADER.
  482. 2004-02-29 Kevin Ryde <user42@zip.com.au>
  483. * configure.in: Use AC_COPYRIGHT and AH_TOP to get copyright notice
  484. into generated configure and config.h.in.
  485. * configure.in (AC_CHECK_FUNCS): Add DINFINITY and DQNAN.
  486. 2004-02-21 Kevin Ryde <user42@zip.com.au>
  487. * configure.in (crypt): Test with AC_SEARCH_LIBS, for the benefit of
  488. HP-UX. Define HAVE_CRYPT rather than HAVE_LIBCRYPT. Reported by
  489. Andreas Voegele.
  490. 2004-02-18 Kevin Ryde <user42@zip.com.au>
  491. * configure.in (AC_CHECK_HEADERS): Add crt_externs.h.
  492. (AC_CHECK_FUNCS): Add _NSGetEnviron.
  493. 2004-02-15 Mikael Djurfeldt <mdj@chunk.mit.edu>
  494. * configure.in: Use AC_PROG_LIBTOOL instead of AM_PROG_LIBTOOL.
  495. 2004-01-25 Neil Jerram <neil@ossau.uklinux.net>
  496. * configure.in (GUILE_FUNC_DECLARED), acinclude.m4
  497. (GUILE_STRUCT_UTIMBUF, GUILE_NAMED_CHECK_FUNC): Correctly quote
  498. macros being defined.
  499. 2003-12-26 Marius Vollmer <mvo@zagadka.de>
  500. * configure.in: Find a suitable type for the new scm_t_intmax and
  501. scm_t_uintmax.
  502. 2003-11-17 Rob Browning <rlb@defaultvalue.org>
  503. * configure.in: rewrite ALLOCA related code as multiple lines so
  504. it doesn't break with current autoconf substitutions.
  505. 2003-11-15 Kevin Ryde <user42@zip.com.au>
  506. * configure.in (--with-guile-for-build): Remove this option, it's not
  507. normal style for --with.
  508. (GUILE_FOR_BUILD): Use AC_ARG_VAR.
  509. * README (Cross building Guile): Describe GUILE_FOR_BUILD rather than
  510. --with-guile-for-build.
  511. 2003-11-11 Neil Jerram <neil@ossau.uklinux.net>
  512. * .cvsignore: Add elisp-comp.
  513. 2003-10-30 Neil Jerram <neil@ossau.uklinux.net>
  514. * configure.in (AC_CONFIG_FILES): Add `emacs/Makefile'.
  515. (AM_PATH_LISPDIR): Added.
  516. * Makefile.am (SUBDIRS): Add `emacs'.
  517. 2003-07-27 Marius Vollmer <mvo@zagadka.de>
  518. * configure.in: Look for sched_yield in -lrt; this is needed for
  519. Solaris. Thanks to Matthias Koeppe!
  520. (setgroups): Check for it.
  521. * configure.in (__libc_stack_end): Actually use the value in
  522. __libc_stack_end for something so that the access doesn't get
  523. optimized away. Thanks to Matthias Koeppe!
  524. 2003-07-08 Kevin Ryde <user42@zip.com.au>
  525. * configure.in (AC_CHECK_FUNCS): Add sincos.
  526. 2003-06-21 Kevin Ryde <user42@zip.com.au>
  527. * configure.in (AC_CHECK_FUNCS): Add asinh, acosh, atanh and trunc.
  528. 2003-06-19 Marius Vollmer <mvo@zagadka.de>
  529. * configure.in: use "-Werror" only with GCC. Thanks to Matthias
  530. Koeppe!
  531. 2003-06-19 Kevin Ryde <user42@zip.com.au>
  532. * README (Guile Documentation): Update to manuals now available,
  533. remove notes about the reference manual being in progress.
  534. 2003-06-14 Stefan Jahn <stefan@lkcc.org>
  535. * configure.in: Checking for __int64 as possible candidate for
  536. the SCM_I_GSC_T_INT64 define.
  537. 2003-05-30 Stefan Jahn <stefan@lkcc.org>
  538. * configure.in: Checking for unsetenv().
  539. 2003-05-29 Stefan Jahn <stefan@lkcc.org>
  540. * configure.in: Removed -lm check and added a cached check for
  541. __libc_stack_end to get it building for mingw32 hosts.
  542. 2003-05-19 Kevin Ryde <user42@zip.com.au>
  543. * README (Cross building Guile): Remove --with-cc-for-build in favour
  544. of CC_FOR_BUILD.
  545. 2003-05-16 Kevin Ryde <user42@zip.com.au>
  546. * configure.in (--with-cc-for-build): Remove this option, CC_FOR_BUILD
  547. variable is more or less standard, and is adequate for the task.
  548. 2003-05-12 Kevin Ryde <user42@zip.com.au>
  549. * configure.in (CC_FOR_BUILD): Use AC_ARG_VAR.
  550. * configure.in (SCM_SINGLES): Use AC_CHECK_SIZEOF(float), to
  551. eliminate guess-yes when cross compiling.
  552. * configure.in (SCM_I_GSC_STACK_GROWS_UP): Fix missing comma in
  553. AC_TRY_RUN.
  554. 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
  555. * libguile.h: Removed uses of DEBUG_EXTENSIONS to fix compile
  556. errors with --disable-deprecated.
  557. 2003-04-07 Rob Browning <rlb@defaultvalue.org>
  558. * pre-inst-guile-env.in: new script -- can be used to run commands
  559. in an envt set up using the development libs, Guile, etc.
  560. * configure.in: handle pre-inst-guile-env and add
  561. test-suite/standalone/Makefile.
  562. 2003-04-06 Marius Vollmer <mvo@zagadka.de>
  563. * configure.in: Check for mpz_import, which is required but only
  564. available in GMP 4.1.
  565. 2003-04-05 Marius Vollmer <mvo@zagadka.de>
  566. * Changed license terms to the plain LGPL thru-out.
  567. 2003-04-04 Rob Browning <rlb@defaultvalue.org>
  568. * configure.in: add GMP test (require GMP).
  569. 2003-03-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  570. * libguile.h: Include "libguile/deprecated.h".
  571. 2003-03-25 Rob Browning <rlb@defaultvalue.org>
  572. * configure.in: big overhaul to shift us to have separate private,
  573. config.h, and public, scmconfig.h, configuration headers. Added a
  574. fair amount of code to track down new required types: scm_t_uint8,
  575. scm_t_uint16, scm_t_uint32, scm_t_int8, scm_t_int16, scm_t_int32,
  576. and to detect optional types scm_t_uint64, scm_t_in64, long long,
  577. unsigned long long, scm_t_ptrdiff, intptr_t, and uintptr_t.
  578. (SCM_I_GSC_T_PTRDIFF): gen-scmconfig.h.in AC_SUBST var.
  579. (SCM_I_GSC_NEEDS_INTTYPES_H): gen-scmconfig.h.in AC_SUBST var.
  580. (SCM_I_GSC_NEEDS_STDINT_H): gen-scmconfig.h.in AC_SUBST var.
  581. (SCM_I_GSC_T_UINT8): gen-scmconfig.h.in AC_SUBST var.
  582. (SCM_I_GSC_T_UINT16): gen-scmconfig.h.in AC_SUBST var.
  583. (SCM_I_GSC_T_UINT32): gen-scmconfig.h.in AC_SUBST var.
  584. (SCM_I_GSC_T_UINT64): gen-scmconfig.h.in AC_SUBST var.
  585. (SCM_I_GSC_T_INT8): gen-scmconfig.h.in AC_SUBST var.
  586. (SCM_I_GSC_T_INT16): gen-scmconfig.h.in AC_SUBST var.
  587. (SCM_I_GSC_T_INT32): gen-scmconfig.h.in AC_SUBST var.
  588. (SCM_I_GSC_T_INT64): gen-scmconfig.h.in AC_SUBST var.
  589. (USE_PTHREAD_THREADS): removed - handled by gen-scmconfig.c.
  590. (USE_NULL_THREADS): removed - handled by gen-scmconfig.c.
  591. (USE_COOP_THREADS): removed - handled by gen-scmconfig.c.
  592. (SCM_I_GSC_USE_PTHREAD_THREADS): gen-scmconfig.h.in AC_SUBST var.
  593. (SCM_I_GSC_USE_NULL_THREADS): gen-scmconfig.h.in AC_SUBST var.
  594. (SCM_I_GSC_USE_COOP_THREADS): gen-scmconfig.h.in AC_SUBST var.
  595. (STACK_GROWS_UP): removed - handled by gen-scmconfig.c.
  596. (SCM_I_GSC_STACK_GROWS_UP): gen-scmconfig.h.in AC_SUBST var.
  597. (GUILE_DEBUG_FREELIST): removed - handled by gen-scmconfig.c.
  598. (SCM_I_GSC_GUILE_DEBUG_FREELIST): gen-scmconfig.h.in AC_SUBST var.
  599. (GUILE_DEBUG): removed - handled by gen-scmconfig.c.
  600. (SCM_I_GSC_GUILE_DEBUG): gen-scmconfig.h.in AC_SUBST var.
  601. (SCM_ENABLE_DEPRECATED): removed - handled by gen-scmconfig.c.
  602. (SCM_I_GSC_ENABLE_DEPRECATED): gen-scmconfig.h.in AC_SUBST var.
  603. (HAVE_ARRAYS): removed - handled by gen-scmconfig.c.
  604. (SCM_I_GSC_HAVE_ARRAYS): gen-scmconfig.h.in AC_SUBST var.
  605. (SCM_ENABLE_ELISP): removed - handled by gen-scmconfig.c.
  606. (SCM_I_GSC_ENABLE_ELISP): gen-scmconfig.h.in AC_SUBST var.
  607. (SCM_I_GSC_C_INLINE): gen-scmconfig.h.in AC_SUBST var.
  608. (DEBUG_EXTENSIONS): removed - handled by gen-scmconfig.c.
  609. (READER_EXTENSIONS): removed - handled by gen-scmconfig.c.
  610. (USE_THREADS): removed - handled by gen-scmconfig.c.
  611. (GUILE_ISELECT): removed - handled by gen-scmconfig.c.
  612. (DYNAMIC_LINKING): removed - handled by gen-scmconfig.c.
  613. * README: merge information from INSTALL and remove at least some
  614. of the stale bits.
  615. * LICENSE: new file -- we should change this to the LGPL soon and
  616. add COPYING.LIB to the distribution.
  617. * autogen.sh: call autoreconf with --force. This may fix the
  618. "order" problem below without having to have two calls.
  619. * INSTALL: use the automake installed INSTALL file. The Guile
  620. specific instructions are now in README.
  621. 2003-03-21 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  622. * autogen.sh: Invoke autoreconf twice since the required files do
  623. not seem to be generated in the right order. XXX - investigate
  624. further.
  625. 2003-03-19 Marius Vollmer <mvo@zagadka.de>
  626. * guile-tools.in (guileversion): Use $GUILE_EFFECTIVE_VERSION
  627. instead of $GUILE_VERSION. Thanks to Kevin Ryde!
  628. 2003-02-27 Rob Browning <rlb@defaultvalue.org>
  629. * configure.in (AC_CONFIG_SRCDIR): use GUILE-VERSION.
  630. (AM_CONFIG_HEADER): change to config.h
  631. * Makefile.am (EXTRA_DIST): remove $(ACLOCAL).
  632. (ACLOCAL_AMFLAGS): replaces ACLOCAL.
  633. * autogen.sh: switch to autoreconf -- see how it goes. remove
  634. call to guile-aclocal.sh -- we now do the same thing with an
  635. automake setting.
  636. * guile-aclocal.sh: deleted in favor of ACLOCAL_AMFLAGS in
  637. Makefile.am.
  638. 2003-02-26 Rob Browning <rlb@defaultvalue.org>
  639. * configure.in: change our config header from libguile/scmconfig.h
  640. to be the traditional ./config.h. libguile/scmconfig.h is now
  641. built from that during the build process. More changes coming...
  642. 2003-01-23 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  643. * libguile.h: #include "futures.h"
  644. 2002-12-16 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  645. * configure.in: Test if pthread.h declares
  646. pthread_mutexattr_settype ().
  647. 2002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  648. * configure.in (SCM_MUTEX_FAST, SCM_MUTEX_RECURSIVE): Test for
  649. ways to get fast and recursive mutexes.
  650. 2002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
  651. * configure.in (_THREAD_SAFE): Define when pthreads are enabled in
  652. order to get thread safe versions of glibc functions.
  653. 2002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  654. * configure.in: Temporarily replaced "copt" threads option with new
  655. option "pthreads".
  656. (USE_PTHREAD_THREADS): Define if pthreads configured.
  657. 2002-12-08 Rob Browning <rlb@defaultvalue.org>
  658. * configure.in (GUILE_EFFECTIVE_VERSION): AC_SUBST it.
  659. (AC_CONFIG_FILES): separate out the files that need to be chmodded
  660. at the end of config.status. Our "default" approach using
  661. AC_CONFIG_COMMANDS quit working (and would have needed to be
  662. changed to AC_CONFIG_COMMANDS(,,CMDS) rather than our previous
  663. AC_CONFIG_COMMANDS(default,CMDS), but I the new approach, using
  664. per-file AC_CONFIG_FILES calls appears to be more "correct" in the
  665. current autoconf docs.
  666. * GUILE-VERSION (GUILE_EFFECTIVE_VERSION): new variable.
  667. 2002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
  668. * Makefile.am (SUBDIRS): Removed qt.
  669. * configure.in: Do not configure QTHREADS. Do not define
  670. USE_COOP_THREADS. Changed logic for thread package selection so
  671. that the default is "coop-pthread" when -lpthread is found, "null"
  672. otherwise.
  673. 2002-12-01 Mikael Djurfeldt <mdj@linnaeus>
  674. * GUILE-VERSION: Added versioning info for srfi 1.
  675. * configure.in (LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT,
  676. LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION,
  677. LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE,
  678. LIBGUILE_SRFI_SRFI_1_INTERFACE): New AC_SUBST.
  679. 2002-11-10 Marius Vollmer <mvo@zagadka.ping.de>
  680. * configure.in (USE_THREADS, GUILE_ISELECT): Define always. We
  681. define them with AC_DEFINE and not in some header file so that
  682. they are visible exactly in the same way as they used to be.
  683. 2002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
  684. * configure.in: Do not add "threads.o" to the libobjs, it is now
  685. always compiled.
  686. (USE_THREADS, GUILE_ISELECT): Do not define.
  687. 2002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
  688. * configure.in: Handle thread package "coop-pthread" with alias
  689. "copt" and define USE_COPT_THREADS when it is selected.
  690. Always define GUILE_ISELECT.
  691. 2002-10-26 Neil Jerram <neil@ossau.uklinux.net>
  692. * configure.in (AC_CONFIG_FILES): Add ice-9/debugger/Makefile and
  693. ice-9/debugger/breakpoints/Makefile.
  694. 2002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
  695. * configure.in: Changed logic in thread support configuration such
  696. that --with-threads=no is equivalent to --with-threads=null. On
  697. platforms that are not supported by QuickThreads, we also use the
  698. null-threads. Thus, USE_THREADS is always defined now.
  699. 2002-10-16 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  700. * configure.in: Shuffled around and extended the thread
  701. configuration code to allow the "null" thread package to be
  702. selected. Define USE_NULL_THREADS in that case.
  703. 2002-10-13 Gary Houston <ghouston@arglist.com>
  704. * autogen.sh (ac_version): try automake 1.7 too.
  705. 2002-10-05 Marius Vollmer <mvo@zagadka.ping.de>
  706. * autogen.sh: Make sure that $autoheader is always set. When we
  707. would use the plain "autoconf", $autoheader would end up empty and
  708. libguile/scmconfig.h.in would not be updated.
  709. 2002-10-04 Rob Browning <rlb@defaultvalue.org>
  710. * libltdl: moved to libguile-ltdl.
  711. * Makefile.am (SUBDIRS): remove libltdl.
  712. * autogen.sh: remove support for libltdl sub-configure.
  713. (ac_version): widen support check to any 2.5? autoconf version.
  714. 2.54 is out now.
  715. * configure.in: turn on -Werror by default. We're now clean. I'd
  716. like to stay that way. If we want, we can turn it off by default
  717. when we make the stable release, but I caught a lot of bugs this
  718. way. Accomodate libguile-ltdl -- therea are some ltdl things that
  719. are commented out now INCLTDL and LIBLTDL. I think we may not
  720. need them anymore, but I'll leave them until we're sure. We also
  721. killed off the libltdl dir and related options including the
  722. AC_CONFIG_SUBDIRS. I also added some explicit tests for some
  723. headers and functions that weren't listed but were in
  724. scmconfig.h.in. though this may have been unnecessary.
  725. 2002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
  726. * configure.in: Use AC_LIBLTDL_CONVENIENCE instead of
  727. AC_LIBLTDL_INSTALLABLE.
  728. 2002-10-03 Marius Vollmer <mvo@zagadka.ping.de>
  729. * autogen.sh: Do not instruct libtoolize to copy libltdl into our
  730. sources. Do not patch it. We have our own version now that is
  731. only being used as a convenience library.
  732. 2002-08-24 Marius Vollmer <mvo@zagadka.ping.de>
  733. * configure.in: Check for __libc_stack_end.
  734. 2002-08-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
  735. * configure.in: add snprintf
  736. 2002-08-04 Han-Wen <hanwen@cs.uu.nl>
  737. * NEWS: add entries for GC and vector WB.
  738. 2002-07-22 Han-Wen <hanwen@cs.uu.nl>
  739. * autogen.sh (mscripts): find and check version number of
  740. automake. Complain if 1.6 is not found.
  741. 2002-07-20 Han-Wen <hanwen@cs.uu.nl>
  742. * autogen.sh (mscripts): find and check version number of
  743. autoconf. Complain if 2.53 is not found.
  744. 2002-07-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
  745. * benchmark-guile.in: Copied from check-guile.in and adapted for
  746. use with benchmarks.
  747. * Makefile.am: Recurse into the benchmark-suite subdir.
  748. * configure.in: Added benchmarking files.
  749. 2002-07-12 Gary Houston <ghouston@arglist.com>
  750. * configure.in: check dynamic linking before modules. Add dynl.c
  751. if dynamic linking is available, i.e., unless --with-modules=no
  752. was given to configure.
  753. 2002-07-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  754. * autogen.sh: Patch libltdl/ltdl.c to avoid a nasty bug in
  755. libtool-1.4.2.
  756. 2002-07-07 Marius Vollmer <mvo@zagadka.ping.de>
  757. * autogen.sh: Do not copy INSTALL from workbook since it is not
  758. uniform across branches.
  759. * INSTALL: Re-added to repository.
  760. Crosscompiling and Cygwin fixes from Jan Nieuwenhuizen. Thanks!
  761. * autogen.sh: Only fix libltdl/configure.in if it exists. Current
  762. libtool CVS does not need this fix.
  763. * configure.in (AC_LIBTOOL_WIN32_DLL): Add for shared Cygwin
  764. build.
  765. Add --with-cc-for-build option to re-enable cross building.
  766. Add --with-guile-for-build option to re-enable cross building.
  767. 2002-06-30 Gary Houston <ghouston@arglist.com>
  768. * autogen.sh: Changed the path to the scripts directory.
  769. In libltdl, run aclocal before autoconf and automake: this
  770. eliminated various warnings after upgrading to newer automake.
  771. 2002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
  772. From John W. Eaton <jwe@bevo.che.wisc.edu>
  773. * configure.in (AC_CHECK_FUNCS): Check for copysign.
  774. 2002-05-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  775. * libguile.h: Added inclusion of "extensions.h".
  776. 2002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
  777. * configure.in: Include <sys/types.h> before <netinet/in.h> when
  778. checking vor IPv6. This is for NetBSD 1.5. Thanks to Greg
  779. Troxel!
  780. From John W. Eaton.
  781. * configure.in (AC_CHECK_HEADERS): Check for floatingpoint.h
  782. ieeefp.h, and nan.h.
  783. (AC_CHECK_FUNCS): Check for finite, isinf, and isnan.
  784. 2002-05-01 Thien-Thi Nguyen <ttn@giblet.glug.org>
  785. * autogen.sh: Add call to $mscripts/render-bugs
  786. to create BUGS file.
  787. * BUGS: bye bye
  788. 2002-04-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
  789. * Makefile.am (EXTRA_DIST): Remove qthreads.m4.
  790. 2002-04-26 Marius Vollmer <mvo@zagadka.ping.de>
  791. * guile-aclocal.sh: Replaced with a simple invocation of "aclocal
  792. -I guile-config". This works as of automake 1.5.
  793. * qthreads.m4: Moved to guile-config/.
  794. 2002-04-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  795. * autogen.sh: Call automake twice for guile-core so that two
  796. copies of mdate-sh get a chance of being installed (one in
  797. doc/ref/ and one in doc/tutorial/).
  798. 2002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
  799. * Makefile.am (AUTOMAKE_OPTIONS): New, to request version 1.5.
  800. (EXTRA_DIST): Don't distribute acconfig.h, which is gone.
  801. (dist-hook): Removed.
  802. (DISTCLEANFILES): Added check-guile.log.
  803. (EXTRA_DIST): Don't distribute TODO.
  804. * configure.in: Bump required autoconf version to 2.53. Move uses
  805. of AC_LIBOBJ after AC_PROG_CC. AC_LIBOBJ needs OBJEXT which is
  806. set by AC_PROG_CC.
  807. 2002-04-10 Rob Browning <rlb@defaultvalue.org>
  808. * configure.in: updates for new autoconf -- add definitions to
  809. AC_DEFINE calls, and convert occurences of LIBOBJS to AC_LIBOBJ
  810. calls.
  811. * acinclude.m4: add definitions to AC_DEFINE calls for new
  812. autoconf.
  813. * acconfig.h: removed -- newer autoconf doesn't like it, and now
  814. we don't need it.
  815. * .cvsignore: add autom4te.cache and pre-inst-guile.
  816. 2002-04-03 Thien-Thi Nguyen <ttn@giblet.glug.org>
  817. * RELEASE: bye bye
  818. 2002-03-31 Thien-Thi Nguyen <ttn@giblet.glug.org>
  819. * Makefile.am: Update copyright.
  820. (dist-hook): Add, including related am/maintainers-dirs,
  821. surrounded by "if MAINTAINER_MODE".
  822. * TODO: bye bye
  823. * autogen.sh: Add usage comment.
  824. Add workbook specification.
  825. Add dist-files symlinking.
  826. * ANON-CVS, HACKING, INSTALL, SNAPSHOTS: bye bye
  827. 2002-03-06 Thien-Thi Nguyen <ttn@giblet.glug.org>
  828. * guile-tools.in: Handle "--source" option.
  829. 2002-03-04 Thien-Thi Nguyen <ttn@giblet.glug.org>
  830. * configure.in (top_srcdir_absolute): New AC_SUBST var.
  831. * pre-inst-guile.in, check-guile.in (top_srcdir):
  832. Use `top_srcdir_absolute' AC_SUBST var.
  833. * pre-inst-guile.in (top_srcdir): Fix ref bug: Force absolute.
  834. 2002-02-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
  835. * pre-inst-guile.in: Typofix; nfc.
  836. 2002-02-27 Stefan Jahn <stefan@lkcc.org>
  837. * Makefile.am (SUBDIRS): Added the `am' directory.
  838. 2002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
  839. * pre-inst-guile.in: New file.
  840. * pre-inst-guile, pre-inst-guile.am: bye bye
  841. * configure.in (top_builddir_absolute): New AC_SUBST var.
  842. (AC_CONFIG_FILES): Add am/Makefile, pre-inst-guile.
  843. (AC_CONFIG_COMMANDS): Also chmod +x pre-inst-guile.
  844. * check-guile.in (top_builddir): Use AC_SUBST var
  845. `top_builddir_absolute'.
  846. (guile): Look for pre-inst-guile in $top_builddir.
  847. * Makefile.am (EXTRA_DIST): Remove pre-inst-guile,
  848. pre-inst-guile.am.
  849. 2002-02-24 Rob Browning <rlb@defaultvalue.org>
  850. * GUILE-VERSION: move all but guile-readline library versioning
  851. information here. guile-readline is still standalone. Bump
  852. CURRENT interfaces to 15 to allow some headroom for 1.6 release at
  853. Thi-Thien's request.
  854. * configure.in: AC_SUBST the centralized shared lib versioning
  855. variables from ./GUILE-VERSION.
  856. (LIBQTHREADS_INTERFACE_CURRENT): new AC_SUBST.
  857. (LIBQTHREADS_INTERFACE_REVISION): new AC_SUBST.
  858. (LIBQTHREADS_INTERFACE_AGE): new AC_SUBST.
  859. (LIBQTHREADS_INTERFACE): new AC_SUBST.
  860. (LIBGUILE_INTERFACE_CURRENT): new AC_SUBST.
  861. (LIBGUILE_INTERFACE_REVISION): new AC_SUBST.
  862. (LIBGUILE_INTERFACE_AGE): new AC_SUBST.
  863. (LIBGUILE_INTERFACE): new AC_SUBST.
  864. (LIBGUILE_SRFI_SRFI_4_INTERFACE_CURRENT): new AC_SUBST.
  865. (LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION): new AC_SUBST.
  866. (LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE): new AC_SUBST.
  867. (LIBGUILE_SRFI_SRFI_4_INTERFACE): new AC_SUBST.
  868. (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT): new AC_SUBST.
  869. (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION): new AC_SUBST.
  870. (LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE): new AC_SUBST.
  871. (LIBGUILE_SRFI_SRFI_13_14_INTERFACE): new AC_SUBST.
  872. * autogen.sh: make absolutely sure we can't have stale files from
  873. old versions lying around the libltdl dir since libtoolize
  874. doesn't. Also hack libltdl's configure.in to require autoconf 2.5
  875. so the main tree and libltdl can't get out of sync again.
  876. * RELEASE: update release building instructions.
  877. 2002-02-21 Neil Jerram <neil@ossau.uklinux.net>
  878. * acinclude.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): Use [] rather than
  879. "" for multiword string. Thanks to Christopher Cramer for
  880. pointing this out.
  881. 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  882. * acconfig.h (GUILE_DEBUG_MALLOC): Refer to scm_gc_malloc, etc,
  883. instead of to scm_must_malloc.
  884. 2002-02-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  885. * Makefile.am (EXTRA_DIST): Added pre-inst-guile and
  886. pre-inst-guile.am.
  887. 2002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
  888. * pre-inst-guile.am, pre-inst-guile: New files.
  889. * check-guile.in (srcdir): Delete var.
  890. (top_builddir, top_srcdir, guile_opts): New vars.
  891. Use "set -e".
  892. No longer set LTDL_LIBRARY_PATH.
  893. Use ${top_srcdir}/pre-inst-guile instead of libguile/guile.
  894. * configure.in (libguile/guile-snarf-docs-texi): Remove
  895. from `AC_CONFIG_FILES' and `AC_CONFIG_COMMANDS'.
  896. * check-guile.in (top_builddir): Fix bug: Use cwd.
  897. (TEST_SUITE_DIR): Fix bug: Use `top_srcdir'.
  898. (GUILE_LOAD_PATH): No longer include $top_srcdir.
  899. * pre-inst-guile: Fix bug: Use ":" in `case' pattern to prevent
  900. prefix aliasing.
  901. 2002-01-31 Stefan Jahn <stefan@lkcc.org>
  902. * configure.in: Add -DLIBLTDL_DLL_IMPORT to INCLTDL when using
  903. `libltdl.dll'.
  904. 2002-01-28 Stefan Jahn <stefan@lkcc.org>
  905. * configure.in (guile_cv_have_uint32_t): Look also in
  906. `stdint.h' for uint32_t.
  907. 2002-01-13 Neil Jerram <neil@ossau.uklinux.net>
  908. * Makefile.am (SUBDIRS): Added lang.
  909. * configure.in (AC_CONFIG_FILES): Added Makefiles in lang,
  910. lang/elisp, lang/elisp/internals and lang/elisp/primitives.
  911. 2002-01-11 Neil Jerram <neil@ossau.uklinux.net>
  912. * acconfig.h (SCM_ENABLE_ELISP): New conditional.
  913. * configure.in (SCM_ENABLE_ELISP): Define this conditional (or
  914. not) according to absence (or presence) of `--disable-elisp'
  915. in the configure args.
  916. 2001-12-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
  917. * TODO: Added two items.
  918. 2001-12-26 Marius Vollmer <mvo@zagadka.ping.de>
  919. * configure.in (HAVE_MAKEINFO): Check for the makeinfo program and
  920. set this conditional accordingly.
  921. 2001-12-01 Thien-Thi Nguyen <ttn@giblet.glug.org>
  922. * README: Fix virulent typo.
  923. 2001-11-25 Marius Vollmer <mvo@zagadka.ping.de>
  924. * acconfig.h (HAVE_INLINE): Added template.
  925. * configure.in (HAVE_INLINE): Define it when the compiler supports
  926. inline functions.
  927. * libguile.h: Include "libguile/inline.h".
  928. 2001-11-22 Gary Houston <ghouston@arglist.com>
  929. * HACKING: Modified the Hacking It Yourself section. Removed the
  930. version numbers from the tools.
  931. HACKING, README, ANON-CVS: updates.
  932. 2001-11-21 Gary Houston <ghouston@arglist.com>
  933. * HACKING: Removed reference to no longer practiced * in ChangeLog
  934. convention.
  935. 2001-11-19 Thien-Thi Nguyen <ttn@glug.org>
  936. * BUGS (11): Set "fixed: no-need".
  937. * TODO (write emacs/patch.el): New item, self-assigned.
  938. 2001-11-19 Rob Browning <rlb@defaultvalue.org>
  939. * configure.in: switch to AC_LIBLTDL_INSTALLABLE so we'll use the
  940. system libltdl when it's available. Aside from the normal reasons
  941. to prefer installed shared libs, this means other apps that link
  942. with libguile and also use libltdl will be more likely to work
  943. right.
  944. 2001-11-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
  945. * BUGS (4): Set "fixed: 2001-11-17 (1.7.x)".
  946. 2001-11-15 Thien-Thi Nguyen <ttn@glug.org>
  947. * guile-tools.in: Handle command "list" specially: list scripts dir.
  948. (help): Make more informative.
  949. 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
  950. * autogen.sh: Recurse into libltdl directory and invoke autoconf
  951. there.
  952. 2001-11-11 Thien-Thi Nguyen <ttn@glug.org>
  953. * HACKING: Restrict documentation change log
  954. waiver to only apply to ChangeLog files.
  955. 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
  956. * configure.in: Check for sizes of short, size_t, uintptr_t, and
  957. ptrdiff_t. Checking for a size also checks automatically for the
  958. existence of the type, so we don't check for the existence of
  959. uintptr_t, ptrdiff_t and long long ourselves.
  960. 2001-11-10 Thien-Thi Nguyen <ttn@glug.org>
  961. * BUGS (11): New.
  962. 2001-11-07 Stefan Jahn <stefan@lkcc.org>
  963. * configure.in: Include `win32-socket.o' in the list of object
  964. files if networking is enabled on Win32.
  965. 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
  966. * TODO (sync srfi-modules.texi): New, done.
  967. * BUGS (9, 10): New.
  968. 2001-11-04 Stefan Jahn <stefan@lkcc.org>
  969. * NEWS: Corrected remarks about SCM_API.
  970. * configure.in: Defining USE_DLL_IMPORT definition to indicate
  971. usage of DLL import macros in `libguile/__scm.h'.
  972. (LIBOBJS): Removed `fileblocks.o' from the list of object files.
  973. Somehow Jim Blandy's patch from 1997 did not survive.
  974. 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
  975. Support for native Win32. Thanks to Stefan Jahn!
  976. * check-guile.in: Replaced `ln -s' by `@LN_S@' to supports
  977. build systems which do not have symbolic links.
  978. * configure.in: Define AC_LIBTOOL_WIN32_DLL to build clean dlls
  979. on Win32 platforms.
  980. Checking for `ws2_32.dll', `winsock2.h', add `win32-uname.o'
  981. and `win32-dirent.o' and define extra compiler flags necessary
  982. to build clean dlls.
  983. Check for `regcomp()' inside `-lregex'.
  984. 2001-10-26 Thien-Thi Nguyen <ttn@glug.org>
  985. * BUGS (7, 8): New.
  986. 2001-10-25 Thien-Thi Nguyen <ttn@glug.org>
  987. * BUGS: Expand on file format description.
  988. (1): Update "fixed" field.
  989. (2, 3, 4, 5, 6): New.
  990. 2001-10-14 Gary Houston <ghouston@arglist.com>
  991. * configure.in: include sys/types.h when testing uint32_t.
  992. thanks to Bill Schottstaedt.
  993. 2001-10-14 Marius Vollmer <mvo@zagadka.ping.de>
  994. * configure.in: Do not use an absolute path for <unistd.h> when
  995. checking for return type of usleep. Thanks to Michael Carmack.
  996. 2001-09-30 Thien-Thi Nguyen <ttn@glug.org>
  997. * BUGS: New file.
  998. * Makefile.am (EXTRA_DIST): Add BUGS file.
  999. 2001-09-25 Thien-Thi Nguyen <ttn@glug.org>
  1000. * TODO: Add bugfix item to "Eventually".
  1001. 2001-09-20 Rob Browning <rlb@defaultvalue.org>
  1002. * configure.in (AC_CONFIG_FILES): add libguile/version.h.
  1003. 2001-09-11 Rob Browning <rlb@defaultvalue.org>
  1004. * RELEASE: Deleted Ian Grant and Julian Satchell's addresses from
  1005. the testing list since they're no longer functional.
  1006. 2001-09-04 Thien-Thi Nguyen <ttn@revel.glug.org>
  1007. * TODO:
  1008. Use outline mode instead of text.
  1009. Reword protocol explanation.
  1010. Add "make error-signalling functions more consistent" to Eventually.
  1011. Move some C-related GOOPS tasks to 1.8.0, take ownership.
  1012. 2001-08-31 Thien-Thi Nguyen <ttn@revel.glug.org>
  1013. * HACKING (Sample GDB Initialization File): New section.
  1014. * TODO (1.8.0): Add "move .gdbinit" entry.
  1015. 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1016. * TODO: Added some points, and eliminated all done items.
  1017. * acconfig.h, configure.in (SCM_DEBUG_DEPRECATED,
  1018. SCM_ENABLE_DEPRECATED): Renamed SCM_DEBUG_DEPRECATED to
  1019. SCM_ENABLE_DEPRECATED with the logic reversed.
  1020. 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1021. * libguile.h: Removed bogus comment, rearranged includes, removed
  1022. deprecated definitions.
  1023. (LIBGUILEH, SCM_LIBGUILE_H): Renamed <foo>H to SCM_<foo>_H.
  1024. 2001-08-30 Thien-Thi Nguyen <ttn@revel.glug.org>
  1025. * HACKING: Mention libtool ./configure-regeneration requirement.
  1026. 2001-08-27 Marius Vollmer <mvo@zagadka.ping.de>
  1027. * check-guile.in: Do not include ".libs" in LTDL_LIBRARY_PATH,
  1028. libltdl provides it itself.
  1029. 2001-08-24 Neil Jerram <neil@ossau.uklinux.net>
  1030. * configure.in (AC_CONFIG_FILES): Add per-manual doc directory
  1031. Makefiles.
  1032. 2001-08-15 Rob Browning <rlb@defaultvalue.org>
  1033. * configure.in
  1034. (LIBGUILE_INTERFACE_CURRENT): use libtool versioning scheme.
  1035. (LIBGUILE_INTERFACE_REVISION): use libtool versioning scheme.
  1036. (LIBGUILE_INTERFACE_AGE): use libtool versioning scheme.
  1037. (LIBGUILE_INTERFACE): use libtool versioning scheme.
  1038. (LIBGUILEQTHREADS_INTERFACE_CURRENT): use libtool versioning scheme.
  1039. (LIBGUILEQTHREADS_INTERFACE_REVISION): use libtool versioning scheme.
  1040. (LIBGUILEQTHREADS_INTERFACE_AGE): use libtool versioning scheme.
  1041. (LIBGUILEQTHREADS_INTERFACE): use libtool versioning scheme.
  1042. * GUILE-VERSION (GUILE_MINOR_VERSION): bump for new unstable.
  1043. (GUILE_MICRO_VERSION): reset for new unstable.
  1044. (LIBGUILE_INTERFACE_CURRENT): use libtool versioning scheme.
  1045. (LIBGUILE_INTERFACE_REVISION): use libtool versioning scheme.
  1046. (LIBGUILE_INTERFACE_AGE): use libtool versioning scheme.
  1047. (LIBGUILE_INTERFACE): use libtool versioning scheme.
  1048. (LIBGUILEQTHREADS_INTERFACE_CURRENT): use libtool versioning scheme.
  1049. (LIBGUILEQTHREADS_INTERFACE_REVISION): use libtool versioning scheme.
  1050. (LIBGUILEQTHREADS_INTERFACE_AGE): use libtool versioning scheme.
  1051. (LIBGUILEQTHREADS_INTERFACE): use libtool versioning scheme.
  1052. 2001-08-07 Marius Vollmer <mvo@zagadka.ping.de>
  1053. * Makefile.am (EXTRA_DIST, SUBDIRS): Move test-suite from
  1054. EXTRA_DIST to SUBDIRS.
  1055. * configure.in: Added "test-suite/Makefile".
  1056. 2001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
  1057. * configure.in: Added `--disable-linuxthreads' option and do not
  1058. define GUILE_PTHREAD_COMPAT nor link with -lpthread when it is
  1059. given. Thanks to Cris Cramer!
  1060. 2001-07-23 Marius Vollmer <mvo@zagadka.ping.de>
  1061. * Makefile.am (SUBDIRS): Build libguile before ice-9.
  1062. 2001-07-22 Marius Vollmer <mvo@zagadka.ping.de>
  1063. * configure.in: Check for "inttypes.h".
  1064. 2001-07-19 Rob Browning <rlb@defaultvalue.org>
  1065. * configure.in: add checks for setitimer and getitimer.
  1066. Add --enable-error-on-warning.
  1067. 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1068. * INSTALL, Makefile.am, configure.in: Updated copyright notice.
  1069. 2001-07-15 Thien-Thi Nguyen <ttn@revel.glug.org>
  1070. * HACKING: Remove onerous authorship-info deletion clause.
  1071. 2001-07-13 Keisuke Nishida <knishida@nurs.or.jp>
  1072. * autogen.sh: Call libtoolize with --force.
  1073. 2001-07-10 Thien-Thi Nguyen <ttn@revel.glug.org>
  1074. * INSTALL: Point to HACKING for tool versions.
  1075. 2001-07-08 Rob Browning <rlb@defaultvalue.org>
  1076. * TODO: updated to include relevant itemized post-1.6-RELEASE
  1077. tasks that are distributable so we can check them off as they are
  1078. done, and delete 1.6.0 tasks.
  1079. * RELEASE: add a note that the RELEASE instructions are out of
  1080. date now that we're using branches.
  1081. * AUTHORS: add "many files throughout" for myself.
  1082. 2001-06-28 Thien-Thi Nguyen <ttn@revel.glug.org>
  1083. * README: Also mention guile-tools.
  1084. * README: Mention libguile-srfi-*, oop/*, scripts/* and srfi/*.
  1085. 2001-06-27 Thien-Thi Nguyen <ttn@revel.glug.org>
  1086. * RELEASE: Move todo items to file TODO.
  1087. * TODO: Initial revision
  1088. * Makefile.am (EXTRA_DIST): Add TODO.
  1089. * HACKING: Refer to TODO and SNAPSHOTS.
  1090. No longer refer to devel/tasks.text.
  1091. * SNAPSHOTS: Fix reference bug; recommended tool
  1092. versions are in HACKING.
  1093. * TODO: Add completion and ownership protocol to header comments.
  1094. * RELEASE: Add TODO-processing to spiffing checklist.
  1095. * HACKING: Update deprecation procedure to refer to TODO.
  1096. 2001-06-27 Michael Livshin <mlivshin@bigfoot.com>
  1097. * autogen.sh: don't run flex here.
  1098. * HACKING: clarify that newer versions of flex should be just
  1099. fine.
  1100. 2001-06-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1101. * HACKING, ANON-CVS: Removed mentioning of guile-doc CVS module.
  1102. * configure.in: Added some header and function checks.
  1103. 2001-06-25 Neil Jerram <neil@ossau.uklinux.net>
  1104. * autogen.sh: Quoting fix for `--enable-maintainer-mode'.
  1105. 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
  1106. * autogen.sh: Added message about what to do next. Tell them to
  1107. use `--enable-maintainer-mode'.
  1108. 2001-06-25 Michael Livshin <mlivshin@bigfoot.com>
  1109. * HACKING: mention flex.
  1110. * autogen.sh: generate libguile/c-tokenize.c.
  1111. 2001-06-20 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1112. * libguile.h: Removed inclusion of libguile/tag.h.
  1113. 2001-06-16 Marius Vollmer <mvo@zagadka.ping.de>
  1114. * libguile.h (scm_cond_t, scm_key_t, scm_mutex_t): Only define
  1115. these when using threads.
  1116. 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
  1117. * libguile.h: Added deprecated section with the olde type names.
  1118. * configure.in: Check for header <stdint.h>. Check for uintptr_t
  1119. type. Use AC_CHECK_TYPES for this. Do not caus ptrdiff_t to be
  1120. `#defined'.
  1121. * acconfig.h (ptrdiff_t): Removed.
  1122. 2001-06-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1123. * configure.in: Generate examples/box-dynamic-module/Makefile.
  1124. 2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
  1125. * configure.in (AC_CONFIG_FILES, AC_CONFIG_COMMANDS): Add
  1126. guile-snarf.
  1127. 2001-06-02 Rob Browning <rlb@cs.utexas.edu>
  1128. * configure.in: changes for autoconf 2.50.
  1129. (AC_PREREQ): require at least autoconf 2.50.
  1130. (AC_INIT): no longer takes an arg.
  1131. (AC_CONFIG_SRCDIR): takes arg AC_INIT used to take.
  1132. (AC_STRUCT_ST_RDEV): changed -> AC_CHECK_MEMBERS.
  1133. (AC_STRUCT_ST_BLKSIZE): deprecated -> AC_CHECK_MEMBERS.
  1134. (AC_STRUCT_ST_BLOCKS): use it rather than our version.
  1135. (AC_CONFIG_FILES): now generated files go here, not in AC_OUTPUT.
  1136. (AC_CONFIG_COMMANDS): now actions go here, not in AC_OUTPUT.
  1137. (AC_OUTPUT): no longer takes args.
  1138. * acinclude.m4: AC_LANG not a variable now -- use __cplusplus
  1139. unconditionally .
  1140. 2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
  1141. * configure.in: Check for mkstemp via AC_REPLACE_FUNCS. Thanks to
  1142. I. N. Golubev!
  1143. 2001-06-01 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1144. * configure.in: Generate examples/box-dynamic/Makefile.
  1145. 2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1146. * Makefile.am (EXTRA_DIST): New subdirectory `examples'.
  1147. * configure.in: Added all Makefiles in the `examples' directory to
  1148. AC_OUTPUT.
  1149. 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
  1150. * configure.in: generate guile-snarf-docs & guile-snarf-docs-texi.
  1151. don't generate guile-snarf.awk.
  1152. * Makefile.am (EXTRA_DIST): add test-suite.
  1153. 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
  1154. * check-guile.in: fix to be runnable when srcdir!=builddir.
  1155. 2001-05-26 Michael Livshin <mlivshin@bigfoot.com>
  1156. revert the controversial part of the 2001-05-23 changes
  1157. 2001-05-23 Michael Livshin <mlivshin@bigfoot.com>
  1158. * configure.in: configury for SCM_[U]BITS_T, some more sizeofs.
  1159. also, make sure that the integral type choosen to represent an SCM
  1160. has exactly the same size as a void pointer.
  1161. * acconfig.h: add undefs for SCM_BITS_T, SCM_UBITS_T,
  1162. SCM_SIZEOF_BITS_T, ptrdiff_t.
  1163. 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
  1164. * configure.in: add AC_SUBST for GUILE_MICRO_VERSION.
  1165. * GUILE-VERSION
  1166. (GUILE_VERSION): now MAJOR.MINOR.MICRO
  1167. (GUILE_MICRO_VERSION): new variable, records final revision.
  1168. i.e. the 5 in 1.6.5. MINOR_VERSION is now just the middle number,
  1169. i.e. the 6.
  1170. 2001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1171. * acconfig.h, configure.in: Renamed
  1172. GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
  1173. 2001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
  1174. * acinclude.m4: Removed copy of "libtool.m4".
  1175. 2001-05-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1176. * configure.in (SCM_DEBUG_DEPRECATED): Always defined.
  1177. 2001-05-13 Thien-Thi Nguyen <ttn@revel.glug.org>
  1178. * AUTHORS (Martin Grabmueller, Thien-Thi Nguyen): Update.
  1179. * HACKING: Update copyright.
  1180. Add blurb pointing to devel/tasks.text.
  1181. 2001-05-11 Thien-Thi Nguyen <ttn@revel.glug.org>
  1182. * check-guile.in: For SRFI testing, set and export env
  1183. var `LTDL_LIBRARY_PATH'.
  1184. 2001-05-07 Neil Jerram <neil@ossau.uklinux.net>
  1185. * AUTHORS: Add docs-related authorship details.
  1186. 2001-05-05 Marius Vollmer <mvo@zagadka.ping.de>
  1187. * configure.in (--enable-deprecated): Recognize "shutup" option
  1188. argument and turn it into the default warning level "no".
  1189. 2001-05-05 Gary Houston <ghouston@arglist.com>
  1190. * acconfig.h: add HAVE_IPV6.
  1191. * configure.in: check whether we can compile with IPv6 support.
  1192. 2001-05-04 Thien-Thi Nguyen <ttn@revel.glug.org>
  1193. * guile-tools.in: New file.
  1194. * configure.in (AC_OUTPUT): Add guile-tools, and make
  1195. executable.
  1196. * Makefile.am (bin_SCRIPTS): New var.
  1197. 2001-05-04 Gary Houston <ghouston@arglist.com>
  1198. * configure.in: check whether uint32_t is defined when netdb.h
  1199. is included.
  1200. acconfig.h: added HAVE_UINT32_T.
  1201. 2001-05-02 Marius Vollmer <mvo@zagadka.ping.de>
  1202. * configure.in: Added handling of `--enable-deprecated'.
  1203. * acconfig.h (SCM_DEBUG_DEPRECATED,
  1204. GUILE_WARN_DEPRECATED_DEFAULT): Added.
  1205. 2001-04-29 Thien-Thi Nguyen <ttn@revel.glug.org>
  1206. * Makefile.am (SUBDIRS): Add "scripts".
  1207. * configure.in (AC_OUTPUT): Add scripts/Makefile.
  1208. 2001-04-29 Gary Houston <ghouston@arglist.com>
  1209. * libguile.h: include rw.h.
  1210. 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
  1211. * GUILE-VERSION (GUILE_MINOR_VERSION): change to 5.0, switching to
  1212. the new odd/even ustable/stable version numbering scheme.
  1213. (LIBGUILEQTHREADS_MAJOR_VERSION): change to 10 to match Debian and
  1214. libguile. In the future, libguile and libguileqthreads may not
  1215. stay in sync. This still doesn't appear to affect
  1216. libguileqthreads, but we'll fix that next.
  1217. 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1218. * configure.in: Don't treat srfi directory specially, just create
  1219. the Makefile there (thanks to Neil Jerram for the patch).
  1220. 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1221. * Makefile.am (SUBDIRS): Added `srfi'.
  1222. * configure.in: Added subdirectory `srfi' to build process.
  1223. * libguile.h: Added inclusion of `values.h'.
  1224. 2001-04-22 Gary Houston <ghouston@arglist.com>
  1225. * configure.in: check for inet_pton and inet_ntop.
  1226. 2001-04-20 Gary Houston <ghouston@arglist.com>
  1227. * acconfig.h: include HAVE_SIN6_SCOPE_ID.
  1228. * configure.in: check for sin6_scope_id in sockaddr_in6.
  1229. 2001-04-19 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
  1230. * RELEASE: Added deprecated macro SCM_ARRAY_CONTIGUOUS
  1231. 2001-04-17 Gary Houston <ghouston@arglist.com>
  1232. * configure.in: run the autoconf BIGENDIAN check.
  1233. 2001-04-12 Niibe Yutaka <gniibe@m17n.org>
  1234. * GUILE-VERSION (LIBGUILEQTHREADS_MAJOR_VERSION,
  1235. LIBGUILEQTHREADS_MINOR_VERSION, LIBGUILEQTHREADS_REVISION_VERSION,
  1236. LIBGUILEQTHREADS_VERSION): Added libguileqthreads version info.
  1237. * configure.in: Likewise.
  1238. 2001-04-11 Keisuke Nishida <kxn30@po.cwru.edu>
  1239. * configure.in (AC_CHECK_FUNCS): Don't check bzero.
  1240. (GUILE_FUNC_DECLARED): Removed checking of bzero.
  1241. Thanks to NIIBE Yutaka.
  1242. 2001-04-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
  1243. * Undeprecated scm_init_oop_goopscore_module.
  1244. 2001-03-25 Thien-Thi Nguyen <ttn@revel.glug.org>
  1245. * check-guile.in: Fix sh standard conformance bug: Replace
  1246. "test -e" with "test -f". Thanks to Alexander Klimov.
  1247. 2001-03-19 Gary Houston <ghouston@arglist.com>
  1248. * check-guile.in: rename $parent to $srcdir. if it's equal to "."
  1249. set it to `pwd`.
  1250. * check-guile.in: 16 documentation tests were failing if "make
  1251. check" was run before Guile had been installed with the current
  1252. --prefix. made various changes to the script so that it runs
  1253. without a cd to the test-suite directory. For the -i option,
  1254. don't point GUILE_LOAD_PATH to the current directory, but let it
  1255. use it's own scheme library.
  1256. 2001-03-18 Gary Houston <ghouston@arglist.com>
  1257. * check-guile.in: use @srcdir@ instead of @test_suite_dir@. use
  1258. the current directory (build dir) not srcdir to find guile
  1259. executable. otherwise "make check" doesn't work with a separate
  1260. build directory. create the test log in
  1261. $build_dir/check-guile.log instead of in srcdir/test-suite
  1262. directory.
  1263. * configure.in: don't define or substitute test_suite_dir.
  1264. 2001-03-17 Gary Houston <ghouston@arglist.com>
  1265. * configure.in: don't append threads.doc to EXTRA_DOT_DOC_FILES,
  1266. since EXTRA_DOT_DOC_FILES is redefined later. define
  1267. EXTRA_DOT_X_FILES and hand it to AC_SUBST.
  1268. 2001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1269. * configure.in: Added header checks for crypt.h, sys/resource.h
  1270. and sys/file.h, function checks for chroot, flock, getlogin,
  1271. cuserid, getpriority, setpriority, getpass, sethostname,
  1272. gethostname, and for crypt() in libcrypt.
  1273. 2001-03-09 Neil Jerram <neil@ossau.uklinux.net>
  1274. * configure.in (htmldoc): Merge handling of `--enable-htmldoc'
  1275. option from guile-doc/configure.in.
  1276. 2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1277. * libguile.h: Removed #include "libguile/dump.h".
  1278. 2001-02-02 Keisuke Nishida <kxn30@po.cwru.edu>
  1279. * libguile.h: Added #include "libguile/dump.h".
  1280. 2001-01-29 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
  1281. * libguile.h: Added #include "libguile/rdelim.h".
  1282. 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1283. The following patch was sent by Thien-Thi Nguyen.
  1284. * check-guile.in: New file.
  1285. * Makefile.am: Add TESTS rule.
  1286. * configure.in: Add support for "make check".
  1287. 2000-11-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1288. * acconfig.h: Removed bogus #ifndef. Thanks to Lars J. Aas.
  1289. 2000-10-25 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
  1290. * GUILE-VERSION (LIBGUILE_MAJOR_VERSION): Incremented major
  1291. version number to 10 due to the merge of GOOPS.
  1292. * oop: New directory.
  1293. 2000-09-20 Keisuke Nishida <kxn30@po.cwru.edu>
  1294. * libguile.h: #include "libguile/properties.h".
  1295. 2000-09-17 Gary Houston <ghouston@arglist.com>
  1296. * configure.in, acconfig.h: remove the GCSE test: it doesn't seem
  1297. to be reliable on all platforms.
  1298. 2000-08-18 Gary Houston <ghouston@arglist.com>
  1299. * acconfig.h: added BROKEN_GCSE.
  1300. * configure.in: check for a gcc GCSE optimisation bug.
  1301. 2000-07-31 Gary Houston <ghouston@arglist.com>
  1302. * acconfig.h: added HAVE_H_ERRNO
  1303. * configure.in: removed some dnl'd & obsolete cygwin stuff.
  1304. added a test for h_errno.
  1305. 2000-06-21 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1306. * Guile 1.4 released.
  1307. 2000-06-20 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1308. * GUILE-VERSION: Changed to work also when included by a Makefile
  1309. (e.g. debian/rules). (Thanks to Karl M. Hegbloom.)
  1310. (LIBGUILE_MAJOR_VERSION): Bumped to 9.
  1311. (GUILE_MINOR_VERSION): Bumped to 4.
  1312. 2000-06-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1313. * libguile.h: Removed #include "libguile/kw.h".
  1314. * Makefile.am (ACLOCAL): Define as ./guile-aclocal.sh.
  1315. (The rule will cd to $(top_srcdir).)
  1316. * configure.in (EXTRA_DOT_DOC_FILES): Create from LIBOBJS and
  1317. substitute it into libguile/Makefile.
  1318. * HACKING: Updated recommended libtool version to be 1.3.5.
  1319. * RELEASE: Say that we should update HACKING to reflect the
  1320. versions of the tools we're using rather than README.
  1321. 2000-06-02 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1322. * NOTES: Removed.
  1323. * TODO: Moved to devel/.
  1324. 2000-06-01 Craig Brozefsky <craig@red-bean.com>
  1325. * GUILE-VERSION: added defnitions for LIBGUILE_MAJOR_VERSION,
  1326. LIBGUILE_MINOR_VERSION, LIBGUILE_REVISION_VERSION so that we now
  1327. define libguile.so version in a well-lit place.
  1328. * configure.in: added AC_SUBST lines for the new LIBGUILE version
  1329. variables.
  1330. 2000-06-01 Michael Livshin <mlivshin@bigfoot.com>
  1331. * autogen.sh: call ./guile-aclocal.sh instead of aclocal.
  1332. * guile-aclocal.sh: new file, works around aclocal problems.
  1333. 2000-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1334. * acconfig.h (USE_FSU_PTHREADS, USE_MIT_PTHREADS,
  1335. USE_PCTHREADS_PTHREADS): Removed.
  1336. 2000-05-01 Gary Houston <ghouston@arglist.com>
  1337. * Makefile.am: add include_HEADERS.
  1338. libguile.h: moved from libguile directory. maybe libguile.h should
  1339. be installed in $prefix/include/libguile/libguile.h instead?
  1340. 2000-04-21 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1341. * qthreads.m4: Removed THREADS_CPPFLAGS.
  1342. * acinclude.m4: Removed qthreads macros. They are provided in
  1343. qthreads.m4, so these were redundant.
  1344. * acconfig.h (GUILE_DEBUG_MALLOC): New.
  1345. * configure.in: New --enable-debug-malloc configuration option.
  1346. 2000-03-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1347. * acconfig.h (GUILE_PTHREAD_COMPAT): New config variable.
  1348. * configure.in: Enable workaround for COOP-linuxthreads
  1349. compatibility on Linux systems.
  1350. 2000-03-19 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1351. * devel: New directory. Intended to carry documentation related
  1352. to Guile development (as opposed to the doc directory which
  1353. contains documentation related to the use of the current Guile).
  1354. This directory (devel) is not included in the Guile distribution,
  1355. but is accessible via anonymous CVS.
  1356. 2000-03-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1357. * configure.in: Don't add iselect.o to LIBOBJS.
  1358. 2000-03-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1359. * configure.in: Added end-tag for local variables. (Thanks to
  1360. Thien-Thi Nguyen.)
  1361. 2000-03-12 Gary Houston <ghouston@arglist.com>
  1362. * README (Guile Documentation, About This Distribution): updated.
  1363. 2000-03-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1364. * configure.in (ac_cv_struct_timespec): Added test for struct
  1365. timespec.
  1366. * acconfig.h (HAVE_STRUCT_TIMESPEC): Added.
  1367. 2000-01-25 Marius Vollmer <mvo@zagadka.ping.de>
  1368. * autogen.sh: Call libtoolize. Pass --add-missing option to
  1369. automake. Do not decent into libltdl directory. The libltdl
  1370. directory is now populated by libtoolize and does not need any
  1371. further autogeneration.
  1372. 2000-01-23 Gary Houston <ghouston@arglist.com>
  1373. * configure.in: check for fchown.
  1374. Tue Jan 18 12:55:15 2000 Mikael Djurfeldt <mdj@r11n07-s.pdc.kth.se>
  1375. * acinclude.m4 (AC_LIBLTDL_CONVENIENCE): Add $(top_srcdir)/libltdl
  1376. instead of $(top_builddir)/libltdl to includepath.
  1377. 2000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1378. * emacs: New subdirectory for elisp tools.
  1379. 2000-01-15 Marius Vollmer <mvo@zagadka.ping.de>
  1380. * README, HACKING: Moved "Hacking it yourself" section from README
  1381. to HACKING. Updated recommended libtool version to be 1.3.4.
  1382. 2000-01-14 Gary Houston <ghouston@arglist.com>
  1383. * configure.in: needs to have --disable-networking, not
  1384. --disable-net.
  1385. 2000-01-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1386. * libltdl/acconfig.h: New file: Needed by autogen.sh.
  1387. Tue Jan 11 13:42:35 2000 Greg J. Badros <gjb@cs.washington.edu>
  1388. * autogen.sh: Added messages as we run autogen in subdirectories.
  1389. * configure.in: Output libugile/guile-func-name-check script, and
  1390. chmod +x it.
  1391. 2000-01-11 Marius Vollmer <mvo@zagadka.ping.de>
  1392. * libltdl/autogen.sh: New file.
  1393. * autogen.sh: Invoke libltdl/autogen.sh.
  1394. 2000-01-09 Marius Vollmer <mvo@zagadka.ping.de>
  1395. Finally applied the libltdl patch from Thomas Tanner, with slight
  1396. modifications. All code copied from the libtool package is from
  1397. libtool-1.3.4.
  1398. * configure.in: Make "--with-modules=yes" the default. Do not
  1399. clear INCLTDL, LIBLTDL prior to processing "--with-modules".
  1400. 1999-07-25 Thomas Tanner <tanner@ffii.org>
  1401. * Makefile.am: add libltdl to SUBDIRS, automake automatically
  1402. includes ltconfig, ltmain.sh and acconfig.h in EXTRA_DIST
  1403. * acinclude.m4: remove GUILE_DLSYM_USCORE, add libtool.m4
  1404. (no need to install libtool any more)
  1405. * configure.in: replace --enable-dynamic-linking with
  1406. --with-modules, required modules can be specified using
  1407. --with-modules="/path/to/mod.la" and will be linked
  1408. statically on platforms that don't support dynamic loading,
  1409. configure libltdl, configure libtool for dlopening
  1410. * libltdl: added using libtoolize -c --ltdl
  1411. 2000-01-09 Gary Houston <ghouston@arglist.com>
  1412. * configure.in: check whether localtime caches TZ. copied from
  1413. Emacs 20.5.
  1414. * acconfig.h: add LOCALTIME_CACHE.
  1415. Tue Dec 14 09:12:22 1999 Greg J. Badros <gjb@cs.washington.edu>
  1416. * configure.in: Make it be guile-snarf.awk, since we'll be
  1417. switching names for guile-doc-snarf. (I wouldn't have changed
  1418. this, but I was getting ready to commit this way when the below
  1419. change was committed).
  1420. 1999-12-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1421. * configure.in: Create guile-doc-snarf.awk.
  1422. 1999-12-12 Greg J. Badros <gjb@cs.washington.edu>
  1423. * configure.in: Create guile-doc-snarf, chmod +x that script after
  1424. AC_OUTPUTted.
  1425. 1999-12-10 Greg J. Badros <gjb@cs.washington.edu>
  1426. * NEWS: More complete description for --enable-debug-freelist.
  1427. 1999-12-09 Gary Houston <ghouston@freewire.co.uk>
  1428. * configure.in (CFLAGS): don't add -Wpointer-arith, since it
  1429. causes numerous spurious warnings with recent gcc and/or glibc
  1430. versions.
  1431. 1999-11-19 Gary Houston <ghouston@freewire.co.uk>
  1432. * acconfig.h: add HAVE_ARRAYS.
  1433. * configure.in: add --disable-arrays option, probably temporary.
  1434. 1999-11-17 Gary Houston <ghouston@freewire.co.uk>
  1435. * configure.in: check for hstrerror.
  1436. 1999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
  1437. * autogen.sh: Don't call autoreconf at all; it's not reliable.
  1438. Instead, call the various tools explicitly. Invoke
  1439. guile-readline's autogen.sh script.
  1440. Straighten up the situation regarding guile.m4 and qthreads.m4.
  1441. We can't have .m4 files which are installed where aclocal can
  1442. see them, but also used by guile's own configure.in, because
  1443. aclocal will read both copies, complain about duplicate macro
  1444. definitions, and refuse to generate aclocal.m4 at all. This
  1445. happens if you invoke it as `aclocal -I .', as autoreconf does.
  1446. This is probably a flaw in the autotools, but Guile doesn't need
  1447. that flaw fixed immediately.
  1448. guile.m4 is intended for use by people linking against guile, so
  1449. it needs to be installed. But Guile itself doesn't use it. So
  1450. move guile.m4 into guile-config. That makes sense, since
  1451. guile.m4's GUILE_FLAGS macro is just an easy way to call
  1452. guile-config.
  1453. qthreads.m4 is indented to help configure a qthreads tree. It's
  1454. only useful to a package which actually includes a qthreads tree,
  1455. and it's intimately related to that tree, so it's not useful to
  1456. install this. So don't install it.
  1457. * guile.m4: Moved to guile-config.
  1458. * Makefile.am (aclocaldir, aclocal_DATA): Delete.
  1459. (EXTRA_DIST): Move qthreads.m4 here.
  1460. Don't store generated files in the repository any more. Instead,
  1461. require people to run autogen.sh on trees from snapshots and CVS.
  1462. * Makefile.in, aclocal.m4, configure: Deleted.
  1463. * autogen.sh: New file.
  1464. * ANON-CVS, SNAPSHOTS: Updated instructions.
  1465. 1999-10-02 Jim Blandy <jimb@zwingli.cygnus.com>
  1466. * acconfig.h (HAVE_POSIX, HAVE_NETWORKING): Add comments.
  1467. 1999-09-27 Greg J. Badros <gjb@cs.washington.edu>
  1468. * configure.in: Added --enable-debug-freelist option.
  1469. * acconfig.h: Added GUILE_DEBUG_FREELIST.
  1470. 1999-09-23 Gary Houston <ghouston@freewire.co.uk>
  1471. * acconfig.h: add HAVE_POSIX, HAVE_NETWORKING. remove FD_SETTER,
  1472. FILE_CNT_FIELD, FILE_CNT_GPTR, FILE_CNT_READPTR.
  1473. * configure.in: new options --disable-posix, --disable-net
  1474. and --disable-regex
  1475. export HAVE_POSIX and HAVE_NETWORKING definitions.
  1476. don't add regex-posix.o to LIBOBJS if regex disabled.
  1477. LIBOBJS: add filesys.c, posix.c, net_db.c, socket.c,
  1478. conditionally.
  1479. 1999-09-25 Jim Blandy <jimb@savonarola.red-bean.com>
  1480. * Guile 1.3.4 released.
  1481. 1999-09-22 Jim Blandy <jimb@savonarola.red-bean.com>
  1482. * configure.in: Call AM_PROG_CC_STDC before AM_PROG_LIBTOOL, so
  1483. libtool knows how to get ANSI C behavior from the compiler.
  1484. * configure: Regenerated.
  1485. 1999-09-20 Gary Houston <ghouston@freewire.co.uk>
  1486. * configure.in: check availability of siginterrupt.
  1487. 1999-09-18 Gary Houston <ghouston@freewire.co.uk>
  1488. * configure.in: use AC_SYS_RESTARTABLE_SYSCALLS instead of
  1489. testing for SA_RESTART.
  1490. 1999-09-12 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
  1491. * configure.in: Removed ice-9/version.scm from AC_OUTPUT.
  1492. 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
  1493. * configure.in (GUILE_STAMP): Don't set this variable, or
  1494. substitute it into anything. Full explanation in ice-9/ChangeLog.
  1495. * configure, Makefile.in: Regenerated.
  1496. 1999-09-06 James Blandy <jimb@mule.m17n.org>
  1497. Propagate the changes of 2 Sept the rest of the way through.
  1498. * configure: Regenerated.
  1499. * Makefile.in: Regenerated. Not sure why this diff is so big.
  1500. 1999-09-02 Jim Blandy <jimb@savonarola.red-bean.com>
  1501. * acinclude.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): Fix typo in
  1502. variable name. (Thanks to Bill Schottstaedt.)
  1503. * aclocal.m4: Regenerated.
  1504. 1999-09-02 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
  1505. * configure.in: Test for presence of function on_exit.
  1506. 1999-09-01 James Blandy <jimb@mule.m17n.org>
  1507. * configure.in: Use AC_REPLACE_FUNCS to grab libguile/memmove.c if
  1508. the system doesn't have memmove. Don't test for memmove and bcopy
  1509. with AC_CHECK_FUNCS.
  1510. * configure: Regenerated.
  1511. 1999-08-30 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
  1512. * configure.in: Test for atexit.
  1513. 1999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1514. * acinclude.m4: Updated. (Thanks to Karl Eichwalder.)
  1515. * configure.in: Test for presence of S_ISLNK in sys/stat.h.
  1516. (Thanks to Bernard Urban.)
  1517. Test for memmove and bcopy. (Thanks to
  1518. suzukis@file.phys.tohoku.ac.jp.)
  1519. * acconfig.h: Added HAVE_S_ISLNK.
  1520. 1999-08-20 James Blandy <jimb@mule.m17n.org>
  1521. * Guile 1.3.2 released.
  1522. * Makefile.in: Regenerated.
  1523. 1999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  1524. * README, config.guess, config.sub, liconfig, ltmain.sh: Switched
  1525. to libtool-1.3.3.
  1526. 1999-07-22 Marius Vollmer <mvo@zagadka.ping.de>
  1527. Added guile-readline subdirectory with the removed readline
  1528. support.
  1529. * guile-readline: New directory, see ChangeLog there.
  1530. * configure.in: Cause configure to descend into guile-readline
  1531. dir.
  1532. * Makefile.am: Likewise for make.
  1533. * NEWS: Explain how to activate the readline support.
  1534. * configure, Makefile.in: Regenerated.
  1535. 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
  1536. Fixes for EMX from Mikael Ståldal.
  1537. * configure.in: Check for <io.h>.
  1538. * configure: Regenerated.
  1539. 1999-07-18 Jim Blandy <jimb@savonarola.red-bean.com>
  1540. * qthreads.m4 (QTHREADS_CONFIGURE): 'alpha' in a configuration
  1541. name can have suffixes, like alphaev56-unknown-linux-gnu.
  1542. * aclocal.m4, configure: Rebuilt.
  1543. (Thanks to Sebastien Villemot.)
  1544. 1999-07-04 Gary Houston <ghouston@easynet.co.uk>
  1545. * configure.in: don't check for ways to violate stdio abstraction.
  1546. 1999-05-02 Jim Blandy <jimb@savonarola.red-bean.com>
  1547. * configure.in (AC_CHECK_FUNCS): Fill in list of functions that
  1548. libguile/net_db.h wants to use. (Add setprotoent, setservent.)
  1549. 1999-04-17 Jim Blandy <jimb@savonarola.red-bean.com>
  1550. Remove all automatic readline support, to avoid copyright
  1551. confusion.
  1552. * INSTALL: Update text.
  1553. * NEWS: Explain the situation.
  1554. * configure.in: Remove configury for readline and its supporting
  1555. libraries.
  1556. * configure: Regenerated.
  1557. * README: Change URL's for automake and autoconf.
  1558. * Makefile.in, configure: Regenerated with autoconf 2.13, automake
  1559. 1.4, libtool 1.2f (1.385 1999/03/15 17:24:54). I've upgraded to
  1560. all the right tools, according to README, but I'm still getting
  1561. different results than Mikael is. Hmm.
  1562. 1999-03-22 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
  1563. * New libtool: 1.2f
  1564. * ltmain.sh, ltconfig, config.guess, config.sub: New versions.
  1565. * README: Mention new version number of libtool.
  1566. 1999-03-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1567. New automake: 1.4
  1568. * config.guess, config.sub, install-sh, mdate-sh, missing,
  1569. mkinstalldirs: New versions.
  1570. * Makefile.in, aclocal.m4, configure: Regenerated.
  1571. * README: Mention new version numbers on autoconf and automake.
  1572. 1999-02-12 Jim Blandy <jimb@savonarola.red-bean.com>
  1573. * configure.in: Add --with-readline flag.
  1574. * configure: Rebuilt.
  1575. 1999-02-09 Maciej Stachowiak <mstachow@alum.mit.edu>
  1576. * NEWS: Added entry for optargs module.
  1577. 1999-02-06 Jim Blandy <jimb@zwingli.cygnus.com>
  1578. * configure: Regenerated using autoconf 2.12.
  1579. 1999-01-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1580. * configure.in: Removed test AC_C_BIGENDIAN. (This test was
  1581. considered to encourage bad coding style.)
  1582. 1999-01-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1583. * configure.in: Added test AC_C_BIGENDIAN.
  1584. 1999-01-11 Jim Blandy <jimb@zwingli.cygnus.com>
  1585. * configure.in: Remove quotes around ac_cv_lib_readline_main and
  1586. ac_cv_var_rl_getc_function. They should both always be set to
  1587. non-null values; this way, we get error messages.
  1588. * configure: Regenerated.
  1589. 1999-01-10 Jim Blandy <jimb@savonarola.red-bean.com>
  1590. * configure.in: Cite the variable ac_cv_lib_readline_main, not
  1591. ac_cv_lib_readline_readline; the latter isn't set any more, since
  1592. we look for 'main' in libreadline now. Add quotes around
  1593. reference to the variable references, too, so this will work even
  1594. when a variable's value is the empty string.
  1595. * configure: Regenerated.
  1596. 1999-01-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1597. * acconfig.h: Added HAVE_LONG_LONGS.
  1598. * configure.in: Added AC_CHECK_SIZEOF(long), AC_CHECK_SIZEOF(int);
  1599. Added check for long longs.
  1600. 1998-12-14 Jim Blandy <jimb@zwingli.cygnus.com>
  1601. * configure.in: Check for tgoto in ncurses, then termcap.
  1602. S.u.S.E. Linux doesn't have a termcap. (Thanks to Karl
  1603. Eichwalder.)
  1604. * configure: Regenerated.
  1605. 1998-10-24 Jim Blandy <jimb@zwingli.cygnus.com>
  1606. * configure.in: Call AM_PROG_CC_STDC, to see what flags we should
  1607. pass the compiler to make it support ANSI. (Thanks to Bernard
  1608. Urban.)
  1609. * aclocal.m4, configure: Regenerated.
  1610. 1998-10-20 Jim Blandy <jimb@zwingli.cygnus.com>
  1611. * Guile 1.3 released.
  1612. 1998-10-19 Jim Blandy <jimb@zwingli.cygnus.com>
  1613. * GUILE-VERSION: Bump to 1.3.
  1614. * Makefile.am (EXTRA_DIST): Don't omit ANON-CVS and SNAPSHOTS.
  1615. * Makefile.in: Regenerated.
  1616. 1998-10-16 Jim Blandy <jimb@zwingli.cygnus.com>
  1617. * qthreads.m4 (QTHREADS_CONFIGURE): On NetBSD, pass through a flag
  1618. to the Makefile which explicitly tells it to pass assembly files
  1619. through the preprocessor. (Thanks to Perry Metzger.)
  1620. * aclocal.m4, configure, Makefile.in: Regenerated.
  1621. 1998-10-14 Jim Blandy <jimb@zwingli.cygnus.com>
  1622. * configure.in: Define SCM_SINGLES whenever a float can fit in a
  1623. long, not only when a float is the same size as a long. This gets
  1624. us SCM_SINGLES defined on alphas. (Thanks to Clark McGrew.)
  1625. * configure: Regenerated.
  1626. * configure.in: Construct libguile/versiondat.h here; see
  1627. log entry in libguile/ChangeLog for details.
  1628. * configure: Regenerated.
  1629. * configure.in: Allow tabs and whitespace between `void' and
  1630. `usleep'. (Thanks to Harvey J. Stein.)
  1631. * configure: Regenerated.
  1632. Don't redefine sleep/usleep.
  1633. * configure.in: Remove tests for usleep's argument type; we only
  1634. need that if we're going to replace it.
  1635. * acconfig.h (USLEEP_ARG_TYPE): Delete. All the other SLEEP
  1636. garbage is needed just to use usleep and sleep without compiler
  1637. warnings.
  1638. * configure: Regenerated.
  1639. 1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
  1640. * configure: Regenerated.
  1641. * configure.in (GUILE_FUNC_DECLARED): Name the cache variables
  1642. starting with guile_cv_; ac_cv_ is autoconf's namespace.
  1643. The type of the argument to usleep varies from system to system,
  1644. as does the return type. We really shouldn't be redefining usleep
  1645. at all, but I don't have time to clean that up before the 1.3
  1646. release. It's on the schedule for afterwards.
  1647. * configure.in: Cache results from usleep return value test.
  1648. Test for the type of the usleep argument, and cache that too.
  1649. * acconfig.h (USLEEP_ARG_TYPE): New macro.
  1650. 1998-10-11 Jim Blandy <jimb@zwingli.cygnus.com>
  1651. * acconfig.h (HAVE_RL_GETC_FUNCTION): Fix this entry.
  1652. 1998-10-10 Jim Blandy <jimb@zwingli.cygnus.com>
  1653. * GUILE-VERSION: bump to 1.2.91, since we're doing snapshots again.
  1654. * Guile 1.2.90 released --- beta.
  1655. * GUILE-VERSION: Set to 1.2.90. This would appear to be a
  1656. regression from 1.3a, but everyone knows that the next release is
  1657. 1.3, I want to switch to a more coherent version numbering system,
  1658. and now is the time.
  1659. 1998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
  1660. * configure.in: Call AC_C_INLINE, so we can use inline happily in
  1661. libguile.
  1662. * configure: Regenerated.
  1663. 1998-10-07 Jim Blandy <jimb@zwingli.cygnus.com>
  1664. * configure.in: Don't forget to #define HAVE_RL_GETC_FUNCTION if
  1665. we do find the rl_getc_function variable in the readline library;
  1666. AC_CHECK_FUNCS used to do this for us, but we're not using it any
  1667. more.
  1668. * acconfig.h: Add an entry for HAVE_RL_GETC_FUNCTION.
  1669. * configure.in: Properly test for the presence of rl_getc_function;
  1670. it's a variable, not a function.
  1671. * configure: Regenerated.
  1672. * doc: New subdirectory.
  1673. * Makefile.am (SUBDIRS): List it.
  1674. * configure.in (AC_OUTPUT): Build its Makefile.
  1675. * configure, Makefile.in: Regenerated.
  1676. * guile.m4 (GUILE_FLAGS): New macro.
  1677. * guile.m4 (AM_INIT_GUILE_MODULE): Deleted; it doesn't do anything
  1678. terribly helpful any more, nobody's using it, and this is not
  1679. really the way I want to handle modules anyway.
  1680. 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
  1681. * configure.in (FD_SETTER, FILE_CNT_GPTR): New cases for SCO's
  1682. stdio implementation. (Thanks to David Tillman.)
  1683. * configure: Rebuilt.
  1684. * guile-config: Renamed from `build'.
  1685. * Makefile.am (SUBDIRS): Mention `guile-config', not `build'.
  1686. * configure.in: Create `guile-config/Makefile.in', not
  1687. `build/Makefile.in'. Doc fix, too.
  1688. * qthreads.m4: Doc fix.
  1689. * Makefile.in, aclocal.m4, configure: Regeneranegerederadea.
  1690. 1998-10-03 <jimb@savonarola.red-bean.com>
  1691. * configure.in: Check for a missing `sleep' declaration.
  1692. * acconfig.h (MISSING_SLEEP_DECL): Provide some text for this.
  1693. * configure: Regenerated.
  1694. * configure.in: Don't use the canonical host name to decide
  1695. whether `bzero' and `usleep' have declarations --- that's going
  1696. back to the bad old days before autoconf. Remove the call to
  1697. AC_CANONICAL_HOST and the subsequent case statement.
  1698. (GUILE_FUNC_DECLARED): New m4 macro. Use it to check for
  1699. declarations for `bzero', `usleep', and (new!) `strptime'.
  1700. * acconfig.h: (DECLARE_BZERO, DECLARE_USLEEP): Removed.
  1701. (MISSING_BZERO_DECL, MISSING_USLEEP_DECL, MISSING_STRPTIME_DECL):
  1702. Added. I think this naming convention is more consistent with the
  1703. rest of autoconf; names generally describes the system, not what
  1704. the package should do to accomodate the system.
  1705. * configure: Regenerated.
  1706. 1998-09-05 Jim Blandy <jimb@zwingli.cygnus.com>
  1707. * configure.in: Remove --disable-debug option. The debugging
  1708. support is pretty stable now, and it's confusing people.
  1709. * configure: Regenerated.
  1710. * HACKING: Remove -Wstrict-prototypes from the list of requested
  1711. flags (to match 1998-07-30 change).
  1712. 1998-07-30 Jim Blandy <jimb@zwingli.cygnus.com>
  1713. * configure.in: Don't use -Wstrict-prototypes after all.
  1714. * configure: Regenerated.
  1715. 1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
  1716. * configure.in: Request more warnings.
  1717. * configure: Regenerated.
  1718. * HACKING: Ask people not to make changes that introduce those
  1719. warnings. Now I have to go through the code and actually bring it
  1720. up to standards... :(
  1721. * Makefile.in, aclocal.m4, configure: Regenerated using the last
  1722. public version of automake, not the hacked Cygnus version.
  1723. * config.guess, config.sub, ltconfig, ltmain.sh: New versions from
  1724. libtool.
  1725. * configure.in, qthreads.m4: Display a message about how the
  1726. threads configuration went.
  1727. * aclocal.m4, configure: Regenerated.
  1728. 1998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
  1729. Remove the TOTORO kludge. We're not doing snapshots any more, so
  1730. totoro is completely uninvolved. (Poor Totoro!)
  1731. * configure.in: Remove code to check the hostname and #define
  1732. TOTORO.
  1733. * acconfig.h: Remove comments for TOTORO symbol.
  1734. * configure, Makefile.in: Regenerated.
  1735. * qthreads.m4 (QTHREADS_CONFIGURE): We *can* use AC_REQUIRE here
  1736. to get AC_PROG_LN_S.
  1737. * aclocal.m4, configure: Regenerated.
  1738. 1998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
  1739. Clean up thread configuration.
  1740. * qthreads.m4: New file, which knows how to configure the qthreads
  1741. library.
  1742. * configure.in: Replace all thread package selection code. Do the
  1743. --with-threads argument processing here. Enable the appropriate
  1744. thread interface files in libguile. Remove all qthreads
  1745. configuration code; call QTHREADS_CONFIGURE instead. Set
  1746. GUILE_LIBS using the info provided by QTHREADS_CONFIGURE.
  1747. * threads.m4: Removed; not used any more.
  1748. * Makefile.am (aclocal_DATA): Mention qthreads.m4, not threads.m4.
  1749. * Makefile.in, aclocal.m4, configure: Rgnrtd. (Sv th vwls!)
  1750. Note that these were regenerated with the tools available from
  1751. Cygnus's source tree, which have patches not available to the
  1752. general public. I'm not sure this was a good idea; feel free to
  1753. revert them to the latest released versions of the tools.
  1754. Upgrade to the version of libtool available at Cygnus. See note
  1755. above.
  1756. * config.guess, config.sub, ltconfig, ltmain.sh: Upgraded.
  1757. 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
  1758. * configure.in: Changed variable HOSTNAME --> PROG_HOSTNAME in
  1759. totoro kludge.
  1760. Sat Jul 11 21:54:29 1998 Mikael Djurfeldt <mdj@totoro.red-bean.com>
  1761. * acconfig.h, configure.in: Define TOTORO if configuring on
  1762. totoro.red-bean.com.
  1763. * configure.in: Check for strdup.
  1764. 1998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1765. * configure.in: Check for rl_cleanup_after_signal.
  1766. 1998-05-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1767. * configure.in: Added test for rl_getc_function. Warn if
  1768. libreadline is found but not this function.
  1769. 1998-05-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1770. * configure.in: Replaced some AC_CHECK_FUNC --> AC_CHECK_FUNCS so
  1771. that suitable HAVE_<function name> symbols get defined.
  1772. 1998-04-25 Mikael Djurfeldt <mdj@kenneth>
  1773. * configure.in: Define USLEEP_RETURNS_VOID on some systems.
  1774. (Thanks to Julian Satchell.)
  1775. 1998-04-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1776. * configure.in: Check for usleep; Define DECLARE_BZERO and
  1777. DECLARE_USLEEP on Solaris 2.5 since it supplies those functions
  1778. without declaring them.
  1779. * acconfig.h: Added DECLARE_BZERO, DECLARE_USLEEP
  1780. 1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1781. * configure.in: Define HAVE_DLOPEN also when HAVE_LIBDL is
  1782. defined.
  1783. 1998-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1784. * configure.in (GUILE_LIBS): New variable. Contains libraries
  1785. which libguile needs to be linked with. Substituted into
  1786. libpath.h.
  1787. * threads.m4 (threads_package): Don't add $LDFLAGS and $LIBS to
  1788. $cy_cv_threads_libs.
  1789. 1998-04-11 Mikael Djurfeldt <mdj@kenneth>
  1790. New libtool: 1.2
  1791. * ltconfig, ltmain.sh, config.sub, config.guess: Updated.
  1792. New automake: 1.3
  1793. * Makefile.in, aclocal.m4, configure: Regenerated.
  1794. * README: Mention new version numbers on libtool and automake.
  1795. 1997-12-11 Tim Pierce <twp@skepsis.com>
  1796. * HACKING: Note that SSH is mandatory for CVS access.
  1797. Sun Dec 7 06:11:24 1997 Gary Houston <ghouston@actrix.gen.nz>
  1798. * README: using Automake 1.2d
  1799. * configure.in: AC_CHECK_FUNCS: add "system".
  1800. 1997-12-01 Tim Pierce <twp@skepsis.com>
  1801. * acconfig.h: Add USCORE.
  1802. 1997-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1803. * configure.in: Added code to enable GUILE_ISELECT on systems
  1804. which have the necessary functions (gettimeofday, select).
  1805. * acconfig.h: Added GUILE_ISELECT.
  1806. 1997-11-24 Tim Pierce <twp@twp.tezcat.com>
  1807. * acinclude.m4: Assume dlsym does not add underscore if
  1808. cross-compiling.
  1809. * aclocal.m4, configure: Regenderated.
  1810. 1997-11-21 Tim Pierce <twp@twp.tezcat.com>
  1811. * acinclude.m4 (GUILE_DLSYM_USCORE): New macro, thanks Dan Hagerty
  1812. <hag@ai.mit.edu>.
  1813. * configure.in: Use it.
  1814. * configure: Regenerated.
  1815. * acconfig.h (DLSYM_ADDS_USCORE): New #define.
  1816. 1997-10-26 Mikael Djurfeldt <mdj@nada.kth.se>
  1817. * README (libtool): Tell people to use version 1.0e.
  1818. Sat Oct 25 02:50:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1819. Call the QuickThreads library libqthreads.a, not libqt.a. The old
  1820. name conflicts with the Qt user interface toolkit.
  1821. * threads.m4 (CY_AC_WITH_THREADS): Use new library name.
  1822. * configure.in: Same.
  1823. * aclocal.m4, configure: Regenerated.
  1824. Thu Oct 23 00:58:06 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1825. * configure.in: Check for the readline library, and the termcap
  1826. library (on which readline relies).
  1827. * configure: Regenerated.
  1828. Wed Oct 22 16:55:57 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1829. New libtool: 1.0e
  1830. * ltconfig, ltmain.sh, config.sub, config.guess: Updated.
  1831. * configure, aclocal.m4: Regenerated.
  1832. 1997-10-02 Marius Vollmer <mvo@zagadka.ping.de>
  1833. Make dynamic linking work on Dec Unix. (Thanks to Clark McGrew)
  1834. * configure.in: Check whether dlopen can be found without -ldl.
  1835. Mon Sep 29 23:52:52 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1836. * Makefile.in: Regenerated with automake 1.2c.
  1837. Sat Sep 27 23:01:58 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1838. * Makefile.am: Add new `build' subdirectory to SUBDIRS.
  1839. * configure.in: Add build/Makefile to AC_OUTPUT clause.
  1840. * Makefile.in, configure: Regenerated.
  1841. * Makefile.in, aclocal.m4: Regenerated with automake 1.2a.
  1842. Tue Sep 16 00:19:46 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1843. * README, ltconfig, ltmain.sh: New libtool: 1.0c.
  1844. Thu Sep 11 11:28:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  1845. * ltmain.sh: Added a missing '\' before \n on line 32.
  1846. Thu Aug 28 23:40:43 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1847. New libtool: 1.0b.
  1848. * ltconfig, ltmain.sh, config.guess: Freshly libtoolized.
  1849. * Makefile.in, aclocal.m4, configure: Regenerated, salamander-style.
  1850. Wed Aug 27 11:35:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1851. * Makefile.in: Regenerated, so it uses "tar", not "gtar".
  1852. * configure.in: Use the QuickThreads assembler fragment with Irix
  1853. dynamic linking support for Irix 6 as well as Irix 5. Thanks to
  1854. Jesse Glick.
  1855. * configure: Regenerated.
  1856. Sun Aug 24 15:51:12 1997 Mikael Djurfeldt <mdj@kenneth>
  1857. * acinclude.m4 (GUILE_NAMED_CHECK_FUNC): New macro: Tagged test,
  1858. so that test for the same function can be performed multiple
  1859. times.
  1860. * configure.in (AC_CHECK_HEADERS): Test for rxposix.h,
  1861. rx/rxposix.h. Add library rx only if regcomp can't be found
  1862. without it.
  1863. * acconfig.h (HAVE_REGCOMP): Added it here since autoheader misses
  1864. it for some reason!
  1865. Fri Aug 22 21:21:49 1997 Jim Blandy <jimb@totoro.red-bean.com>
  1866. * THANKS: New file.
  1867. * Makefile.in, aclocal.m4, configure: Regenerated.
  1868. Wed Jul 23 20:24:27 1997 Mikael Djurfeldt <djurf@zafir.e.kth.se>
  1869. * configure.in: Added thread support for the alpha architecture.
  1870. configure: Regenerated.
  1871. Thu Jul 17 07:56:05 1997 Gary Houston <ghouston@actrix.gen.nz>
  1872. * configure.in: use AC_CHECK_FUNCS for sethostent etc.,
  1873. so scmconfig.h is updated with the test results. this may
  1874. disable one of the cygwin hacks.
  1875. Fri Jul 11 00:18:19 1997 Jim Blandy <jimb@floss.red-bean.com>
  1876. Changes to compile under gnu-win32, from Marcus Daniels:
  1877. * configure.in: When sys/un.h exists, define HAVE_UNIX_DOMAIN_SOCKETS
  1878. to indicate that Unix domain sockets will work.
  1879. Check for socketpair, getgroups, setwent, pause, and tzset
  1880. (cygwin currently lacks these them).
  1881. Check for sethostent endhostent getnetent setnetent endnetent
  1882. getprotoent endprotoent getservent endservent getnetbyaddr
  1883. getnetbyname inet_lnaof inet_makeaddr inet_netof (cygwin currently
  1884. lacks them). In the case of cygwin, temporarily prefix these
  1885. functions with "cygwin32_", the way that netdb.h does.
  1886. Don't define HAVE_REGCOMP unless both regcomp and regex.h are
  1887. available (cygwin b18 came distributed without a working regex.h
  1888. file).
  1889. * acconfig.h (HAVE_UNIX_DOMAIN_SOCKETS): Add this.
  1890. * configure: Regenerated.
  1891. Wed Jul 2 12:28:40 1997 Tim Pierce <twp@twp.tezcat.com>
  1892. * ltmain.sh: Remove any trailing colon on $shlibpath_var
  1893. (i.e. LD_LIBRARY_PATH) for braindamaged linkers that choke on it.
  1894. Patch sent to bug-libtool.
  1895. Sat Jun 28 16:13:43 1997 Tim Pierce <twp@twp.tezcat.com>
  1896. * configure.in: Add alloca.o explicitly to LIBOBJS (thanks Eric
  1897. Backus for reporting this problem and suggesting a fix).
  1898. * configure: Regenerated.
  1899. Thu Jun 26 20:43:31 1997 Jim Blandy <jimb@floss.red-bean.com>
  1900. * Guile 1.2 released.
  1901. * configure.in: Check for librx after libm; fundamentals need to
  1902. come first.
  1903. * configure: Regenerated.
  1904. Tue Jun 24 13:34:20 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
  1905. * aclocal.m4 (AM_PATH_PROG_LD): Change `ac_cv_path_LD' typo to
  1906. `am_cv_path_LD'.
  1907. * configure: Regenerated.
  1908. Sun Jun 22 15:43:07 1997 Jim Blandy <jimb@floss.red-bean.com>
  1909. Try to detect when people are using one version of libguile and a
  1910. different version of ice-9. People have been skewing things and
  1911. sending in bug reports.
  1912. * configure.in: Provide libguile its version information through a
  1913. separate header file generated by the Makefile, not through
  1914. scmconfig.h.
  1915. (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION, GUILE_VERSION):
  1916. AC_SUBST these, instead of AC_DEFINE'ing them.
  1917. (GUILE_STAMP): New AC_SUBST: the time we configured the tree.
  1918. (AC_OUTPUT): Create ice-9/version.scm.
  1919. * acconfig.h (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION,
  1920. GUILE_VERSION): Deleted.
  1921. * Makefile.in: Regenerated.
  1922. * aclocal.m4: Regenerated, using the libtool 0.9h m4 macros.
  1923. * Makefile.am (EXTRA_DIST): Include acconfig.h in the
  1924. distribution.
  1925. * Makefile.in: Regenerated.
  1926. Sat Jun 21 00:14:07 1997 Jim Blandy <jimb@floss.red-bean.com>
  1927. * ltmain.sh (line 1191): Don't forget 'test' in if statement.
  1928. * ltconfig, ltmain.sh: libtoolized, using libtool 0.9h.
  1929. Wed Jun 11 00:34:01 1997 Jim Blandy <jimb@floss.red-bean.com>
  1930. * ltconfig, ltmain.sh, config.guess: New files from libtool 0.9g.
  1931. * configure.in: By default, include functions in Guile to allow
  1932. linking with dynamic libraries at run-time. In other words,
  1933. --enable-dynamic-linking is now the default.
  1934. * configure: Rebuilt.
  1935. * configure.in: Remove space between AC_CHECK_LIB and opening
  1936. paren in check for Rx.
  1937. * configure: Regenerated.
  1938. * configure.in: Remove all mention of xtra_PLUGIN_guile_libs.
  1939. It's never used.
  1940. * configure, Makefile.in: Regenerated.
  1941. Tue Jun 10 23:37:12 1997 Jim Blandy <jimb@floss.red-bean.com>
  1942. * configure.in: Move checks for libraries (-lm, -lnsl, -lsocket,
  1943. -dl, -dld) before checks for functions.
  1944. * configure: Regenerated.
  1945. Mon Jun 9 02:35:46 1997 Tim Pierce <twp@twp.tezcat.com>
  1946. * config.guess: New copy from autoconf-2.12, which recognizes
  1947. OpenBSD.
  1948. Tue Jun 3 16:34:19 1997 Jim Blandy <jimb@totoro.cyclic.com>
  1949. * configure.in: Check for Rx, so we will use its routines (which I
  1950. pretty much trust) if it is installed.
  1951. * configure: Regenerated.
  1952. Sat May 31 03:48:45 1997 Gary Houston <ghouston@actrix.gen.nz>
  1953. * acconfig.h: mention HAVE_RESTARTS.
  1954. * configure.in: check for sigaction and restartable system calls.
  1955. Tue May 27 22:47:52 1997 Tim Pierce <twp@twp.tezcat.com>
  1956. * configure.in: Check for presence of regcomp.
  1957. * configure: Regenerated.
  1958. Mon May 26 12:14:20 1997 Jim Blandy <jimb@floss.cyclic.com>
  1959. * COPYING: New address for FSF.
  1960. * configure.in: We don't need to add fileblocks.o to LIBOBJS if
  1961. struct stat doesn't have the st_blocks field. We take care of
  1962. that case in the code. Replace AC_STRUCT_ST_BLOCKS with its
  1963. definition, edited appropriately. (Bernard URBAN)
  1964. * configure: Regenerated.
  1965. Sat May 17 13:49:28 1997 Jim Blandy <jimb@floss.cyclic.com>
  1966. * configure.in: Don't link against -lnsl or -lsocket unless we
  1967. actually need to. This causes trouble on Irix. (Thanks to Larry
  1968. Schwimmer.)
  1969. * config.sub: Get newer version, that recognizes the i686.
  1970. Fri May 16 17:26:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
  1971. * README: Changed Mikael's threads work attribution in order
  1972. to sooth Anthony's enormous, but wounded, ego.
  1973. Fri May 16 17:26:53 1997 Jim Blandy <jimb@totoro.cyclic.com>
  1974. Just kidding!!!
  1975. Fri May 16 04:24:48 1997 Jim Blandy <jimb@floss.cyclic.com>
  1976. Guile 1.1 released.
  1977. * GUILE-VERSION: Bump to 1.1.
  1978. Tue May 13 16:34:40 1997 Jim Blandy <jimb@floss.cyclic.com>
  1979. Switch to automake-1.1p.
  1980. * Makefile.in, aclocal.m4, configure: Regenerated.
  1981. Mon May 12 18:29:45 1997 Jim Blandy <jimb@floss.cyclic.com>
  1982. * threads.m4: Copy Anthony's change here, so it'll actually
  1983. survive.
  1984. Thu May 8 11:48:40 1997 Anthony Green <green@hoser.cygnus.com>
  1985. * aclocal.m4: Fixes for building with coop threads in a
  1986. seperate compilation directory.
  1987. * configure: Rebuilt.
  1988. Fri May 2 16:24:15 1997 Jim Blandy <jimb@floss.cyclic.com>
  1989. Upgrade to libtool 0.9e.
  1990. * ltconfig, ltmain.sh, config.guess, config.sub: New versions,
  1991. supplied by libtool.
  1992. * configure.in: When configuring qt, sunos needs the underscore
  1993. files; Solaris and Linux both need the normal files.
  1994. * configure: Reebilt.
  1995. Thu May 1 15:35:49 1997 Jim Blandy <jimb@floss.cyclic.com>
  1996. * configure.in: Get the paths for qt's md files right, so it can
  1997. build correctly when using a separate compilation directory.
  1998. * configure: Regenerated.
  1999. Thu Apr 24 01:20:34 1997 Jim Blandy <jimb@floss.cyclic.com>
  2000. Get threads to work again.
  2001. * Makefile.am (SUBDIRS): List libguile last, so qt gets built
  2002. first.
  2003. * Makefile.in: Regenerated.
  2004. * aclocal.m4, configure: Regenerate, with modern definition of
  2005. CY_AC_WITH_THREADS. Where did the old text come from? Creepy...
  2006. Reduced Guile distribution: one configure script, no plugins.
  2007. * configure.in: Merged the old text from qt/configure.in and
  2008. libguile/configure.in; Tom Tromey says automake only wants one
  2009. configure.in script. This seems fishy, but...
  2010. * Makefile.am: List the subdirectories explicitly; no more PLUGIN
  2011. gubbish.
  2012. * acconfig.h, acinclude.m4: Moved here from libguile, since
  2013. libguile's configure script lives here now.
  2014. * AUTHORS, INSTALL, README: Updated.
  2015. * Makefile.in, aclocal.m4 configure: Regenerated. Just like
  2016. amputated amphibian limbs.
  2017. Tue Apr 22 16:57:38 1997 Jim Blandy <jimb@totoro.cyclic.com>
  2018. * newdoc/ref/Makefile.am (dist_texis): Distribute the index files.
  2019. * newdoc/ref/Makefile.in: Regenerated.
  2020. Mon Apr 14 18:51:25 1997 Jim Blandy <jimb@floss.cyclic.com>
  2021. * threads.m4 (CY_AC_WITH_THREADS): When using coop threads, no
  2022. need to link against libthreads; the files it used to contain
  2023. are now a part of libguile.
  2024. Sun Apr 13 22:14:10 1997 Jim Blandy <jimb@floss.cyclic.com>
  2025. * guile.m4: Revert change of Mar 15, and use the new 'no-define'
  2026. argument to the AM_INIT_AUTOMAKE macro.
  2027. Fri Apr 11 15:43:07 1997 Jim Blandy <jimb@totoro.cyclic.com>
  2028. * ltconfig, ltmain.sh: Upgraded libtool files to 0.9d.
  2029. * README: Say where to find libtool 0.9d.
  2030. Wed Apr 9 17:51:13 1997 Jim Blandy <jimb@floss.cyclic.com>
  2031. Changes to work with automake-1.1n, which has better libtool
  2032. support. Also use libtool 0.8.
  2033. * README: Note new version numbers for automake and libtool.
  2034. * missing: New file required by new automake.
  2035. * Makefile.in: Regenerated.
  2036. Sat Apr 5 16:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
  2037. * newdoc/ref/scheme.texi (set-object-property!): Fix function name.
  2038. * Makefile.am: Omit doc subtree.
  2039. * configure.in: Omit makefiles in doc subtree.
  2040. * Makefile.in, configure: Rebuilt.
  2041. Sat Mar 15 01:11:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  2042. * guile.m4 (AM_INIT_GUILE_MODULE): Replaced AM_INIT_AUTOMAKE macro
  2043. with its definition and commented out definition of PACKAGE. This
  2044. changed seemed necessary after having removed PACKAGE from
  2045. libguile/acconfig.h.
  2046. Mon Feb 24 21:43:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
  2047. * ltconfig, ltmain.sh: New versions from libtool-0.9.
  2048. * configure.in: Added AM_MAINTAINER_MODE
  2049. Fri Feb 7 17:57:46 1997 Jim Blandy <jimb@floss.cyclic.com>
  2050. * config.sub, config.guess: New versions, that handle i686, etc.
  2051. Thu Jan 23 07:06:15 1997 Mark Galassi <rosalia@papageno.lanl.gov>
  2052. * newdoc/tutorial/guile-tut.texi: started checking in the Guile
  2053. tutorial rewrite, but have not merged much into it yet.
  2054. Tue Jan 21 17:28:40 1997 Mark Galassi <rosalia@sarastro.lanl.gov>
  2055. * newdoc/ref/guile-ref.texi: started checking in parts of the
  2056. reference manual re-write.
  2057. Sat Jan 11 14:40:17 1997 Marius Vollmer <mvo@zagadka.ping.de>
  2058. * ltconfig, ltmain.sh: New files for libtool support. libguile,
  2059. rx, gh and gtcltk-lib can now be build as shared libraries.
  2060. * Makefile.am (EXTRA_DIST): Added ltconfig and ltmain.sh
  2061. Sun Jan 5 16:57:10 1997 Jim Blandy <jimb@floss.cyclic.com>
  2062. * Guile 1.0 released. This is the first release by the Free
  2063. Software Foundation; Cygnus has also released earlier versions of
  2064. Guile.
  2065. * GUILE-VERSION: Updated version number.
  2066. * NEWS: Added comments for all the user-visible changes marked in
  2067. the ChangeLogs.
  2068. * README: Updated for release.
  2069. Thu Dec 12 00:14:32 1996 Gary Houston <ghouston@actrix.gen.nz>
  2070. * scsh: new directory.
  2071. Mon Dec 2 17:33:04 1996 Tom Tromey <tromey@cygnus.com>
  2072. * configure.in: Generate doc/guile-programmer/Makefile and
  2073. doc/guile-user/Makefile.
  2074. Sat Nov 30 23:45:54 1996 Tom Tromey <tromey@cygnus.com>
  2075. * aclocal.m4: Now automatically generated by aclocal.
  2076. * threads.m4: New file.
  2077. * guile.m4: New file.
  2078. * Makefile.am, doc/Makefile.am: New files.
  2079. * configure.in: Updated for Automake. Avoid excessively verbose
  2080. "greet" messages.
  2081. Wed Oct 16 07:32:14 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
  2082. * lgh: directory renamed to gh, along with all prefixes of the
  2083. high level library procedures.
  2084. Thu Oct 10 14:37:43 1996 Jim Blandy <jimb@floss.cyclic.com>
  2085. * Makefile.in (TAGS tags): Find the source files in $srcdir.
  2086. Wed Oct 9 19:37:14 1996 Jim Blandy <jimb@floss.cyclic.com>
  2087. * Makefile.in (DISTFILES): Add AUTHORS and aclocal.m4.
  2088. Tue Oct 1 00:13:55 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
  2089. * configure.in: Added some configuration magic from the Cygnus
  2090. distribution.
  2091. * aclocal.m4: New file. For now used for thread support
  2092. configuration.
  2093. Fri Sep 13 14:39:30 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
  2094. * Makefile.in (DISTFILES): added mkinstalldirs to the DISTFILES
  2095. * PLUGIN: changed the PLUGIN/REQ files in the ice-9 and lgh
  2096. directories, to arrange for lgh to the last thing
  2097. configured/built.
  2098. Wed Sep 11 21:11:33 1996 Mark Galassi <rosalia@nis.lanl.gov>
  2099. * lgh/: added the directory in which I implement the high level
  2100. libguile library (lgh_) for this release of Guile. See the
  2101. ChangeLog in there for further details.
  2102. Wed Sep 11 16:12:53 1996 Mark Galassi <rosalia@sarastro.lanl.gov>
  2103. * doc/ (guile-user and guile-programmer): added the guile-user and
  2104. guile-programmer directories which contain the user and programmer
  2105. manuals. See the ChangeLog entries there for detail.
  2106. Wed Sep 11 14:33:49 1996 Jim Blandy <jimb@floss.cyclic.com>
  2107. * Makefile.in (distclean): Don't forget to delete doc/Makefile.
  2108. * Makefile.in (distclean): Don't forget to delete
  2109. config.build-subdirs.
  2110. Thu Sep 5 17:36:15 1996 Jim Blandy <jimb@floss.cyclic.com>
  2111. * Makefile.in (tags): New name for `TAGS' target, which will
  2112. always run the commands.
  2113. Thu Sep 5 09:56:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
  2114. * README: Doc fixes.
  2115. Fri Aug 30 16:56:27 1996 Jim Blandy <jimb@floss.cyclic.com>
  2116. * Makefile.in (TAGS): Produce a single tags file for all of Guile.
  2117. Thu Aug 15 19:03:03 1996 Jim Blandy <jimb@floss.cyclic.com>
  2118. * configure.in: Check for -ldl, so the check for Tcl won't fail
  2119. spuriously.
  2120. Thu Aug 15 01:29:29 1996 Jim Blandy <jimb@totoro.cyclic.com>
  2121. Change the way we decide whether to build gtcltk-lib, so that it's
  2122. omitted from the build process when appropriate, but never from
  2123. the dist process.
  2124. * configure.in: Don't edit all_subdirs depending on the
  2125. availability of Tk; let that be the list of all PLUGIN
  2126. subdirectories present, as it used to be. Instead, edit a new
  2127. variable, build_subdirs; write its final value, the list of
  2128. subdirs we do want to compile in, to config.build-subdirs.
  2129. Substitute that into the top-level Makefile too.
  2130. * Makefile.in (subdirs): Set this to @build_subdirs@, so we only
  2131. recurse on the subdirectories we should build.
  2132. (distdirs): Set this to @existingdirs@, so it includes the subdirs
  2133. we decided not to build.
  2134. * doc/gtcltk.texi: File resurrected from old Guile releases.
  2135. * doc/Makefile.in (info): Build the gtcltk documentation.
  2136. (DIST_FILES): Include it in the distribution.
  2137. * configure.in: If we can find the library for tcl7.5, build
  2138. gtcltk-lib. Call AC_PROG_CC, to help run that test with the right
  2139. compiler (not sure this is necessary).
  2140. Mon Aug 12 15:09:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
  2141. * NEWS: Fix bug reporting address.
  2142. Fri Aug 9 15:58:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
  2143. * AUTHORS: New file, in accordance with the GNU maintainers'
  2144. standards.
  2145. Tue Aug 6 14:40:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
  2146. * README: Renamed from ANNOUNCE; include bug report address,
  2147. description, and short tour.
  2148. * INSTALL: Renamed from BUILDING.
  2149. * NEWS: New file.
  2150. * Makefile.in (DISTFILES): Update appropriately.
  2151. Thu Aug 1 02:31:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
  2152. * doc/Makefile.in: Added pattern targets for creating DVI and
  2153. PostScript files.
  2154. (%.ps, %.dvi, %.txt): New targets.
  2155. (DVIPS, TEXI2DVI): New variables.
  2156. * GUILE-VERSION: Updated to 1.0b3.
  2157. Rehashed distribution system, in preparation for nightly
  2158. snapshots. Other changes in subdirectories.
  2159. * Makefile.in (dist): Rewritten --- the old target was out of
  2160. date, dependent on files that we don't have, and relied on GNU
  2161. tar. The new target is simpler.
  2162. (VERSION, srcdir, dist_dirs): New variables.
  2163. (DISTFILES): Renamed from localfiles. Added GUILE-VERSION and
  2164. TODO.
  2165. (localtreats): Variable removed. We don't have this file.
  2166. (info): cd to doc and make info there; don't make info in every
  2167. ${subdir}; those Makefiles don't know what to do.
  2168. (distname, distdir, treats, announcefile): Variables removed.
  2169. (manifest-file): Target removed.
  2170. (dist-dir): New target, responsible for distributable files in
  2171. this directory.
  2172. (GZIP, GZIP_EXT, TAR_VERBOSE, DIST_NAME): New variables,
  2173. controlling the 'dist' target.
  2174. * configure.in: Substitute GUILE-VERSION into the top-level
  2175. Makefile. Build doc/Makefile from doc/Makefile.in.
  2176. * doc/Makefile.in: New file.
  2177. ;; Local Variables:
  2178. ;; coding: utf-8
  2179. ;; End: