bull20.txt 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064
  1. -----------------------------------------------------------------------------
  2. GNU's Bulletin June, 1995
  3. The GNU's Bulletin is the semi-annual newsletter of the
  4. Free Software Foundation, bringing you
  5. news about the GNU Project.
  6. Free Software Foundation, Inc. Telephone: +1-617-542-5942
  7. 59 Temple Place - Suite 330 Fax: (including Japan) +1-617-542-2652
  8. Boston, MA 02111-1307 Free Dial Fax (in Japan):
  9. USA 0031-13-2473 (KDD)
  10. Electronic mail: `gnu@prep.ai.mit.edu' 0066-3382-0158 (IDC)
  11. Table of Contents
  12. -----------------
  13. GNU's Who
  14. Administrivia and Copyright
  15. What Is the FSF?
  16. What Is Copyleft?
  17. What Is the Hurd?
  18. GNU Utilities Safer!
  19. Conditions for Using Bison
  20. GNUs Flashes
  21. Help from Free Software Companies
  22. Free Software Redistributors Donate
  23. Free Software Support
  24. Postcards Only!
  25. Phil Zimmermann Legal Defense Fund Appeal
  26. What Is the LPF?
  27. News from the LPF
  28. GNU & Other Free Software in Japan
  29. Freely Available Texts
  30. Help the GNU Translation Project
  31. GUILE: GNUs' Ubiquitous Extension Language
  32. Forthcoming GNUs
  33. GNU Software
  34. Program/Package Cross Reference
  35. Tapes
  36. Languages Tape
  37. Lisps/Emacs Tape
  38. Utilities Tape
  39. Scheme Tape
  40. X11 Tapes
  41. Berkeley 4.4BSD--Lite Tape
  42. VMS Emacs and VMS Compiler Tapes
  43. CD-ROMs/Books with CD-ROMs
  44. Pricing of the GNU CD-ROMs
  45. December 1994 Compiler Tools Binaries CD-ROM
  46. MS-DOS Book with CD-ROM
  47. Debian GNU/Linux Book with CD-ROM
  48. Source Code CD-ROMs
  49. June 1995 Source Code CD-ROM
  50. May 1994 Source Code CD-ROM
  51. November 1993 Source Code CD-ROM
  52. MS-DOS Diskettes
  53. DJGPP Diskettes
  54. Emacs Diskettes
  55. Selected Utilities Diskettes
  56. Windows Diskette
  57. Tape & CD-ROM Subscription Service
  58. The Deluxe Distribution
  59. GNU Documentation
  60. How to Get GNU Software
  61. Other GPLed Software
  62. Free Software for Microcomputers
  63. FSF T-shirt
  64. Project GNU Wish List
  65. Thank GNUs
  66. Donations Translate Into Free Software
  67. Cygnus Matches Donations!
  68. Free Software Foundation Order Form
  69. Address Page
  70. -----------------------------------------------------------------------------
  71. GNU's Who
  72. *********
  73. Miles Bader has joined us to work on the Hurd with Michael Bushnell and
  74. Roland McGrath. Roland also maintains `make' and the GNU C library.
  75. Ian Murdock does Debian GNU/Linux releases and other programming tasks.
  76. Karl Heuer enhances GNU Emacs. Daniel Hagerty is our system obfuscator and
  77. release coordinator. Melissa Weisshaus is working on special documentation
  78. projects. Volunteer Charles Hannum helps with typesetting and many other
  79. jobs.
  80. Robert J. Chassell is our Secretary/Treasurer. Lisa Bloch is our Executive
  81. Director. Bryttan Bradley manages many of the functions of the FSF Office,
  82. and Mike Drain is our Distribution Manager. Gena L. Bean has been working
  83. part time on special projects.
  84. Richard Stallman continues as a volunteer who does countless tasks, such as
  85. Emacs maintenance. Thanks to volunteer Scott Ewing for helping to coordinate
  86. all the volunteers in the GNU Project. Thanks to volunteer Tami Friedman for
  87. handling much administrivia here at the FSF. Volunteer Len Tower remains our
  88. online JOAT (jack-of-all-trades), handling mailing lists, gnUSENET newsgroups,
  89. information requests, etc.
  90. Administrivia and Copyright
  91. ***************************
  92. Written and Edited by: Melissa Weisshaus, Daniel Hagerty,
  93. Robert J. Chassell, and Leonard H. Tower Jr.
  94. Illustrations by: Etienne Suvasa
  95. Japanese Edition by: Mieko Hikichi and Nobuyuki Hikichi
  96. ISSN (International Standard Serial Number): 1075-7813
  97. The GNU's Bulletin is published at the end of January and the end of June
  98. each year. Please note that there is no postal mailing list. To get a copy,
  99. send your name and address with your request to the address on page 1.
  100. Enclosing $0.78 in US Postage and/or a donation of a few dollars is
  101. appreciated but not required. If you're from outside the USA, sending a
  102. mailing label and enough International Reply Coupons for a package of about
  103. 100 grams is appreciated but not required. (Including a few extra
  104. International Reply Coupons for copying costs is also appreciated.)
  105. Copyright (C) 1995 Free Software Foundation, Inc.
  106. Permission is granted to anyone to make or distribute verbatim copies of this
  107. document, in any medium, provided that the copyright notice and permission
  108. notice are preserved, and that the distributor grants the recipient
  109. permission for further redistribution as permitted by this notice.
  110. -----------------------------------------------------------------------------
  111. *...imagine how little used calculus would have been if a court had
  112. decided that no one could study, use, or do research on it without
  113. paying a royalty to Newton's designated heirs.*
  114. - The Independent, October 5, 1992
  115. -----------------------------------------------------------------------------
  116. What Is the FSF?
  117. ****************
  118. The Free Software Foundation is dedicated to eliminating restrictions on
  119. people's right to use, copy, modify, and redistribute computer programs. We
  120. do this by promoting the development and use of free software. Specifically,
  121. we are putting together a complete, integrated software system named "GNU"
  122. (pronounced "guh-new", "GNU's Not Unix") that will be upwardly compatible
  123. with Unix. Most parts of this system are already being used and distributed.
  124. The word "free" in our name refers to freedom, not price. You may or may not
  125. pay money to get GNU software, but either way you have two specific freedoms
  126. once you get it: first, the freedom to copy a program, and distribute it to
  127. your friends and co-workers; and second, the freedom to change a program as
  128. you wish, by having full access to source code. You can study the source and
  129. learn how such programs are written. You may then be able to port it,
  130. improve it, and share your changes with others. If you redistribute GNU
  131. software you may charge a distribution fee or give it away, so long as you
  132. include the source code and the GPL; see *Note What Is Copyleft::, for
  133. details.
  134. Other organizations distribute whatever free software happens to be
  135. available. By contrast, the Free Software Foundation concentrates on the
  136. development of new free software, working towards a GNU system complete
  137. enough to eliminate the need to use a proprietary system.
  138. Besides developing GNU, the FSF distributes GNU software and manuals for a
  139. distribution fee, and accepts gifts (tax-deductible in the U.S.) to support
  140. GNU development. Most of the FSF's funds come from its distribution service.
  141. The Board of the Foundation is: Richard M. Stallman, President;
  142. Robert J. Chassell, Secretary/Treasurer; Gerald J. Sussman, Harold Abelson,
  143. and Leonard H. Tower Jr., Directors.
  144. What Is Copyleft?
  145. *****************
  146. The simplest way to make a program free is to put it in the public domain,
  147. uncopyrighted. But this permits proprietary modified versions, which deny
  148. others the freedom to redistribute and modify; such versions undermine the
  149. goal of giving freedom to *all* users. To prevent this, "copyleft" uses
  150. copyrights in a novel manner. Typically, copyrights take away freedoms;
  151. copyleft preserves them. It is a legal instrument that requires those who
  152. pass on a program to include the rights to use, modify, and redistribute the
  153. code; the code and the freedoms become legally inseparable.
  154. The copyleft used by the GNU Project is made from the combination of a
  155. regular copyright notice and the "GNU General Public License" (GPL). The GPL
  156. is a copying license which basically says that you have the aforementioned
  157. freedoms. An alternate form, the "GNU Library General Public License"
  158. (LGPL), applies to a few GNU libraries. This license permits linking the
  159. libraries into proprietary executables under certain conditions. The
  160. appropriate license is included in each GNU source code distribution and in
  161. many manuals. Printed copies are available upon request.
  162. We strongly encourage you to copyleft your programs and documentation, and we
  163. have made it as simple as possible for you to do so. The details on how to
  164. apply either form of GNU Public License appear at the end of each license.
  165. What Is the Hurd?
  166. *****************
  167. The Hurd will be the foundation of the GNU system. It is a collection of
  168. server processes that run on top of Mach, a free message-passing kernel
  169. developed at CMU. Mach's virtual memory management facilities are also used
  170. by the Hurd. The GNU C Library will provide the Unix system call interface,
  171. using the Hurd servers for those services it can't provide itself.
  172. One goal of the Hurd is to establish a framework for shared development and
  173. maintenance. The Hurd is like GNU Emacs in that it will allow users to
  174. create and share useful projects without knowing much about the internal
  175. workings of the system--projects that might never have been attempted without
  176. freely available source, a well-designed interface, and a multiple server
  177. design.
  178. Currently, there are free ports of the Mach kernel to the 386 PC, the DEC
  179. PMAX workstation, and several other machines, with more in progress,
  180. including the Amiga, PA-RISC HP 700, & DEC Alpha-3000. Contact us if you
  181. want to help with one of these or start your own. Porting the GNU Hurd & GNU
  182. C Library is easy (easier than porting GNU Emacs, certainly easier than
  183. porting the compiler) once a Mach port to a particular platform exists.
  184. Right now we are using the University of Utah's Mach distribution which we
  185. hope will be unified with the distribution produced by the Open Software
  186. Foundation.
  187. See *Note GNUs Flashes:: for a report on recent progress.
  188. We need volunteers for significant projects relating to the Hurd.
  189. Experienced system programmers who are interested should please send mail to
  190. `gnu@prep.ai.mit.edu'. Porting the Mach kernel or the GNU C Library to new
  191. systems is another way to help development of the Hurd.
  192. GNU Utilities Safer!
  193. ********************
  194. Barton P. Miller & his colleagues tested the reliability of Unix utility
  195. programs in 1990 & 1995. Each time, GNU's utilities came out considerably
  196. ahead. They tested seven commercial Unix systems as well as GNU. By
  197. subjecting them to a random input stream, they could "crash (with core dump)
  198. or hang (infinite loop) over 40% (in the worst case) of the basic utility
  199. programs ..." They found that the commercial Unix systems had a failure rate
  200. that ranged from 15% - 43%. In contrast, the failure rate for GNU was only
  201. 7%.
  202. For details, see the paper `Fuzz Revisited: A Re-examination of the
  203. Reliability of Unix Utilities and Services' by Barton P. Miller, David Koski,
  204. Cjin Pheow Lee, Vivekananda Maganty, Ravi Murthy, Ajitkumar Natarajan, and
  205. Jeff Steidl, which is available on the World Wide Web at URL:
  206. `ftp://grilled.cs.wisc.edu/technical_papers/fuzz-revisited.ps.Z'.
  207. Conditions for Using Bison
  208. **************************
  209. As of Bison version 1.24, we have changed the distribution terms for
  210. `yyparse' to permit using Bison's output in non-free programs. Formerly,
  211. Bison parsers could be used only in programs that were free software.
  212. The other GNU tools, such as the GNU C compiler, have never had such a
  213. requirement. They could always be used for non-free software. The reason
  214. Bison was different was not due to a special policy decision; it resulted
  215. from applying the usual General Public License to all of the Bison source
  216. code.
  217. The output of the Bison utility--a parser file--contains a verbatim copy of a
  218. sizable piece of Bison: the code for the `yyparse' function. (The actions
  219. from your grammar are inserted into `yyparse' at one point, but the rest of
  220. the function is not changed.) When we applied the GPL terms to the code for
  221. `yyparse', the effect was to restrict the use of Bison output to free
  222. software.
  223. We didn't change the terms because of sympathy for people who want to make
  224. software proprietary. *Software should be free.* But we concluded that
  225. limiting Bison's use to free software was doing little to encourage people to
  226. make other software free. So we decided to make the practical conditions for
  227. using Bison match the practical conditions for using the other GNU tools.
  228. GNUs Flashes
  229. ************
  230. * GNU Emacs 19.29 (*Note GNU Software::)
  231. Emacs 19.29 has just been released. Its new features include support for
  232. Windows NT, DEC Alphas, and Motif.
  233. * New Programs and Manual on the Tapes (*Note GNU Software::)
  234. Texinfo source for the manual `Programming in Emacs Lisp: An
  235. Introduction' is now on the Lisps/Emacs Tape. GNU Fortran (`g77'),
  236. `ncurses', & `ucblogo' are now on the *Note Languages Tape::.
  237. `cfengine', GIT, `mkisofs', `pine', & `saoimage' have been added to the
  238. *Note Utilities Tape::.
  239. * New Source Code CD! (*Note June 1995 Source Code CD-ROM::)
  240. We are releasing the Sixth Edition of our Source Code CD-ROM. It
  241. includes Emacs 19.29, and most of the new programs and changes on the
  242. tapes.
  243. * FlexFAX (Also *note GNU Software::.)
  244. Its author has renamed FlexFAX to HylaFAX due to a trademark conflict.
  245. * Older FSF CD-ROMs Available at a Reduced Price
  246. While supplies last, older versions of our CD-ROMs are available at a
  247. reduced price. See the *note Free Software Foundation Order Form::.,
  248. for ordering information.
  249. * GNU Software Now Works on MS-DOS (Also *note GNU Software::.)
  250. GNU Emacs 19 and many other GNU programs have been ported to MS-DOS for
  251. i386, i486, & Pentium machines. We ship binaries & sources on the *Note
  252. DJGPP Diskettes::, *Note Emacs Diskettes::, *Note Selected Utilities
  253. Diskettes::, the *Note Compiler Tools Binaries CD-ROM::, & soon on the
  254. *Note MS-DOS Book with CD-ROM::.
  255. * Postscript Versions of GNU Manuals Available for FTP
  256. FTP host `phi.sinica.edu.tw' has Postscript files (for A4 paper) of GNU
  257. manuals in `/pub/aspac/gnu/'. The FSF is not responsible for these
  258. files.
  259. * Hurd (Also *note What Is the Hurd::.)
  260. The GNU Hurd now runs programs native. We have implemented both shared
  261. libraries using ELF, & the popular `ext2' file system used by Linux. It
  262. can run GCC, `make', Emacs, & most other GNU utilities. Progress is
  263. being made so rapidly that by the time you read this it probably does
  264. much more. It is right on the verge of being self-hosting (able to run
  265. on its own well enough to compile its own source code, & be used for its
  266. own development). We have much better device supportm & some new
  267. utilities, including a fancy `ps' & `settrans'. For a complete system
  268. we still have much more work to do, but we will make an alpha release as
  269. soon as the network software is finished & shared libraries have been
  270. well tested. We have a mailing list to announce progress; to be added
  271. to it, ask `hurd-announce-request@prep.ai.mit.edu'.
  272. * Mach 4: a new research version of Mach
  273. Complete source and binaries for two versions of the Mach 4 kernel and
  274. related programs, part of an ongoing OS research project at the
  275. University of Utah, are available by anonymous FTP in
  276. `jaguar.cs.utah.edu:/flexmach'.
  277. One version is essentially a reorganization of CMU's Mach 3 (MK83a) and
  278. currently supports only the Intel x86 architecture. Changes so far have
  279. increased Mach's ease of use & practicality in a PC environment. These
  280. include a much simpler GNU-style build environment; a new kernel boot
  281. mechanism allowing booting using Linux, NetBSD, FreeBSD, or Mach boot
  282. loaders; compatibility with Linux network device drivers (& soon, Linux
  283. SCSI drivers); some new device drivers; & support for the "Lites"
  284. BSD-based single-server. There are pre-built binaries for the kernel,
  285. Lites server, & the compiler tools to build Mach 4 under Linux, NetBSD,
  286. or FreeBSD.
  287. The other version supports only the PA-RISC 1.1 (HP 700) platform. It
  288. includes the new build environment, some early results of research on
  289. improving Mach RPC, as well as complete HP 700 support. It is
  290. significantly less robust than the x86 version and should be considered
  291. an "alpha snapshot" for hard-core OS hackers only. The snapshot
  292. includes a complete 4.4BSD-Lite based single-server execution
  293. environment consisting of the Mach kernel, the "Lites" BSD-based
  294. single-server/emulator, a complete GNU compiler tool chain for the ELF
  295. object format, and essential 4.4-Lite utilities.
  296. Utah expects a major release by December 1995. It will support both
  297. platforms, add more research results in the VM & RPC systems, add a
  298. programmable class server/linker/loader (OMOS), a powerful interface
  299. definition language compiler, & a portable distributed shared memory
  300. system.
  301. `http://www.cs.utah.edu/projects/flexmach/' contains more information on
  302. Mach 4 and related projects at the University of Utah, or send mail to
  303. `mach4-users-request@cs.utah.edu'.
  304. * The Dictionary Project
  305. The FSF has a copy of the unabridged `Century Dictionary', now in the
  306. public domain, and we are planning to put it online. We tried OCR, but
  307. it wasn't reliable enough. The first group of dictionary volunteers
  308. have inputed some entries. We are evaluating their work to see how best
  309. to proceed.
  310. * Manuals Updated since Last Bulletin (Also *note Documentation::.)
  311. These new editions includes bug fixes and additional information:
  312. `Debugging with GDB', `Emacs Manual', `GNU Emacs Lisp Reference Manual',
  313. `Texinfo Manual', and `C Library Reference Manual'.
  314. * GNU Column in Linux Magazine
  315. Arnold Robbins, `arnold@gnu.ai.mit.edu', a long-time volunteer for the
  316. GNU Project, writes "What's GNU?", a semi-regular column in the monthly
  317. magazine `Linux Journal'. The column discusses the GNU Project, its
  318. software, and other interesting free software. Authors of significant
  319. GNU software packages occasionally write columns as guest columnists.
  320. * Source CD-ROM Subscriptions
  321. We offer a subscription service for the Source Code CD-ROM in addition to
  322. our tape subscription service. For the price of 3 CD-ROMs (plus any
  323. shipping costs) you get the next 4 that we make. We make between two and
  324. four updates a year. *Note Tape & CD-ROM Subscription Service::.
  325. * The FSF Takes Credit Cards
  326. We take these credit cards: Carte Blanche, Diner's Club, Mastercard, JCB,
  327. Visa, and American Express. Please note that we are charged about 5% of
  328. an order's total amount in credit card processing fees. Please consider
  329. paying by check instead or adding on a 5% donation to make up the
  330. difference.
  331. Help from Free Software Companies
  332. *********************************
  333. When choosing a free software business, ask those you are considering how
  334. much they do to assist free software development, e.g., by contributing money
  335. to free software development or by writing free software improvements
  336. themselves for general use. By basing your decision partially on this
  337. factor, you can help encourage those who profit from free software to
  338. contribute to its growth.
  339. Wingnut (SRA's special GNU support group) regularly donates a part of its
  340. income to the FSF to support the development of new GNU programs. Listing
  341. them here is our way of thanking them. Wingnut has made a pledge to donate
  342. 10% of their income to the FSF, and has purchased several Deluxe Distribution
  343. packages in Japan. Also see *Note Cygnus Matches Donations!::.
  344. Wingnut Project
  345. Software Research Associates, Inc.
  346. 1-1-1 Hirakawa-cho, Chiyoda-ku
  347. Tokyo 102, Japan
  348. Phone: (+81-3)3234-2611
  349. Fax: (+81-3)3942-5174
  350. E-mail: `info-wingnut@sra.co.jp'
  351. Free Software Redistributors Donate
  352. ***********************************
  353. The Sun Users Group Deutschland and ASCII Corporation (Japan) have added
  354. donations to the FSF to the price of their next CD-ROM of GNU software. The
  355. producers of the SNOW 2.1 CD added the words "Includes $5 donation to the FSF"
  356. to the front of their CD. Potential buyers will know precisely how much of
  357. the price is for the FSF and how much is for the redistributor. Austin Code
  358. Works, a redistributor of free software, is supporting free software
  359. development by giving the FSF 20% of the selling price for the GNU software
  360. packages they produce and sell. Walnut Creek CDROM and Info Magic, two more
  361. free software redistributors, are also giving us a percentage of their selling
  362. price. CQ Publishing made a large donation from the sales of their book about
  363. GAWK in Japanese.
  364. In the long run, the success of free software depends on how much new free
  365. software people develop. Free software distribution offers an opportunity to
  366. raise funds for such development in an ethical way. These redistributors
  367. have made use of the opportunity. Many others let it go to waste.
  368. You can help promote free software development by convincing for-a-fee
  369. redistributors to contribute--either by doing development themselves or by
  370. donating to development organizations (the FSF and others).
  371. The way to convince distributors to contribute is to demand and expect this
  372. of them. This means choosing among distributors partly by how much they give
  373. to free software development. Then you can show distributors they must
  374. compete to be the one who gives the most.
  375. To make this work, you must insist on numbers that you can compare, such as,
  376. "We will give ten dollars to the Foobar project for each disk sold." A vague
  377. commitment, such as "A portion of the profits is donated," doesn't give you a
  378. basis for comparison. Even a precise fraction "of the profits from this
  379. disk" is not very meaningful, since creative accounting and unrelated
  380. business decisions can greatly alter what fraction of the sales price counts
  381. as profit.
  382. Also, press developers for firm information about what kind of development
  383. they do or support. Some kinds make much more long-term difference than
  384. others. For example, maintaining a separate version of a GNU program
  385. contributes very little; maintaining a program on behalf of the GNU Project
  386. contributes much. Easy new ports contribute little, since someone else would
  387. surely do them; difficult ports such as adding a new CPU to the GNU compiler
  388. contribute more; major new features and programs contribute the most.
  389. By establishing the idea that supporting further development is "the proper
  390. thing to do" when distributing free software for a fee, we can assure a
  391. steady flow of resources for making more free software.
  392. Free Software Support
  393. *********************
  394. The Free Software Foundation does not provide technical support. Our mission
  395. is developing software, because that is the most time-efficient way to
  396. increase what free software can do. We leave it to others to earn a living
  397. providing support. We see programmers as providing a service, much as
  398. doctors and lawyers now do; both medical and legal knowledge are freely
  399. redistributable, but their practitioners charge for service.
  400. The GNU Service Directory is a list of people who offer support and other
  401. consulting services. It is in the file `etc/SERVICE' in the GNU Emacs
  402. distribution, `SERVICE' in the GCC distribution, and
  403. `/pub/gnu/GNUinfo/SERVICE' on a GNU FTP host (listed in *Note How to Get GNU
  404. Software::). Contact us to get a copy or to be listed in it. Those service
  405. providers who share their income with the FSF are listed in *Note Help from
  406. Free Software Companies::.
  407. If you find a deficiency in any GNU software, we want to know. We have many
  408. Internet mailing lists for bug reports, announcements, and questions. They
  409. are also gatewayed into USENET news as the `gnu.*' newsgroups. You can
  410. request a list of the mailing lists from either address on page 1.
  411. When we receive a bug report, we usually try to fix the problem. While our
  412. bug fixes may seem like individual assistance, they are not; they are part of
  413. preparing a new improved version. We may send you a patch for a bug so that
  414. you can help us test the fix and ensure its quality. If your bug report does
  415. not evoke a solution from us, you may still get one from another user who
  416. reads our bug report mailing lists. Otherwise, use the Service Directory.
  417. Please do not ask us to help you install software or learn how to use it--but
  418. do tell us how an installation script fails or where documentation is unclear.
  419. If you have no Internet access, you can get mail and USENET news via UUCP.
  420. Contact a local UUCP site or a commercial UUCP site such as:
  421. UUNET Communications Services
  422. 3060 Williams Drive
  423. Fairfax, VA 22031-4648
  424. USA
  425. Telephone: +1-800-4UUNET4
  426. +1-703-206-5600
  427. Fax: +1-703-206-5601
  428. Electronic-Mail: `info@uunet.uu.net'
  429. A list of commercial UUCP and Internet service providers is posted
  430. periodically to USENET in the newsgroup `news.announce.newusers' with
  431. `Subject: How to become a USENET site'. You can also get it via anonymous
  432. FTP from the host `rtfm.mit.edu' in the file `How_to_become_a_USENET_site',
  433. in the directory `/pub/usenet-by-group/news.announce.newusers'.
  434. When choosing a service provider, ask those you are considering how much they
  435. do to assist free software development, e.g., by contributing money to free
  436. software development or by writing free software improvements themselves for
  437. general use. By basing your decision partially on this factor, you can
  438. encourage those who profit from free software to contribute to its growth.
  439. Postcards Only!
  440. ***************
  441. CyberWire Dispatch points out that the United States government is continuing
  442. its efforts to ban messages that it cannot read.
  443. Such messages use various methods of encryption. These methods are like a
  444. traditional paper envelope in that they prevent an unintended person from
  445. reading the message. But they are more effective in that only the intended
  446. recipient can `open the envelope', that is, decrypt the message and read it.
  447. >From the point of view of the United States government, a ban on private
  448. encryption would turn letters into postcards.
  449. In a Congressional hearing on 11 May 1995, FBI Director Louis Freeh said,
  450. "[W]e're in favor of strong encryption ... We just want to make sure we have
  451. a trap door and key ...".
  452. Freeh fears that crooks will use unbreakable methods of encryption for their
  453. communications unless they are banned; but if these methods are banned, he
  454. expects crooks will obligingly use the readable, government-provided methods.
  455. Those who oppose a ban and favor non-governmental encryption point out that a
  456. ban will be ineffective against such crooks. The encryption software already
  457. exists and is readily available. The law-abiding will send messages that can
  458. be read by the government; smart crooks will not.
  459. As a practical matter, the FBI will have little choice but to focus on the
  460. messages of law-abiding people who are carrying out actions that are legal
  461. and patriotic, but unpopular. This has happened in the past, and there is no
  462. reason not to expect this to happen in the future.
  463. If Freeh's hopes become law, non-governmental encryption will become illegal.
  464. In the past, the government has favored its `Clipper chip', but a more
  465. likely future plan would be for the government to certify several private
  466. companies to provide legal encryption, but only for messages that people in
  467. the government (and people who bribe them) can read.
  468. We urge you to write your Senators and Representatives in Congress opposing
  469. this attack on Americans' Constitutional right "to be secure in their
  470. persons, houses, papers, and effects, against unreasonable search and
  471. seizures ...".
  472. Zimmermann Legal Defense Fund Appeal
  473. ************************************
  474. Phil Zimmermann, who wrote the public-key encryption program known as Pretty
  475. Good Privacy ("PGP") and released it on the Internet, is facing prosecution
  476. for "exporting" it out of the United States.
  477. There is a law prohibiting the export of encryption software from the US.
  478. Zimmermann did not do this, but the U.S. government hopes to establish that
  479. posting an encryption program on a BBS or on the Internet constitutes
  480. exporting it--in effect, stretching export control into domestic censorship.
  481. If the U.S. wins, that will have a chilling effect on the free flow of
  482. information on the global network, as well as on everyone's privacy from
  483. government snooping.
  484. Estimates are that Zimmermann's defense will cost over $100,000--and that
  485. doesn't even count lawyers' fees. To help pay this, a legal trust fund, the
  486. Philip Zimmermann Defense Fund (PZDF), has been established. Donations are
  487. accepted in any reliable form, check, money order, or wire transfer, and in
  488. any currency, as well as by credit card.
  489. To send a check or money order by mail, make it payable, *not* to Phil
  490. Zimmermann, but to "Philip L. Dubois, Attorney Trust Account." Mail the check
  491. or money order to the following address:
  492. Philip Dubois
  493. 2305 Broadway
  494. Boulder, CO 80304
  495. USA
  496. Telephone: +1-303-444-3885
  497. To send a wire transfer, your bank will need the following information:
  498. Bank: VectraBank
  499. Routing #: 107004365
  500. Account #: 0113830
  501. Account Name: ``Philip L. Dubois, Attorney Trust Account''
  502. Meanwhile, the U.S. wants to prohibit the use of encryption which it cannot
  503. break, as a "counterterrorist" measure (*note Postcards Only!::.). To
  504. protect your privacy, write your Senators and Representatives in Congress now.
  505. What Is the LPF?
  506. ****************
  507. The League for Programming Freedom (LPF) aims to protect the freedom to write
  508. software. This freedom is threatened by "look-and-feel" interface copyright
  509. lawsuits and by software patents.
  510. The LPF is a grass-roots organization of professors, students, business
  511. people, programmers, users, and even software companies dedicated to bringing
  512. back the freedom to write programs. The League is not opposed to the legal
  513. system that Congress intended--copyright on individual programs. The LPF
  514. aims to reverse the recent changes made by judges in response to special
  515. interests.
  516. Membership dues in the League are $42 per year for programmers, managers, and
  517. professionals; $10.50 for students; $21 for others. To join, please send a
  518. check and the following information:
  519. * Your name and phone numbers (home, work, or both).
  520. * The address to use for League mailings, a few each year (please indicate
  521. whether it is your home address or your work address).
  522. * The company you work for, and your position.
  523. * Your email address, so the League can contact you for political action.
  524. (If you don't want to be contacted for this, please say so, but please
  525. provide your email address anyway.)
  526. * Please mention anything about you which would enable your
  527. endorsement of the LPF to impress the public.
  528. * Please say whether you would like to help with LPF activities.
  529. *The League is not connected with the Free Software Foundation, and is not
  530. concerned with the issue of free software.* The FSF supports the LPF
  531. because, like any software developer smaller than IBM, it is endangered by
  532. software patents, and interface copyrights. You are in danger, too! It
  533. would be easy to ignore the problem until you or your employer is sued, but
  534. it is more prudent to organize before that happens.
  535. If you haven't made up your mind yet, write to LPF for more information:
  536. League for Programming Freedom
  537. 1 Kendall Square - #143
  538. P.O. Box 9171
  539. Cambridge, MA 02139
  540. USA
  541. Telephone: +1-617-621-7084
  542. Electronic-Mail: `lpf@uunet.uu.net'
  543. WWW: `http://www.lpf.org/'
  544. FTP: `ftp.uu.net:/doc/lpf'
  545. News from the LPF
  546. *****************
  547. by Dean Anderson, President, League for Programming Freedom
  548. Borland won its appeal of the Lotus suit!! Lotus successfully sued Borland
  549. for infringing on a copyright of its menu structure and may have stood to
  550. gain $100 million dollars in a ruling issued in 1993. This appeal reversed
  551. that ruling. Lotus has reportedly decided to file an appeal with the Supreme
  552. Court. The LPF is making arrangements to file a revised amicus brief should
  553. the Supreme Court decide to hear the case.
  554. This is outstanding news and a great victory for the LPF. The arguments and
  555. decision very closely match our position, and the amicus brief arranged by
  556. the LPF was partly responsible for the outcome of the case. If the decision
  557. stands, it may spell the end of user interface copyrights.
  558. The LPF is also happy to have received a *tremendous* amount of support on
  559. the GIF issue. This issue had the double benefit of expressing disapproval
  560. of the Unisys patent, and gaining exposure and publicity for the LPF.
  561. Qualcomm recently settled some protracted patent litigation with Interdigital
  562. over CDMA technology. (CDMA is a technology for cellular phones picked up by
  563. Sprint, AT&T, etc.) In 1993, Interdigital sued Qualcomm and was countersued.
  564. After 10 trial days went by, the parties settled.
  565. Even though Qualcomm felt it was not infringing any patents, it paid
  566. Interdigital $5.5 million for a blanket license because continuing with the
  567. trial and inevitable appeal would be more expensive, even if they eventually
  568. won.
  569. Qualcomm just released its earnings report. It wrote off a one-time charge
  570. of $13 million to cover the entire case. By simple subtraction, its
  571. litigation costs were $7.5 million. Interdigital's own legal and support
  572. costs were reportedly $4.5 million. That leaves $1 million for their
  573. shareholders and $12 million in litigation costs for the two companies. This
  574. is just another example of the excessive costs of software patents.
  575. Things are beginning to heat up. Keep writing letters! Write the LPF, your
  576. representatives, and others. See our Web page at `http://www.lpf.org/' for
  577. more info on how to help the LPF (suggestions to: `webmasters@lpf.org').
  578. GNU & Other Free Software in Japan
  579. **********************************
  580. Mieko (`h-mieko@sra.co.jp') and Nobuyuki Hikichi (`hikichi@sra.co.jp')
  581. continue to volunteer for the GNU Project in Japan. They translate each
  582. issue of this Bulletin into Japanese and distribute it widely, along with
  583. their translation of the GNU General Public License Version 2. This
  584. translation of the GPL is authorized by the FSF and is available by anonymous
  585. FTP from `ftp.sra.co.jp' in `/pub/gnu/local-fix/GPL2-j'. They are working on
  586. a formal translation of the GNU Library General Public License. They also
  587. solicit donations and offer GNU software consulting.
  588. `nepoch' (the Japanese version of Epoch) & MULE are available & widely used
  589. in Japan. MULE (the MULtilingual Enhancement of GNU Emacs) can handle many
  590. character sets at once. Its features are being merged into the principal
  591. version of Emacs. *Note GNU Software::, for more details on MULE. The FSF
  592. does not distribute `nepoch', but MULE is available (*note June 1995 Source
  593. Code CD-ROM::. & the *Note Emacs Diskettes::). You can FTP it from
  594. `sh.wide.ad.jp' in `/JAPAN/mule', or `etlport.etl.go.jp' in `/pub/mule'.
  595. The Village Center, Inc. prints a Japanese translation of the `GNU Emacs Lisp
  596. Reference Manual' and uploads the Texinfo source to various bulletin boards.
  597. They have also published a copylefted book, Nobuyuki's and Mieko's `Think
  598. GNU'. This appears to be the first non-FSF copylefted publication in Japan.
  599. Part of their profits are donated to the FSF. Their address is:
  600. Village Center, Inc.
  601. 3-2 Kanda Jinbo-cho, Chiyoda-ku
  602. Tokyo 101, Japan
  603. Telephone: 03-3221-3520
  604. Addison-Wesley Publishers Japan Ltd. has printed a Japanese translation of
  605. the `GNU Make Manual' and the `GAWK Manual'. Their address is:
  606. Addison-Wesley Publishers Japan Ltd.
  607. Nichibou Bldg. 2F
  608. 1-2-2 Sarugaku-cho, Chiyoda-ku
  609. Tokyo 101, Japan
  610. Telephone: 03-3291-4581
  611. The Institute for New Generation Computer Technology, ICOT, has released the
  612. "ICOT Free Software (IFS)" distribution. The famous Fifth Generation
  613. Computing System project produced IFS, which includes 100 systems for symbol
  614. processing, knowledge processing, problem solving, inference, & natural
  615. language processing. Many of them are based on parallel logic programming.
  616. Nearly half of them run on Unix workstations. The ICOT research center
  617. closed in March 1995, but distribution & maintenance of IFS will continue.
  618. For details, contact `ifs@icot.or.jp', or refer to `http://www.icot.or.jp/'.
  619. There is a mailing list in Japan to discuss both hardware & software which is
  620. under the GNU General Public License, providing information about making your
  621. own computer system. The main language of the list is Japanese. If you are
  622. interested in getting information or having discussions in English, ask
  623. `mka@apricot.juice.or.jp' or `ishiz@muraoka.info.waseda.ac.jp'.
  624. Many groups in Japan now distribute GNU software. They include JUG, a PC
  625. user group; ASCII, a periodical and book publisher; the Fujitsu FM Towns
  626. users group; and SRA's special GNU support group, called Wingnut, who also
  627. purchased the first Deluxe package in Japan. (Since then, there have been
  628. several other purchases of the Deluxe package in Japan.)
  629. It is easy to place an order directly with the FSF from Japan, thus funding
  630. new software. To get an FSF Order Form written in Japanese, ask
  631. `japan-fsf-orders@prep.ai.mit.edu'. We encourage you to buy software on
  632. tapes or CDs: for example, 140 CD-ROM orders at the corporate rate allows the
  633. FSF to hire a programmer for a year to write more free software.
  634. Freely Available Texts
  635. **********************
  636. Freely redistributable information isn't just software. We have a list of
  637. groups providing various books, historical documents, and more. You can FTP
  638. the list in file `/pub/gnu/FreelyAvailableTexts' from from a GNU FTP host
  639. (listed in *Note How to Get GNU Software::). Please let either address on
  640. page 1 know of additional entries.
  641. -----------------------------------------------------------------------------
  642. *Those that give up their freedom in the name of security deserve
  643. neither.*
  644. - Benjamin Franklin
  645. -----------------------------------------------------------------------------
  646. Help the GNU Translation Project
  647. ********************************
  648. GNU is going international! The GNU Translation Project will get
  649. maintainers, translators, and users all together, so GNU will gradually speak
  650. many native languages. The GNU `gettext' tool set contains *everything*
  651. maintainers need for internationalizing their packages for messages. It has
  652. quite useful tools for helping translators add messages for their native
  653. language, once a package has been internationalized.
  654. To achieve the GNU Translation Project, we need many interested people who
  655. like their own language and write it well, and who are also able to synergize
  656. with other translators speaking the same language. If you'd like to
  657. volunteer to *work* at translating messages, please send mail to your
  658. translating team.
  659. These teams exist, as of May 1995: Chinese (zh), Czech (cs), Danish (da),
  660. Dutch (nl), Esperanto (eo), Finnish (fi), French (fr), Irish (ga), German
  661. (de), Greek (el), Italian (it), Japanese (ja), Indonesian (in), Norwegian
  662. (no), Polish (pl), Portuguese (pt), Russian (ru), Spanish (es), Swedish (sv),
  663. & Turkish (tr). Each team has its own mailing list, courtesy of Linux
  664. International. You may reach your translating team at the address
  665. `XX@li.org', replacing XX by the two-letter ISO 639 code for your language.
  666. Please note that language codes are *not* the same as country codes. When
  667. you become a member of the translating team for your own language, you may
  668. subscribe to its list. To subscribe, send a message with the message body
  669. `subscribe' to the appropriate list.
  670. Team members should be interested in *working* at translations or at solving
  671. translational difficulties, rather than merely lurking around. If you want
  672. to start a new team, write `gnu-translation@prep.ai.mit.edu'.
  673. GUILE
  674. *****
  675. The GNU Project continues to build GUILE: GNUs' Ubiquitous Extension
  676. Language. We are building a library which programmers can use to make any
  677. ordinary C program extensible. We expect to use this library in many GNU
  678. programs and hope to see wide use elsewhere.
  679. We are basing GUILE on SCM, a version of Scheme written by Aubrey Jaffer (see
  680. the JACAL item in *Note GNU Software::). The interpreter has been repackaged
  681. as a C library. GUILE currently includes, with various degrees of
  682. completion, a Posix system-call interface, an SCSH-like library, a module
  683. system, a Tk interface, and a byte-code interpreter. Projects are underway
  684. to build into GUILE support for Emacs Lisp and for a more C-like language.
  685. Since we want to encourage everyone to adopt a common interpreter, the
  686. copyright terms for GUILE will permit the use of the library even in
  687. proprietary programs. Get snapshots of GUILE from `ftp.cygnus.com:pub/lord'.
  688. Forthcoming GNUs
  689. ****************
  690. Information about the current status of released GNU programs can be found in
  691. *Note GNU Software::. Here is some news of future plans.
  692. * GNU C Library (For current status, *note GNU Software::..)
  693. While there has not been a new release of our C library since the January
  694. GNU's Bulletin, Roland has been doing lots of work on it, with a focus on
  695. support for the Hurd (*note What Is the Hurd::.). Version 1.10 is in the
  696. works; it adds several new functions traditionally found in Unix systems
  697. and some small new GNU extensions. Ulrich Drepper has contributed to the
  698. library a great deal in the last few months, by writing new
  699. floating-point printing/reading functions that are perfectly accurate &
  700. much faster than the old code. He has also written a whole set of
  701. internationalization features including POSIX.2-compatible `locale' &
  702. `localedef' programs & catalogs for displaying program messages in
  703. languages other than English. The library can now be built as a shared
  704. library for the Hurd & other systems using the ELF object file format.
  705. Included is the run-time loader `ld.so' which sets up the shared
  706. libraries when a program runs; it works now on the Hurd and should be
  707. easy to port (using ELF) to GNU/Linux, SVR4 & Solaris 2.
  708. * GNUStep (Also see item Objective-C Library in *Note GNU Software::)
  709. OpenStep is an object-oriented application programming interface
  710. specification being proposed as an open object standard. Since its
  711. announcement over two years ago, there has been much interest in a GNU
  712. implementation, named GNUStep. Work has begun on GNUStep using an
  713. existing library written in Objective-C as a base. Much work remains to
  714. be done to bring this library close to the OpenStep specifications.
  715. Volunteers should contact `Paul_Kunz@slac.stanford.edu'. Check
  716. `http://fvkma.tu-graz.ac.at/gnustep/gnustep.html' for more info.
  717. * `makeinfo' and the World Wide Web (Also *note GNU Software::.)
  718. `makeinfo' is being modified to translate Texinfo source files into HTML
  719. documents that can be displayed on the Internet's World Wide Web.
  720. * GNU Common Lisp (For current status, *note GNU Software::.)
  721. Version 2.0 of GNU Common Lisp (GCL) was released in April '95. It now
  722. includes a graphical interface with the TK widget system. All
  723. documentation is now Texinfo-based, with built-in regexp matching used
  724. to access the documentation. A first pass at the Common Lisp condition
  725. system is also included. Work on installing the new compiler and
  726. internals is underway, as well as a port to the DEC Alpha architecture.
  727. Volunteers for parts of the move to the ANSI standard are most welcome;
  728. contact `schelter@math.utexas.edu'.
  729. * GNU Emacs (For current status, *note GNU Software::.)
  730. Future versions of Emacs will provide: saving the undo history in a file,
  731. so you can undo older changes in the history, support for both
  732. variable-width fonts and wide character sets, and support for the
  733. world's major languages. Our long term plan is to move it in the
  734. direction of a WYSIWYG word processor and make it easier for beginners
  735. to use.
  736. * C Interpreter
  737. We hope to add interpreter facilities to our compiler and debugger. This
  738. task is partly finished. GCC has generated byte code for all supported
  739. languages, but that support is in flux at this time. A new effort to
  740. finish this work has begun. To make this work usable, we need to enhance
  741. GDB to load the byte code dynamically. We also would like support for
  742. compiling just a specified few functions in a file. Due to limited
  743. resources, the FSF cannot fund this. Interested volunteers should
  744. contact `gnu@prep.ai.mit.edu'.
  745. * GCC (For current status, *note GNU Software::.)
  746. New front ends for GCC are being developed for Pascal and Chill. See the
  747. GNU Fortran and GNAT items in this article for news on those front ends.
  748. * GNAT: The GNU Ada Translator *Not yet available from the FSF*
  749. A front end for much of Ada 95 (GNAT: The GNU Ada Translator) is
  750. available via anonymous FTP from `cs.nyu.edu' in `/pub/gnat'. News about
  751. GNAT is posted to the USENET newsgroup `comp.lang.ada'.
  752. * GNU Fortran (For info on `f2c' & GCC, *note GNU Software::.)
  753. The GNU Fortran (`g77') front end is stable, but work is needed to bring
  754. its overall packaging, feature set, and performance up to the levels the
  755. Fortran community expects. Tasks to be done include: writing
  756. documentation; improving diagnostics; speeding up compilation, especially
  757. for large initialized data tables; implementing `INTEGER*2',
  758. `INTEGER*8', and similar features; and arranging to build and install
  759. `libf2c' automatically. We don't know when these things will be done,
  760. but hope some will be finished in the coming months. You can speed
  761. progress by working on them or by offering funding.
  762. A mailing list exists for announcements about `g77'. To subscribe, ask
  763. `info-gnu-fortran-request@prep.ai.mit.edu'. To contact the developer of
  764. `g77' or get current status, write or finger `fortran@gnu.ai.mit.edu'.
  765. * Ghostscript (For current status, *note GNU Software::.)
  766. Ghostscript 3.0 will be distributed by the FSF soon. It will implement
  767. nearly the full Postscript Level 2 language except for LZW compression,
  768. which can't be freely implemented because of software patents.
  769. (Prohibitions on programming like this are what the League for
  770. Programming Freedom is fighting. *Note What Is the LPF::, for details.)
  771. * `gmp' (For current status, *note GNU Software::.)
  772. The GNU `mp' library, version 2.0, will have arbitrary multiple precision
  773. floating point arithmetic, be more portable, and be up to 4 times faster
  774. than previous versions.
  775. * Oleo (For current status, *note GNU Software::.)
  776. Volunteers are writing an Oleo manual and extensions to the Oleo
  777. interface.
  778. * Smalltalk (For current status, *note GNU Software::.)
  779. The next release, version 1.2, will use the GNU Autoconf configuration.
  780. It will have significant performance improvements & memory requirement
  781. reductions, more control over the memory allocation, ability to use the
  782. Smalltalk interpreter as a subroutine (i.e., callable from C), better X
  783. Window System interfaces, ability to represent and manipulate C data
  784. structures in Smalltalk, conditional compilation facilities, large
  785. integer support, a complete GUI-based class browsing system, better (more
  786. complete/usable) TCP/IP interfaces, exception support, weak references, &
  787. finalization support.
  788. GNU Software
  789. ************
  790. All our software is available via FTP; see *Note How to Get GNU Software::.
  791. We also offer software on various media and printed documentation:
  792. * *Note CD-ROMs::.
  793. * *Note Tapes::.
  794. * *Note MS-DOS Diskettes::.
  795. * *Note Documentation::, which includes manuals and reference cards.
  796. In these articles describing the contents of each medium, the version number
  797. listed after each program name was current when we published this Bulletin.
  798. When you order a distribution tape, diskette, or newer CD-ROM, some of the
  799. programs may be newer and therefore the version number higher. See the *note
  800. Free Software Foundation Order Form::., for ordering information.
  801. Some of the contents of our tape and FTP distributions are compressed. We
  802. have software on our tapes and FTP sites to uncompress these files. Due to
  803. patent troubles with `compress', we use another compression program, `gzip'.
  804. (Such prohibitions on software development are fought by the League for
  805. Programming Freedom, *note What Is the LPF::., for details.)
  806. GNU `make' is on several of our tapes because some system vendors supply no
  807. `make' utility at all and some native `make' programs lack the `VPATH'
  808. feature essential for using the GNU configure system to its full extent. The
  809. GNU `make' sources have a shell script to build `make' itself on such systems.
  810. We welcome all bug reports and enhancements sent to the appropriate
  811. electronic mailing list (*note Free Software Support::.).
  812. Configuring GNU Software:
  813. -------------------------
  814. We are using a uniform scheme for configuring GNU software packages in order
  815. to compile them. It uses the Autoconf program (see item below, in this
  816. article). The goal is to have all GNU software support the same alternatives
  817. for naming machine and system types. When the GNU system is complete, it will
  818. be possible to configure and build the entire system at once, eliminating the
  819. need to separately configure each individual package. You can also specify
  820. both the host and target system to build cross-compilation tools. Most GNU
  821. programs now use Autoconf-generated configure scripts.
  822. GNU Software currently available:
  823. ---------------------------------
  824. For future programs and features, see *Note Forthcoming GNUs::.
  825. Key to cross reference:
  826. BinCD
  827. Dec. 1994 Binaries CD-ROM
  828. DjgpD
  829. Djgpp Diskettes
  830. DosBC
  831. MS-DOS Book with CD-ROM
  832. EmcsD
  833. Emacs Diskettes
  834. LangT
  835. Languages Tape
  836. LiteT
  837. 4.4BSD-Lite Tape
  838. LspEmcT
  839. Lisps/Emacs Tape
  840. SchmT
  841. Scheme Tape
  842. SrcCD
  843. June 95 Source CD-ROM
  844. UtilD
  845. Selected Utilities Diskettes
  846. UtilT
  847. Utilities Tape
  848. VMSCmpT
  849. VMS Compiler Tape
  850. VMSEmcsT
  851. VMS Emacs Tape
  852. WdwsD
  853. Windows Diskette
  854. X11OptT
  855. X11 Optional Tape
  856. X11ReqT
  857. X11 Required Tape
  858. [FSFman] shows that we sell a manual for that package. [FSFrc] shows we sell
  859. a reference card for that package. To order them, see the *note Free
  860. Software Foundation Order Form::.. *Note Documentation:: for more
  861. information on the manuals. Source code for each manual or reference card is
  862. included with each package.
  863. * `acm' (SrcCD, UtilT)
  864. `acm' is a LAN-oriented, multiplayer aerial combat simulation that runs
  865. under the X Window System. Players engage in air to air combat against
  866. one another using heat seeking missiles and cannons. We are working on
  867. more accurate simulation of real airplane flight characteristics.
  868. * Autoconf (SrcCD, UtilT)
  869. Autoconf produces shell scripts which automatically configure source code
  870. packages. These scripts adapt the packages to many kinds of Unix-like
  871. systems without manual user intervention. Autoconf creates a script for
  872. a package from a template file which lists the operating system features
  873. which the package can use, in the form of `m4' macro calls. Autoconf
  874. requires GNU `m4' to operate, but the resulting configure scripts it
  875. generates do not.
  876. * BASH (SrcCD, UtilT)
  877. GNU's shell, BASH (Bourne Again SHell), is compatible with the Unix `sh'
  878. and offers many extensions found in `csh' and `ksh'. BASH has job
  879. control, `csh'-style command history, command-line editing (with Emacs
  880. and `vi' modes built-in, and the ability to rebind keys) via the
  881. `readline' library. BASH conforms to the POSIX 1003.2 shell
  882. specification.
  883. * `bc' (DjgpD, DosBC, SrcCD, UtilT)
  884. `bc' is an interactive algebraic language with arbitrary precision
  885. numbers. GNU `bc' follows the POSIX.2-1992 standard, with several
  886. extensions including multi-character variable names, an `else'
  887. statement, and full Boolean expressions. The RPN calculator `dc' is now
  888. distributed as part of the same package, but GNU `bc' is not implemented
  889. as a `dc' preprocessor.
  890. * BFD (BinCD, DjgpD, DosBC, LangT, SrcCD)
  891. The Binary File Descriptor library allows a program which operates on
  892. object files (e.g., `ld' or GDB) to support many different formats in a
  893. clean way. BFD provides a portable interface, so that only BFD needs to
  894. know the details of a particular format. One result is that all
  895. programs using BFD will support formats such as a.out, COFF, and ELF.
  896. BFD comes with source for Texinfo documentation (not yet published on
  897. paper). Presently BFD is not distributed separately; it is included
  898. with packages that use it.
  899. * Binutils (BinCD, DjgpD, DosBC, LangT, SrcCD)
  900. Binutils includes these programs: `ar', `c++filt', `demangle', `gas',
  901. `gprof', `ld', `nlmconv', `nm', `objcopy', `objdump', `ranlib', `size',
  902. `strings', & `strip'.
  903. Binutils Version 2 uses the BFD library. GNU's linker `ld' emits
  904. source-line numbered error messages for multiply-defined symbols &
  905. undefined references, & interprets a superset of AT&T's Linker Command
  906. Language, which gives control over where segments are placed in memory.
  907. `nlmconv' converts object files into Novell NetWare Loadable Modules.
  908. `objdump' can disassemble code for a29k, ALPHA, H8/300, H8/500, HP-PA,
  909. i386, i960, m68k, m88k, MIPS, SH, SPARC & Z8000 CPUs, & can display other
  910. data (e.g., symbols & relocations) from any file format read by BFD.
  911. * Bison (BinCD,DjgpD,DosBC,LangT,SrcCD,VMSCmpT)[FSFman,FSFrc]
  912. Bison is an upwardly compatible replacement for the parser generator
  913. `yacc'. Texinfo source for the `Bison Manual' and reference card are
  914. included. *Note Documentation::. A recent policy change allows
  915. non-free programs to use Bison-generated parsers. *Note GNUs Flashes::.
  916. * GNU C Library (BinCD, LangT, SrcCD) [FSFman]
  917. The GNU C library supports ANSI C-1989, POSIX 1003.1-1990 and most of the
  918. functions in POSIX 1003.2-1992. It is upwardly compatible with 4.4BSD
  919. and includes many System V functions, plus GNU extensions.
  920. The C Library performs many functions of the Unix system calls in the
  921. Hurd. Mike Haertel has written a fast `malloc' which wastes less memory
  922. than the old GNU version. The GNU regular-expression functions (`regex'
  923. and `rx') now nearly conform to the POSIX 1003.2 standard.
  924. GNU `stdio' lets you define new kinds of streams, just by writing a few
  925. C functions. The `fmemopen' function uses this to open a stream on a
  926. string, which can grow as necessary. You can define your own `printf'
  927. formats to use a C function you have written. For example, you can
  928. safely use format strings from user input to implement a `printf'-like
  929. function for another programming language. Extended `getopt' functions
  930. are already used to parse options, including long options, in many GNU
  931. utilities.
  932. The C Library runs on Sun-3 (SunOS 4.1), Sun-4 (SunOS 4.1 or Solaris 2),
  933. HP 9000/300 (4.3BSD), SONY News 800 (NewsOS 3 or 4), MIPS DECstation
  934. (Ultrix 4), DEC Alpha (OSF/1), i386/i486 (System V, SVR4, BSD, SCO 3.2 &
  935. SCO ODT 2.0), Sequent Symmetry i386 (Dynix 3) & SGI (Irix 4). Texinfo
  936. source for the `GNU C Library Reference Manual' is included (*note
  937. Documentation::.); the manual is now being updated.
  938. * GNU C++ Library (BinCD, DjgpD, DosBC, LangT, SrcCD)
  939. The GNU C++ library (libg++) contains an extensive collection of C++
  940. `forest' classes, an IOStream library for input/output routines, and
  941. support tools for use with G++. Supported classes include: Obstacks,
  942. multiple-precision Integers and Rationals, Complex numbers, arbitrary
  943. length Strings, BitSets, and BitStrings. Version 2.6.2 includes the
  944. initial release of the libstdc++ library. This implements library
  945. facilities defined by the forthcoming ANSI/ISO C++ standard, including
  946. the Standard Template Library.
  947. * Calc (DosBC, LspEmcT, SrcCD) [FSFman, FSFrc]
  948. Calc (written by Dave Gillespie in Emacs Lisp) is an extensible, advanced
  949. desk calculator & mathematical tool that runs as part of GNU Emacs. You
  950. can use Calc just as a simple four-function calculator, but it has many
  951. more features including: choice of algebraic or RPN (stack-based) entry;
  952. logarithmic, trigonometric & financial functions; arbitrary precision;
  953. complex numbers; vectors; matrices; dates; times; infinities; sets;
  954. algebraic simplification; differentiation & integration. It outputs to
  955. `gnuplot', & comes with source for a reference card & a manual. *Note
  956. Documentation::.
  957. * `cfengine' (SrcCD, UtilT)
  958. `cfengine' is used for maintaining site-wide configuration of a
  959. heterogenous Unix network using a simple high level language. Its
  960. functionality is similar to `rdist', but also allows many more
  961. operations to be performed automatically.
  962. * GNU Chess (SrcCD, UtilT, WdwsD)
  963. GNU Chess lets the computer play a full game of chess with you. It runs
  964. on most platforms & has dumb terminal, "curses", & X terminal interfaces
  965. (based on the `xboard' program). GNU Chess has many special features
  966. including the null move heuristic, a hash table with aging, the history
  967. heuristic (another form of the earlier killer heuristic), caching of
  968. static evaluations, & a database which lets it play the first several
  969. moves of the game quickly. Recent improvements include better
  970. heuristics, faster evaluation, thinking on opponent's time, a perfect
  971. King and Pawn vs King endgame routine, Swedish & German language
  972. support, support for more book formats, a rudimentary Bobby Fischer
  973. clock, & bug fixes. It is primarily supported by Stuart Cracraft, Chua
  974. Kong Sian, & Tim Mann on behalf of the FSF.
  975. * CLISP (LspEmcT, SrcCD)
  976. CLISP is a Common Lisp implementation by Bruno Haible and Michael Stoll.
  977. It mostly supports the Lisp described by `Common LISP: The Language (2nd
  978. edition)' and the ANSI Common Lisp standard. CLISP includes an
  979. interpreter, a byte-compiler, a large subset of CLOS, a foreign language
  980. interface and, for some machines, a screen editor. The user interface
  981. language (English, German, French) is chooseable at run time. Major
  982. packages that run in CLISP include CLX & Garnet. CLISP needs only 2 MB
  983. of memory & runs on many microcomputers (including MS-DOS systems, OS/2,
  984. Atari ST, Amiga 500-4000, Acorn RISC PC) & Unix-like systems (GNU/Linux,
  985. Sun4, SVR4, SGI, HP-UX, DEC Alpha, NeXTstep & others).
  986. * GNU Common Lisp (LspEmcT, SrcCD)
  987. GNU Common Lisp (GCL) has a compiler and interpreter for Common Lisp. It
  988. used to be known as Kyoto Common Lisp. It is very portable and extremely
  989. efficient on a wide class of applications. It compares favorably in
  990. performance with commercial Lisps on several large theorem-prover and
  991. symbolic algebra systems. It supports the CLtL1 specification but is
  992. moving towards the proposed ANSI definition. GCL compiles to C and
  993. then uses the native optimizing C compilers (e.g., GCC). A function
  994. with a fixed number of args and one value turns into a C function of the
  995. same number of args, returning one value, so GCL is maximally efficient
  996. on such calls. It has a conservative garbage collector which allows
  997. great freedom for the C compiler to put Lisp values in arbitrary
  998. registers. It has a source level Lisp debugger for interpreted code,
  999. with display of source code in an Emacs window. Its profiling tools
  1000. (based on the C profiling tools) count function calls and the time spent
  1001. in each function. CLX works with GCL.
  1002. There is now a built-in interface with the TK widget system. It runs in
  1003. a separate process so that users may monitor progress on Lisp
  1004. computations or interact with running computations via a windowing
  1005. interface.
  1006. There is also an Xlib interface via C (xgcl-2). PCL runs with GCL (see
  1007. PCL item later in this article). *Note Forthcoming GNUs::, for plans
  1008. regarding GCL or for recent developments. GCL version 2.0 is released
  1009. under the GNU Library General Public License.
  1010. * `cpio' (DjgpD, DosBC, SrcCD, UtilD, UtilT)
  1011. `cpio' is an alternative archive program with all the features of SVR4
  1012. `cpio', including support for the final POSIX 1003.1 `ustar' standard.
  1013. `mt', a program to position magnetic tapes, is included with `cpio'.
  1014. * CVS (SrcCD, UtilT)
  1015. CVS, the Concurrent Version System, manages software revision & release
  1016. control at a multi-developer, multi-directory, multi-group site. It
  1017. works best with RCS versions 4 and above, but will parse older RCS
  1018. formats with the loss of CVS's fancier features. See Berliner, Brian,
  1019. "CVS-II: Parallelizing Software Development," `Proceedings of the Winter
  1020. 1990 USENIX Association Conference'. To find out how to get a copy,
  1021. contact `office@usenix.org'.
  1022. * DejaGnu (LangT, SrcCD)
  1023. DejaGnu is a framework to test programs with a single front end for all
  1024. tests. The framework's flexibility & consistency makes it easy to write
  1025. tests. DejaGnu comes with `expect', which runs scripts to conduct
  1026. dialogs with programs.
  1027. * Diffutils (DjgpD, DosBC, SrcCD, UtilT)
  1028. GNU `diff' compares files showing line-by-line changes in several
  1029. flexible formats. It is much faster than traditional Unix versions. The
  1030. Diffutils package contains `diff', `diff3', `sdiff', & `cmp'. Recent
  1031. improvements include more consistent handling of character sets and a
  1032. new `diff' option to do all input/output in binary; this is useful on
  1033. some non-Posix hosts. Plans for the Diffutils package include support
  1034. for internationalization (e.g., error messages in Chinese) and for some
  1035. non-Unix PC environments.
  1036. * DJGPP (BinCD, DjgpD, DosBC)
  1037. DJ Delorie has ported GCC/G++ 2.6.0 (see "GCC" in this article) to i386s
  1038. running MS-DOS. DJGPP also has a 32-bit i386 DOS extender with symbolic
  1039. debugger; development libraries; & ports of Bison, `flex', GAS &
  1040. Binutils. Full source code is provided. It needs at least 5MB of hard
  1041. disk space to install & 512K of RAM to use. It supports SVGA (up to
  1042. 1024x768), XMS & VDISK memory allocation, `himem.sys', VCPI (e.g., QEMM,
  1043. DESQview & 386MAX) & DPMI (e.g., Windows 3.x, OS/2, QEMM & QDPMI). Ask
  1044. `djgpp-request@sun.soe.clarkson.edu' to join a DJGPP users mailing list.
  1045. * `dld' (LangT, SrcCD)
  1046. `dld' is a dynamic linker written by W. Wilson Ho. Linking your program
  1047. with the `dld' library allows you to dynamically load object files into
  1048. the running binary. Currently supported are VAX (Ultrix), Sun 3 (SunOS
  1049. 3.4 & 4.0), SPARC (SunOS 4.0), Sequent Symmetry (Dynix) & Atari ST.
  1050. * `doschk' (DjgpD, DosBC, SrcCD, UtilT)
  1051. This program is intended as a utility to help software developers ensure
  1052. that their source file names are distinguishable on System V platforms
  1053. with 14-character filenames and on MS-DOS with 8+3 character filenames.
  1054. * `ecc' (LangT, SrcCD)
  1055. `ecc' is a Reed-Solomon error correction checking program, which can
  1056. correct three byte errors in a block of 255 bytes and detect more severe
  1057. errors. Contact `paulf@Stanford.EDU' for more information.
  1058. * `ed' (SrcCD, UtilT)
  1059. Ed is the standard text editor.
  1060. * Elib (DosBC, LspEmcT, SrcCD)
  1061. Elib is a small library of Emacs Lisp functions, including routines for
  1062. using AVL trees and doubly-linked lists.
  1063. * GNU Emacs **Note Forthcoming GNUs:: for future plans.*
  1064. In 1975, Richard Stallman developed the first Emacs, an extensible,
  1065. customizable real-time display editor & computing environment. GNU Emacs
  1066. is his second implementation. It offers true Lisp--smoothly integrated
  1067. into the editor--for writing extensions & provides an interface to the X
  1068. Window System. It also runs on MS-DOS & Windows NT. In addition to its
  1069. powerful native command set, Emacs has extensions which emulate the
  1070. editors vi & EDT (DEC's VMS editor). Emacs has many other features which
  1071. make it a full computing support environment. Source for the `GNU Emacs
  1072. Manual', & a reference card comes with the software. Source for the
  1073. `GNU Emacs Lisp Reference Manual' & `Programming in Emacs Lisp: An
  1074. Introduction' are distributed in separate packages. *Note
  1075. Documentation::.
  1076. * GNU Emacs 18 (LspEmcT, SrcCD, VMSEmcsT) [FSFrc]
  1077. Emacs 18.59 is the last release of version 18 from the FSF. We no longer
  1078. maintain it. It runs on many Unix systems: Alliant FX/80 & FX/2800,
  1079. Altos 3068, Amdahl (UTS), Apollo, AT&T (3Bs & 7300 PC), DG Aviion, Bull
  1080. DPX/2 (2nn & 3nn) CCI 5/32 & 6/32, Celerity, Convex, Digital (DECstation
  1081. 3100 & 5000 (PMAXes), Mips, VAX (BSD, SysV & VMS)), Motorola Delta 147 &
  1082. 187, Dual, Elxsi 6400, Encore (DPC, APC & XPC), Gould, HP (9000 series
  1083. 200, 300, 700 & 800, but not 500), HLH Orion (original & 1/05), IBM
  1084. (RS/6000 (AIX), RT/PC (4.2 & AIX) & PS/2 (AIX (386 only))), ISI (Optimum
  1085. V, 80386), Intel 860 & 80386 (BSD, Esix, SVR3, SVR4, SCO, ISC, IX, AIX,
  1086. et al.), Iris (2500, 2500 Turbo & 4D), Masscomp, MIPS, National
  1087. Semiconductor 32000, NeXT (Mach), NCR Tower 32 (SVR2 & SVR3), Nixdorf
  1088. Targon 31, Nu (TI & LMI), pfa50, Plexus, Prime EXL, Pyramid (original &
  1089. MIPS), Sequent (Balance & Symmetry), SONY News (m68k & MIPS), Stride
  1090. (system rel. 2), all Suns including 386i (all SunOS & some Solaris
  1091. vers.), Tadpole, Tahoe, Tandem Integrity S2, Tektronix (16000 & 4300),
  1092. Triton 88, Ustation E30 (SS5E), Whitechapel (MG1) & Wicat.
  1093. * GNU Emacs 19 (DosBC, EmacsD, LspEmcT, SrcCD) [FSFman(s), FSFrc]
  1094. Emacs 19 works with character-only terminals & with the X Window System
  1095. (with or without the X toolkit). New features in Emacs 19 include:
  1096. multiple X windows ("frames" to Emacs), with either a separate X window
  1097. for the minibuffer or a minibuffer attached to each X window; property
  1098. lists associated with regions of text in a buffer; multiple fonts &
  1099. colors defined by those properties; simplified/improved processing of
  1100. function keys, mouse clicks, & mouse movement; X selection processing,
  1101. including clipboard selections; hooks to be run if point or mouse moves
  1102. outside a certain range; menu bars & popup menus defined by keymaps;
  1103. scrollbars; before & after change hooks; source-level debugging of Emacs
  1104. Lisp programs; floating point numbers; improved buffer allocation,
  1105. including returning storage to the system when a buffer is killed;
  1106. interfacing with the X resource manager; many updated libraries; &
  1107. support for European character sets, RCS, & the GNU configuration scheme.
  1108. Recent features include support for Motif widgets & the Athena widgets,
  1109. displaying multiple views of an outline at the same time, version
  1110. control support for CVS & for multiple branches, the ability to open
  1111. frames on more than one X display from a single Emacs job, operation on
  1112. MS-DOS, MS Windows, & Windows NT, commands to edit text properties &
  1113. save them in files, text properties for formatting text, & GNU-standard
  1114. long-named command line options.
  1115. Emacs 19.29 is believed to work on: Acorn Risc machine (RISCiX); Alliant
  1116. FX/2800 (BSD); Alpha (OSF/1); Apollo (DomainOS); Bull DPX/2 2nn & 3nn
  1117. (SysV.3) & sps7 (SysV.2); Clipper; Convex (BSD); Cubix QBx (SysV); Data
  1118. General Aviion (DGUX); DEC MIPS (Ultrix 4.2 & OSF/1, not VMS); Elxsi
  1119. 6400 (SysV); Gould Power Node & NP1 (4.2 & 4.3BSD); Harris Night Hawk
  1120. 1200 & 3000, 4000 & 5000 (cxux); Honeywell XPS100 (SysV); HP 9000 series
  1121. 200, 300, 700, 800 (but not 500) (4.3BSD or HP-UX 7, 8, 9); Intel i386,
  1122. i486 & Pentium (GNU/Linux, 386BSD, AIX, BSDI/386, FreeBSD, Esix, ISC,
  1123. MS-DOS (*note MS-DOS Diskettes::. & *Note MS-DOS Book with CD-ROM::),
  1124. NetBSD, SCO3.2v4, SysV, Xenix, WindowsNT); IBM RS6000 (AIX 3.2); IBM
  1125. RT/PC (AIX or BSD); Motorola Delta 147 & 187 (SysV.3, SysV.4 & m88kbcs);
  1126. National Semiconductor 32K (Genix); NeXT (BSD or Mach 2 w/ NeXTStep 3.0);
  1127. Paragon (OSF/1); Prime EXL (SysV); Pyramid (BSD); Sequent Symmetry (BSD,
  1128. ptx); Siemens RM400 & RM600 (SysV); SGI Iris 4D (Irix 4.x & 5.x); Sony
  1129. News/RISC (NewsOS); Stardent i860 (SysV); Sun 3 & 4, SPARC 1, 1+, 2, 10
  1130. & Classic (SunOS 4.0, 4.1, Solaris 2.0-2.3); Tadpole 68k (SysV);
  1131. Tektronix XD88 (SysV.3) & 4300 (BSD); & Titan P2 & P3 (SysV).
  1132. Other configurations supported by Emacs 18 should work with few changes
  1133. in Emacs 19; as users tell us more about their experiences with different
  1134. systems, we will augment the list. Also see *Note Forthcoming GNUs::.
  1135. * `es' (SrcCD, UtilT)
  1136. `es' is an extensible shell based on `rc' with first class functions,
  1137. lexical scope, exceptions and rich return values (i.e., functions can
  1138. return values other than just numbers). `es''s extensibility comes from
  1139. the ability to modify and extend the shell's built-in services, such as
  1140. path searching and redirection. Like `rc', it is great for both
  1141. interactive use and for scripting, particularly since its quoting rules
  1142. are much less baroque than the C or Bourne shells.
  1143. * `f2c' (LangT, SrcCD)
  1144. `f2c' converts Fortran-77 source into C or C++, which can be compiled
  1145. with GCC or G++. Get bug fixes by FTP from site `netlib.att.com' or by
  1146. email from `netlib@research.att.com'. See file `/netlib/f2c/changes.Z'
  1147. for a summary. *Note Forthcoming GNUs::, for info about GNU Fortran.
  1148. * Fileutils (DjgpD, DosBC, SrcCD, UtilT)
  1149. The fileutils work on files: `chgrp', `chmod', `chown', `cp', `dd', `df',
  1150. `dir', `du', `install', `ln', `ls', `mkdir', `mkfifo', `mknod', `mv',
  1151. `mvdir', `rm', `rmdir', `sync', `touch', & `vdir'.
  1152. * Findutils (DjgpD, DosBC, SrcCD, UtilT)
  1153. `find' is frequently used both interactively and in shell scripts to
  1154. find files which match certain criteria and perform arbitrary operations
  1155. on them. Also included are `xargs', which apply a command to a list of
  1156. files, and `locate', which scans a database for file names that match a
  1157. pattern.
  1158. * Finger (SrcCD, UtilT)
  1159. GNU Finger has more features than other finger programs. For sites with
  1160. many hosts, a single host may be designated as the finger "server" host
  1161. and other hosts at that site configured as finger "clients". The server
  1162. host collects information about who is logged in to the clients. To
  1163. finger a user at a GNU Finger site, a query to any of its client hosts
  1164. gets useful information. GNU Finger supports many customization
  1165. features, including user output filters and site programmable output for
  1166. special target names.
  1167. * `flex' (BinCD, DjgpD, DosBC, LangT, SrcCD, UtilD) [FSFman, FSFrc]
  1168. `flex' is a replacement for the `lex' scanner generator. `flex' was
  1169. written by Vern Paxson of the Lawrence Berkeley Laboratory and generates
  1170. far more efficient scanners than `lex' does. Source for the `Flex
  1171. Manual' and reference card are included. *Note Documentation::.
  1172. * FlexFAX *See the HylaFAX item elsewhere in this article*
  1173. * GNU Fortran (`g77') **Note Forthcoming GNUs::* (LangT, SrcCD)
  1174. GNU Fortran (`g77'), developed by Craig Burley, is available for public
  1175. beta testing on the Internet. For now, `g77' produces code that is
  1176. mostly object-compatible with `f2c' & uses the same run-time library
  1177. (`libf2c').
  1178. * Fontutils (SrcCD, UtilT)
  1179. The programs (`bpltobzr', `bzrto', `charspace', `fontconvert',
  1180. `gsrenderfont', `imageto', `imgrotate', `limn', & `xbfe') create fonts
  1181. for use with Ghostscript or TeX (starting with a scanned type image &
  1182. converting the bitmaps to outlines), convert between font formats, et al.
  1183. * GAWK (DjgpD, DosBC, LangT, SrcCD) [FSFman]
  1184. GAWK is upwardly compatible with the latest POSIX specification of
  1185. `awk'. It also provides several useful extensions not found in other
  1186. `awk' implementations. Texinfo source for the `GAWK Manual' comes with
  1187. the software. *Note Documentation::.
  1188. * GCC (BinCD, DjgpD, DosBC, LangT, SrcCD, VMSCmpT) [FSFman]
  1189. Version 2 of the GNU C Compiler supports multiple languages; the source
  1190. file name suffix or a compiler option selects the language. The GNU C
  1191. Compiler distribution includes support for C, C++ and Objective-C.
  1192. Support for Objective-C was donated by NeXT. The runtime support needed
  1193. to run Objective-C programs is now distributed with GCC (this does not
  1194. include any Objective-C classes aside from `object'). As much as
  1195. possible, G++ is kept compatible with the evolving draft ANSI standard,
  1196. but not with `cfront' (AT&T's compiler), which has been diverging from
  1197. ANSI.
  1198. The GNU C Compiler is a fairly portable optimizing compiler which
  1199. performs automatic register allocation, common sub-expression
  1200. elimination, invariant code motion from loops, induction variable
  1201. optimizations, constant propagation and copy propagation, delayed
  1202. popping of function call arguments, tail recursion elimination,
  1203. integration of inline functions and frame pointer elimination,
  1204. instruction scheduling, loop unrolling, filling of delay slots, leaf
  1205. function optimization, optimized multiplication by constants, a certain
  1206. amount of common subexpression elimination (CSE) between basic blocks
  1207. (though not all of the supported machine descriptions provide for
  1208. scheduling or delay slots), a feature for assigning attributes to
  1209. instructions and many local optimizations that are automatically deduced
  1210. from the machine description. Position-independent code is supported on
  1211. the 68k, i386, i486, Pentium, Hitachi Slt, Hitachi H8/300, Clipper, 88k,
  1212. SPARC & SPARClite.
  1213. GCC can open-code most arithmetic on 64-bit values (type `long long
  1214. int'). It supports extended floating point (type `long double') on the
  1215. 68k; other machines will follow.
  1216. GCC supports full ANSI C, traditional C, & GNU C extensions (including:
  1217. nested functions support, nonlocal gotos, & taking the address of a
  1218. label).
  1219. GCC can generate a.out, COFF, ELF, & OSF-Rose files when used with a
  1220. suitable assembler. It can produce debugging information in these
  1221. formats: BSD stabs, COFF, ECOFF, ECOFF with stabs & DWARF.
  1222. GCC generates code for many CPUs, including: a29k, Alpha, ARM, AT&T
  1223. DSP1610, Convex cN, Clipper, Elxsi, Fujitsu Gmicro, H8/300, HP-PA (1.0
  1224. and 1.1) i370, i386, i486, Pentium, i860, i960, m68k, m68020, m68030,
  1225. m68040, m88k, MIL-STD-1750a, MIPS, ns32k, PDP-11, Pyramid, ROMP, RS6000,
  1226. SH, SPARC, SPARClite, VAX & we32k.
  1227. Operating systems supported include: GNU/Linux, AIX, ACIS, AOS, BSD,
  1228. Clix, Ctix, DG/UX, Dynix, Genix, GNU, HP-UX, ISC, Irix, Luna, LynxOS,
  1229. Mach, Minix, NetBSD, NewsOS, OSF, OSF-Rose, RISCOS, SCO, Solaris 2,
  1230. SunOS 4, SysV, Ultrix, Unos, VMS & Windows/NT.
  1231. Using the configuration scheme for GCC, building a cross-compiler is as
  1232. easy as building a native compiler.
  1233. We no longer maintain version 1 of GCC, G++, or libg++.
  1234. Texinfo source for the `Using and Porting GNU CC' manual, is included
  1235. with GCC. *Note Forthcoming GNUs::, for plans for later releases of
  1236. GCC.
  1237. * GDB (BinCD, DjgpD, DosBC, LangT, SrcCD) [FSFman, FSFrc]
  1238. GDB, the GNU DeBugger, is a source-level debugger for C, C++, & Fortran.
  1239. GDB can debug both C and C++ programs, and will work with executables
  1240. produced by many different compilers; however, C++ debugging will have
  1241. some limitations if you do not use GCC.
  1242. GDB has a command line user interface; Emacs comes with a GDB mode, and
  1243. `xxgdb' provides an X interface (but it is not distributed or maintained
  1244. by the FSF; FTP it from `ftp.x.org' in directory `/contrib/utilities').
  1245. Executable files and symbol tables are read via the BFD library, which
  1246. allows a single copy of GDB to debug programs with multiple object file
  1247. formats (e.g., a.out, COFF, ELF). Other features include a rich command
  1248. language, remote debugging over serial lines or TCP/IP, and watchpoints
  1249. (breakpoints triggered when the value of an expression changes).
  1250. GDB uses a standard remote interface to a simulator library which (so
  1251. far) has simulators for the Zilog Z8001/2, Hitachi H8/300, H8/500, &
  1252. Super-H.
  1253. GDB can perform cross-debugging. To say that GDB "targets" a platform
  1254. means it can perform native or cross-debugging for it. To say that GDB
  1255. can "host" a given platform means that it can be built on it, but cannot
  1256. necessarily debug native programs. GDB can:
  1257. * "target" & "host": Amiga 3000 (Amix), DEC Alpha (OSF/1), DECstation
  1258. 3100 & 5000 (Ultrix), HP 9000/300 (BSD, HP-UX), HP 9000/700 (HP-UX),
  1259. i386 (GNU/Linux, BSD, FreeBSD, LynxOS, NetBSD, SCO), IBM RS/6000
  1260. (AIX, LynxOS), Motorola Delta m88k (System V, CX/UX), PC532
  1261. (NetBSD), Motorola m68k MVME-167 (LynxOS), NCR 3000 (SVR4), SGI
  1262. (Irix V3, V4, V5), SONY News (NewsOS 3.x), SPARC (SunOS 4.1,
  1263. Solaris, NetBSD, LynxOS) Sun-3 (SunOS 4.1), & Ultracomputer (a29k
  1264. running Sym1).
  1265. * "target", but not "host": AMD 29000 (COFF & a.out), Hitachi H8/300,
  1266. Hitachi SH, i386 (a.out, COFF, OS/9000) i960 (Nindy, VxWorks),
  1267. m68k/m68332 (a.out, COFF, VxWorks), MIPS (IDT ecoff, ELF), Fujitsu
  1268. SPARClite (a.out, COFF), & Z8000.
  1269. * "host", but not "target": IBM RT/PC (AIX), and HP/Apollo 68k (BSD).
  1270. GDB can use the symbol tables emitted by the vendor-supplied compilers of
  1271. most MIPS-based machines, including DEC. (These tables are in a format
  1272. which almost nobody else uses.) Source for the manual
  1273. `Debugging with GDB' and a reference card are included. *Note
  1274. Documentation::.
  1275. * `gdbm' (LangT, SrcCD, UtilD)
  1276. `gdbm' is the GNU replacement for the traditional `dbm' and `ndbm'
  1277. libraries. It implements a database using quick lookup by hashing.
  1278. `gdbm' does not ordinarily make sparse files (unlike its Unix and BSD
  1279. counterparts).
  1280. * Ghostscript (DjgpD, DosBC, SrcCD, UtilT)
  1281. The GNU release of Ghostscript is an interpreter for the Postscript
  1282. graphics language (*note Forthcoming GNUs::., for future plans).
  1283. The current version of GNU Ghostscript is 2.6.2. Features include the
  1284. ability to use the fonts provided by the platform on which Ghostscript
  1285. runs (X Window System and Microsoft Windows), resulting in much
  1286. better-looking screen displays; improved text file printing (like
  1287. `enscript'); a utility to extract the text from a Postscript language
  1288. document; a much more reliable (and faster) Microsoft Windows
  1289. implementation; support for Microsoft C/C++ 7.0; drivers for many new
  1290. printers, including the SPARCprinter, and for TIFF/F (fax) file format;
  1291. many more Postscript Level 2 facilities, including most of the color
  1292. space facilities (but not patterns), and the ability to switch between
  1293. Level 1 and Level 2 dynamically. Version 2.6.2 adds a LaserJet 4 driver
  1294. and several important bug fixes to version 2.6.1.
  1295. Ghostscript executes commands in the Postscript language by writing
  1296. directly to a printer, drawing on an X window or writing to a file for
  1297. later printing (or to a bitmap file that you can manipulate with other
  1298. graphics programs).
  1299. Ghostscript includes a C-callable graphics library (for client programs
  1300. that do not want to deal with the Postscript language). It also supports
  1301. IBM PCs and compatibles with EGA, VGA or SuperVGA graphics (but please do
  1302. *not* ask the FSF staff any questions about this; we do not use PCs).
  1303. * Ghostview (DjgpD, DosBC, SrcCD, UtilT)
  1304. Tim Theisen, `ghostview@cs.wisc.edu', created Ghostview, a previewer for
  1305. multi-page files with an X user interface. Ghostview & Ghostscript work
  1306. together; Ghostview creates a viewing window & Ghostscript draws in it.
  1307. * GIT (SrcCD, UtilT)
  1308. GIT is a set of interactive tools. It has an extensible file system
  1309. browser, an ASCII/hex file viewer, a process viewer/killer, and other
  1310. related utilities and shell scripts. It can be used to increase the
  1311. speed and efficiency of many daily tasks, such as copying and moving
  1312. files and directories, invoking editors, compressing and uncompressing
  1313. files, creating and expanding archives, compiling programs, sending
  1314. mail, etc. It looks nice, has colors (if the standard ANSI color
  1315. sequences are supported), and is user-friendly.
  1316. * `gmp' (LangT, SrcCD)
  1317. GNU `mp' is a library for arbitrary precision arithmetic on signed
  1318. integers and rational numbers. It has a rich set of functions with a
  1319. regular interface.
  1320. * GNATS (SrcCD, UtilT)
  1321. GNATS (GNats: A Tracking System, not to be confused with GNAT, The GNU
  1322. Ada Translator) is a bug-tracking system. It is based upon the paradigm
  1323. of a central site or organization which receives problem reports and
  1324. negotiates their resolution by electronic mail. Although it has been
  1325. used primarily as a software bug-tracking system so far, it is
  1326. sufficiently generalized so that it could be used for handling system
  1327. administration issues, project management, or any number of other
  1328. applications.
  1329. * `gnuplot' (SrcCD, UtilT, WdwsD)
  1330. `gnuplot' is an interactive program for plotting mathematical
  1331. expressions and data. It plots both curves (2 dimensions) & surfaces (3
  1332. dimensions). Curiously, it was neither written nor named for the GNU
  1333. Project; the name is a coincidence. Various GNU programs use `gnuplot'.
  1334. * GnuGo (SrcCD, UtilT)
  1335. GnuGo plays the game of Go (Wei-Chi); it is not yet very sophisticated.
  1336. * `gperf' (LangT, SrcCD)
  1337. `gperf' generates perfect hash tables. The C version is in package
  1338. cperf. The C++ version is in libg++. Both produce hash functions in
  1339. either C or C++.
  1340. * GNU Graphics (SrcCD, UtilT)
  1341. GNU Graphics produces x-y plots from ASCII or binary data. It outputs
  1342. in Postscript, Tektronix 4010 compatible, and Unix device-independent
  1343. "plot" formats. It has a previewer for the X Window System. Features
  1344. include a `spline' interpolation program; examples of shell scripts
  1345. using `graph' and `plot'; a statistics toolkit; and output in TekniCAD
  1346. TDA and ln03 file formats. Email bugs or queries to Rich Murphey,
  1347. `Rich@lamprey.utmb.edu'.
  1348. * grep (DjgpD, DosBC, SrcCD, UtilT)
  1349. This package has GNU `grep', `egrep', and `fgrep' which find lines that
  1350. match inputed patterns. They are much faster than the traditional Unix
  1351. versions.
  1352. * Groff (DjgpD, DosBC, SrcCD, UtilT)
  1353. Groff is a document formatting system based on a device-independent
  1354. troff & includes: `eqn', `nroff', `pic', `refer', `tbl', `troff'; the
  1355. `man', `ms', `mm' macros; & drivers for Postscript, TeX `dvi' format and
  1356. typewriter-like devices. Groff's `mm' macro package is almost
  1357. compatible with the DWB `mm' macros with several extensions. Also
  1358. included is a modified version of the Berkeley `me' macros and an
  1359. enhanced version of the X11 `xditview' previewer. Written in C++, these
  1360. programs can be compiled with GNU C++ Version 2.5 or later. A driver
  1361. for the LaserJet 4 series of printers is currently in test.
  1362. Groff users are encouraged to contribute enhancements. Most needed are
  1363. complete Texinfo documentation, a `grap' emulation (a `pic' preprocessor
  1364. for typesetting graphs), a page-makeup postprocessor similar to `pm'
  1365. (see `Computing Systems', Vol. 2, No. 2; ask `office@usenix.org' how to
  1366. get a copy), and an ASCII output class for `pic' so that `pic' can be
  1367. integrated with Texinfo. Questions and bug reports from users who have
  1368. read the documentation provided with groff can be sent to
  1369. `bug-groff@prep.ai.mit.edu'.
  1370. * `gzip' (DjgpD, DosBC, LangT, LspEmcT, SrcCD, UtilT)
  1371. `gzip' can expand LZW-compressed files but uses another, unpatented
  1372. algorithm for compression which generally produces better results. It
  1373. also expands files compressed with System V's `pack' program.
  1374. * `hello' (DjgpD, DosBC, SrcCD, UtilT)
  1375. The GNU `hello' program produces a familiar, friendly greeting. It
  1376. allows non-programmers to use a classic computer science tool which would
  1377. otherwise be unavailable to them. Because it is protected by the GNU
  1378. General Public License, users are free to share and change it.
  1379. Like any truly useful program, `hello' contains a built-in mail reader.
  1380. * `hp2xx' (SrcCD, UtilT)
  1381. GNU `hp2xx' reads HP-GL files, decomposes all drawing commands into
  1382. elementary vectors, and converts them into a variety of vector and raster
  1383. output formats. It is also an HP-GL previewer. Currently supported
  1384. vector formats include encapsulated Postscript, Uniplex RGIP, Metafont,
  1385. and various special TeX-related formats, and simplified HP-GL (line
  1386. drawing only) for imports. Raster formats supported include IMG, PBM,
  1387. PCX & HP-PCL (including Deskjet & DJ5xxC support). Previewers work
  1388. under X11 (Unix), OS/2 (PM & full screen), MS-DOS (SVGA, VGA & HGC).
  1389. * HylaFAX (SrcCD, UtilT)
  1390. HylaFAX (once named FlexFAX) is a facsimile system for Unix systems. It
  1391. supports sending, receiving, & polled retrieval of facsimile, as well as
  1392. transparent shared data use of the modem. Details are available on the
  1393. World Wide Web at: `http://www.vix.com/hylafax/'.
  1394. * `indent' (DjgpD, DosBC, LangT, SrcCD, UtilD)
  1395. GNU `indent' is a revision of the BSD version. By default, it formats C
  1396. source according to the GNU coding standards. The BSD default, K&R, and
  1397. other formats are available as options. It is also possible to define
  1398. your own format. GNU `indent' is more robust and provides more
  1399. functionality than other versions, for example, it handles C++ comments.
  1400. * Ispell (DjgpD, DosBC, SrcCD, UtilT)
  1401. Ispell is an interactive spell checker that suggests "near misses" to
  1402. replace unrecognized words. System & user-maintained dictionaries for
  1403. multiple languages can be used. Standalone & Emacs interfaces are
  1404. available. Previously, the FSF had its own version of ispell ("Ispell
  1405. 4.0"), but has dropped it for a parallel branch that has had more
  1406. development ("Ispell 3.1.18"). (Ispell 3 was an earlier release by the
  1407. original Ispell author, but others have since made it more
  1408. sophisticated.)
  1409. * JACAL *Not available from the FSF except by FTP*
  1410. JACAL is a symbolic mathematics system for the
  1411. manipulation/simplification of equations, single & multiple-valued
  1412. algebraic expressions made up of numbers, variables, radicals,
  1413. differential operators, & algebraic & holonomic functions. Vectors,
  1414. matrices, & tensors of these objects are supported.
  1415. JACAL was written in Scheme by Aubrey Jaffer. It comes with SCM, an IEEE
  1416. P1178 & R4RS compliant version of Scheme written in C. SCM runs on
  1417. Amiga, Atari-ST, MS-DOS, OS/2, NOS/VE, Unicos, VMS, Unix & similar
  1418. systems. SLIB is a portable Scheme library used by JACAL. The FSF is
  1419. not distributing JACAL on any media. To get an IBM PC floppy disk with
  1420. the freely redistributable source & executable files, send $99.00 to:
  1421. Aubrey Jaffer
  1422. 84 Pleasant Street
  1423. Wakefield, MA 01880-1846
  1424. USA
  1425. * `less' (SrcCD, UtilD, UtilT)
  1426. `less' is a display paginator similar to `more' and `pg' but with
  1427. various features (such as the ability to scroll backwards) that most
  1428. pagers lack.
  1429. * `m4' (DjgpD, DosBC, SrcCD, UtilD, UtilT)
  1430. GNU `m4' is an implementation of the traditional Unix macro processor.
  1431. It is mostly SVR4 compatible, although it has some extensions (e.g.,
  1432. handling more than 9 positional parameters to macros). `m4' also has
  1433. built-in functions for including files, running shell commands, doing
  1434. arithmetic, etc.
  1435. * `make' (BinCD,DjgpD,DosBC,LangT,LspEmcT,SrcCD,UtilD,UtilT)[FSFman]
  1436. GNU `make' supports POSIX 1003.2 and has all but a few obscure features
  1437. of the BSD and System V versions of `make'. GNU extensions include long
  1438. options, parallel compilation, flexible implicit pattern rules,
  1439. conditional execution, & powerful text manipulation functions. Texinfo
  1440. source for the `Make Manual' comes with the program. *Note
  1441. Documentation::.
  1442. * MandelSpawn (SrcCD, UtilT)
  1443. A parallel Mandelbrot generation program for the X Window System.
  1444. * `mkisofs' (SrcCD, UtilT)
  1445. `mkisofs' is a pre-mastering program to generate an ISO 9660 file system.
  1446. It takes a snapshot of a directory tree, and makes a binary image which
  1447. corresponds to an ISO 9660 file system when written to a block device.
  1448. `mkisofs' can also generate the System Use Sharing Protocol records of
  1449. the Rock Ridge Interchange Protocol (used to further describe the files
  1450. in an ISO 9660 file system to a Unix host, and provides information such
  1451. as longer filenames, uid/gid, POSIX permissions, and block and character
  1452. devices).
  1453. * mtools (SrcCD, UtilT)
  1454. mtools is a set of public domain programs to allow Unix systems to read,
  1455. write, and manipulate files on an MS-DOS file system (usually a
  1456. diskette).
  1457. * MULE (DosBC, EmcsD, LspEmcT, SrcCD)
  1458. MULE is a MULtilingual Enhancement to GNU Emacs. A text buffer in MULE
  1459. can contain a mix of characters from many languages including: Japanese,
  1460. Chinese, Korean, Vietnamese, Thai, Greek, the ISO Latin-1 through
  1461. Latin-5 character sets, Ukrainian, Arabic, Hebrew, Russian, and other
  1462. Cyrillic alphabets. To input any of these characters, you can use
  1463. various input methods provided by MULE itself. In addition, if you use
  1464. MULE under some terminal emulators (kterm, cxterm, or exterm), you can
  1465. use its input methods. MULE is being merged into GNU Emacs. *Note GNU
  1466. & Other Free Software in Japan::, for more information about MULE.
  1467. * `ncurses' (LangT, SrcCD)
  1468. `ncurses' is an implementation of the Unix `curses' library for
  1469. developing screen based programs that are terminal independent.
  1470. * NetHack (SrcCD, UtilT)
  1471. NetHack is a Rogue-like adventure game supporting both ASCII & X
  1472. displays.
  1473. * NIH Class Library (LangT, SrcCD)
  1474. The NIH Class Library (once known as "OOPS", Object-Oriented Program
  1475. Support) is a portable collection of C++ classes, similar to those in
  1476. Smalltalk-80, written in C++ by Keith Gorlen of the National Institutes
  1477. of Health (NIH).
  1478. * `nvi' (SrcCD, UtilT)
  1479. `nvi' is a free implementation of the `vi'/`ex' Unix editor. It has
  1480. most of the functionality of the original `vi'/`ex', except "open" mode
  1481. & the `lisp' option, which will be added. Enhancements over `vi'/`ex'
  1482. include split screens with multiple buffers, handling 8-bit data,
  1483. infinite file & line lengths, tag stacks, infinite undo & extended
  1484. regular expressions. It runs under GNU/Linux, BSD, NetBSD, FreeBSD,
  1485. BSDI, AIX, HP-UX, DGUX, IRIX, PSF, PTX, Solaris, SunOS, Ultrix, Unixware
  1486. & should port easily to many other systems.
  1487. * GNU Objective-C Library (LangT, SrcCD)
  1488. Our Objective-C Class Library (`libobjects') has general-purpose,
  1489. non-graphical Objective-C objects written by Andrew McCallum & other
  1490. volunteers. It includes collection classes for using groups of objects
  1491. & C types, I/O streams, coders for formatting objects & C types to
  1492. streams, ports for network packet transmission, distributed objects
  1493. (remote object messaging), string classes, pseudo-random number
  1494. generators & time handling facilities. It will also include the
  1495. foundation classes for the GNUStep project; over 50 of them have already
  1496. been implemented. The library is known to work on i386, i486, Pentium,
  1497. m68k, SPARC, MIPS & RS6000. Send queries & bug reports to
  1498. `mccallum@gnu.ai.mit.edu'.
  1499. * `OBST' (LangT, SrcCD)
  1500. `OBST' is a persistent object management system with bindings to C++.
  1501. `OBST' supports incremental loading of methods. Its graphical tools
  1502. require the X Window System. It features a hands-on tutorial including
  1503. sample programs. It compiles with G++, and should install easily on
  1504. most Unix platforms.
  1505. * Octave (LangT, SrcCD)
  1506. Octave is a high-level language similar to MATLAB, primarily intended
  1507. for numerical computations. It has a convenient command line interface
  1508. for solving linear & nonlinear problems numerically. Octave does
  1509. arithmetic for real & complex scalars & matrices, solves sets of
  1510. nonlinear algebraic equations, integrates systems of ordinary
  1511. differential & differential-algebraic equations, & integrates functions
  1512. over finite & infinite intervals. Two- & three-dimensional plotting is
  1513. available using `gnuplot'. Send queries & bug reports to:
  1514. `bug-octave@che.utexas.edu'. Texinfo source is included for a 220+
  1515. page Octave manual, not yet published by the FSF.
  1516. * Oleo *Also see *Note Forthcoming GNUs::* (SrcCD, UtilT)
  1517. Oleo is a spreadsheet program (better for you than the more expensive
  1518. spreadsheets). It supports the X Window System and character-based
  1519. terminals, and can output Embedded Postscript renditions of spreadsheets.
  1520. Keybindings should be familiar to Emacs users and are configurable.
  1521. Under X and in Postscript output, Oleo supports multiple, variable-width
  1522. fonts.
  1523. * `p2c' (LangT, SrcCD)
  1524. `p2c' is Dave Gillespie's Pascal-to-C translator. It inputs many
  1525. dialects (HP, ISO, Turbo, VAX, et al.) & produces readable,
  1526. maintainable, portable C.
  1527. * `patch' (DjgpD, DosBC, SrcCD, UtilT)
  1528. `patch' is our version of Larry Wall's program to take `diff''s output
  1529. and apply those differences to an original file to generate the modified
  1530. version.
  1531. * PCL (LspEmcT, SrcCD)
  1532. PCL is a free implementation of a large subset of CLOS, the Common Lisp
  1533. Object System. It runs under both GCL and CLISP, mentioned above.
  1534. * `perl' (LangT, SrcCD)
  1535. Larry Wall's `perl' combines the features and capabilities of `sed',
  1536. `awk', `sh', and C, as well as interfaces to the Unix system calls and
  1537. many C library routines.
  1538. * `pine' (SrcCD, UtilT)
  1539. `pine' is a friendly, menu-driven electronic mail manager.
  1540. * `ptx' (SrcCD, UtilD, UtilT)
  1541. GNU `ptx' is our version of the traditional permuted index generator. It
  1542. handles multiple input files at once, produces TeX compatible output, &
  1543. outputs readable "KWIC" (KeyWords In Context) indexes. It does not yet
  1544. handle input files that do not fit in memory all at once.
  1545. * `rc' (SrcCD, UtilT)
  1546. `rc' is a shell that features a C-like syntax (much more so than `csh')
  1547. and far cleaner quoting rules than the C or Bourne shells. It's
  1548. intended to be used interactively, but is also great for writing
  1549. scripts. It inspired the shell `es'.
  1550. * RCS (SrcCD, UtilD, UtilT)
  1551. RCS, the Revision Control System, is used for version control &
  1552. management of software projects. Used with GNU `diff', RCS can handle
  1553. binary files (executables, object files, 8-bit data, etc). Also see the
  1554. CVS item above.
  1555. * `recode' (SrcCD, UtilT)
  1556. GNU `recode' converts files between character sets and usages. When
  1557. exact transliterations are not possible, it may get rid of the offending
  1558. characters or fall back on approximations. This program recognizes or
  1559. produces nearly 150 different character sets and is able to
  1560. transliterate files between almost any pair. Most RFC 1345 character
  1561. sets are supported.
  1562. * `regex' (LangT, SrcCD)
  1563. The GNU regular expression library supports POSIX.2, except for
  1564. internationalization features. It is included in many GNU programs which
  1565. do regular expression matching & is available separately. An alternate
  1566. regular expression package, `rx', is faster than `regex' in most cases &
  1567. will replace `regex' over time.
  1568. * rx (LangT, SrcCD)
  1569. Tom Lord has written `rx', a new regular expression library which is
  1570. faster than the older GNU `regex' library. It is now being distributed
  1571. with `sed' and `tar'. `rx' will be used in the next releases of `m4'
  1572. and `ptx'.
  1573. * `saoimage' (UtilT)
  1574. SAOimage is an X-based astronomical image viewer. It reads data images
  1575. and displays them with a pseudocolor colormap. There is full interactive
  1576. control of the colormap, reading, and writing of colormaps, etc.
  1577. * Scheme *For more information, see *Note Scheme Tape::* (SchmT)
  1578. * `screen' (SrcCD, UtilT)
  1579. `screen' is a terminal multiplexer that runs several separate "screens"
  1580. (ttys) on a single character-based terminal. Each virtual terminal
  1581. emulates a DEC VT100 plus several ISO 6429 (ECMA 48, ANSI X3.64) and ISO
  1582. 2022 functions. Arbitrary keyboard input translation is also supported.
  1583. `screen' sessions can be detached and resumed later on a different
  1584. terminal type. Output in detached sessions is saved for later viewing.
  1585. * `sed' (DjgpD, DosBC, SrcCD, UtilD, UtilT)
  1586. `sed' is a stream-oriented version of `ed'. It comes with the `rx'
  1587. library.
  1588. * Sharutils (SrcCD, UtilT)
  1589. `shar' makes so-called shell archives out of many files, preparing them
  1590. for transmission by electronic mail services, while `unshar' helps
  1591. unpack these shell archives after reception. `uuencode' prepares a file
  1592. for transmission over an electronic channel which ignores or otherwise
  1593. mangles the high order bit of bytes, while `uudecode' does the converse
  1594. transformation.
  1595. * Shellutils (DjgpD, DosBC, SrcCD, UtilT)
  1596. They are: `basename', `date', `dirname', `echo', `env', `expr', `false',
  1597. `groups', `hostname', `id', `logname', `nice', `nohup', `pathchk',
  1598. `printenv', `printf', `pwd', `sleep', `stty', `su', `tee', `test',
  1599. `true', `tty', `uname', `users', `who', `whoami', & `yes'.
  1600. * GNU Shogi (SrcCD, UtilT)
  1601. Shogi is a Japanese game similar to Chess; a major difference is that
  1602. captured pieces can be returned into play. GNU Shogi is a variant of
  1603. GNU Chess; it implements the same features & similar heuristics. As a
  1604. new feature, sequences of partial board patterns can be introduced to
  1605. help the program play toward specific opening patterns. It has both
  1606. character and X display interfaces. It is primarily supported by
  1607. Matthias Mutz on behalf of the FSF.
  1608. * Smalltalk *Also see *Note Forthcoming GNUs::* (LangT,SrcCD)
  1609. GNU Smalltalk is an interpreted object-oriented programming language
  1610. system written in highly portable C. It has been ported to many Unix &
  1611. some other platforms, including DOS (non-Unix ports are not available
  1612. from the FSF). Features include a binary image save capability, the
  1613. ability to invoke user-written C code & pass parameters to it, an Emacs
  1614. editing mode, a version of the X protocol invocable from Smalltalk,
  1615. optional byte-code compilation and/or execution tracing, & automatically
  1616. loaded per-user initialization files. It implements all of the classes
  1617. & protocol in the book "Smalltalk-80: The Language", except for the
  1618. graphic user interface (GUI) related classes.
  1619. * Superopt (LangT, SrcCD)
  1620. Superopt is a function sequence generator that uses an exhaustive
  1621. generate-and-test approach to find the shortest instruction sequence for
  1622. a given function. You provide a function as input, a CPU to generate
  1623. code for, and how many instructions you want. Its use in GCC is
  1624. described in the `ACM SIGPLAN PLDI'92' proceedings. It supports: SPARC,
  1625. m68k, m68020, m88k, IBM RS/6000, AMD 29000, Intel 80x86, Pyramid, DEC
  1626. Alpha & HP-PA.
  1627. * `tar' (SrcCD, UtilT)
  1628. GNU `tar' includes multivolume support, the ability to archive sparse
  1629. files, automatic archive compression/decompression, remote archives, and
  1630. special features that allow `tar' to be used for incremental and full
  1631. backups. Unfortunately, GNU `tar' implements an early draft of the
  1632. POSIX 1003.1 `ustar' standard which is different from the final
  1633. standard. Adding support for the new changes in a backward-compatible
  1634. fashion is unfortunately not trivial.
  1635. * Termcap Library (SrcCD, UtilT) [FSFman]
  1636. The GNU Termcap library is a drop-in replacement for `libtermcap.a' on
  1637. any system. It does not place an arbitrary limit on the size of Termcap
  1638. entries, unlike most other Termcap libraries. Included is source for the
  1639. `Termcap Manual' in Texinfo format. *Note Documentation::.
  1640. * TeX (SrcCD)
  1641. TeX is a document formatting system that handles complicated
  1642. typesetting, including mathematics. It is GNU's standard text formatter.
  1643. The University of Washington maintains & supports a tape distribution of
  1644. TeX for Unix systems. The core material is Karl Berry's `web2c' TeX
  1645. package. Sources are available via anonymous ftp; retrieval instructions
  1646. are in `pub/tex/unixtex.ftp' on `ftp.cs.umb.edu'. If you receive any
  1647. installation support from the University of Washington, consider sending
  1648. them a donation. To order a full distribution written in `tar' on
  1649. either a 1/4inch 4-track QIC-24 cartridge or a 4mm DAT cartridge, send
  1650. $210.00 to:
  1651. Pierre A. MacKay
  1652. Department of Classics
  1653. DH-10, Denny Hall 218
  1654. University of Washington
  1655. Seattle, WA 98195
  1656. USA
  1657. Electronic-Mail: `mackay@cs.washington.edu'
  1658. Telephone: +1-206-543-2268
  1659. Please make checks payable to: `University of Washington'. Do not
  1660. specify any other payee. That causes accounting problems. Checks must
  1661. be in U.S. dollars, drawn on a U.S. bank. Only prepaid orders can be
  1662. handled. Overseas sites: please add to the base cost $20.00 to ship via
  1663. air parcel post or $30.00 to ship via courier. Please check with the
  1664. above for current prices & formats.
  1665. * Texinfo (DjgpD,DosBC,LangT,LspEmcT,SrcCD,UtilD,UtilT)[FSFman]
  1666. Texinfo is a set of utilities (`makeinfo', `info', `texi2dvi',
  1667. `texindex', `tex2patch', & `fixfonts') which generate both printed
  1668. manuals & online hypertext documentation (called "Info"), & can read
  1669. online Info documents. Version 3 has both Emacs Lisp & standalone
  1670. programs written in C or shell script. Texinfo mode for Emacs enables
  1671. easy editing & updating of Texinfo files. Source for the `Texinfo
  1672. Manual' is included. *Note Documentation::.
  1673. * Textutils (DjgpD, DosBC, SrcCD, UtilT)
  1674. The Textutils programs manipulate textual data. They include: `cat',
  1675. `cksum', `comm', `csplit', `cut', `expand', `fmt', `fold', `head',
  1676. `join', `nl', `od', `paste', `pr', `sort', `split', `sum', `tac', `tail',
  1677. `tr', `unexpand', `uniq', and `wc'.
  1678. * Tile Forth (LangT, SrcCD)
  1679. Tile Forth is a 32-bit implementation of the Forth-83 standard written
  1680. in C, allowing it to be easily ported to new systems and extended with
  1681. "any" C-function (graphics, windowing, etc). Many Forth libraries with
  1682. full documentation are available including ones for top-down parsing,
  1683. multi-threads, and object oriented programming.
  1684. * `time' (SrcCD, UtilT)
  1685. `time' reports (usually from a shell) the user, system, & real time used
  1686. by a process. On some systems it also reports memory usage, page
  1687. faults, et al.
  1688. * `tput' (SrcCD, UtilT)
  1689. `tput' is a portable way for shell scripts to use special terminal
  1690. capabilities. Our `tput' uses the Termcap database, instead of Terminfo
  1691. as most others do.
  1692. * `ucblogo' (LangT, SrcCD)
  1693. An implementation of the classic teaching language, Logo.
  1694. * UUCP (SrcCD, UtilT)
  1695. This version of UUCP (written by Ian Lance Taylor) is GNU's standard
  1696. UUCP system. It supports the `f', `g' & `v' (in all window & packet
  1697. sizes), `G', `t', `e', Zmodem, & two new bidirectional (`i' & `j')
  1698. protocols. With a BSD sockets library, it can make TCP connections.
  1699. With TLI libraries, it can make TLI connections. Source is included for
  1700. a manual (not yet published by the FSF).
  1701. * `wdiff' (DjgpD, DosBC, SrcCD, UtilT)
  1702. `wdiff' is a front-end to GNU `diff'. It compares two files, finding
  1703. the words deleted or added to the first to make the second. It has many
  1704. output formats and works well with terminals and pagers. `wdiff' is
  1705. very useful when two texts differ only by a few words and paragraphs
  1706. have been refilled.
  1707. * X11 *For details, see *Note X11 Tapes::* (X11OptT, X11ReqT)
  1708. * `Ygl' (SrcCD, UtilT)
  1709. `Ygl' emulates SGI's GL (Graphics Language) library under X11 on GNU/
  1710. Linux with XFree, AIX 3.2, ConvexOS, HP-UX 7/8/9, SunOS, et al.
  1711. Program/Package Cross Reference
  1712. *******************************
  1713. Here is a list of what package each GNU program or library is in. You can
  1714. anonymously FTP a full list in the file `/pub/gnu/ProgramIndex' from a GNU
  1715. FTP host (listed in *Note How to Get GNU Software::).
  1716. * a2p perl
  1717. * a2x xopt
  1718. * ac bsd44
  1719. * accton bsd44
  1720. * acl bsd44
  1721. * acm acm
  1722. * acms acm
  1723. * addftinfo Groff
  1724. * adventure bsd44
  1725. * afm2tfm TeX
  1726. * amd bsd44
  1727. * ansitape bsd44
  1728. * AnswerGarden xopt
  1729. * apply bsd44
  1730. * appres xreq
  1731. * apropos bsd44
  1732. * ar Binutils
  1733. * arithmetic bsd44
  1734. * arp bsd44
  1735. * atc bsd44
  1736. * autoconf Autoconf
  1737. * autoheader Autoconf
  1738. * autoreconf Autoconf
  1739. * autoscan Autoconf
  1740. * autoupdate Autoconf
  1741. * auto_box xopt
  1742. * auto_box xreq
  1743. * b2m Emacs
  1744. * backgammon bsd44
  1745. * bad144 bsd44
  1746. * badsect bsd44
  1747. * banner bsd44
  1748. * basename Shellutils
  1749. * bash BASH
  1750. * battlestar bsd44
  1751. * bc bc
  1752. * bcd bsd44
  1753. * bdes bsd44
  1754. * bdftops Ghostscript
  1755. * beach_ball xopt
  1756. * beach_ball xreq
  1757. * beach_ball2 xopt
  1758. * bibtex TeX
  1759. * biff bsd44
  1760. * bison Bison
  1761. * bitmap xreq
  1762. * boggle bsd44
  1763. * bpltobzr Fontutils
  1764. * bugfiler bsd44
  1765. * build ispell
  1766. * bzrto Fontutils
  1767. * c++ GCC
  1768. * c++filt Binutils
  1769. * c2ph perl
  1770. * ca100 xopt
  1771. * caeser bsd44
  1772. * cal bsd44
  1773. * calendar bsd44
  1774. * canfield bsd44
  1775. * cat Textutils
  1776. * cbars wdiff
  1777. * cc GCC
  1778. * cc1 GCC
  1779. * cc1obj GCC
  1780. * cc1plus GCC
  1781. * cccp GCC
  1782. * cfengine cfengine
  1783. * charspace Fontutils
  1784. * checknr bsd44
  1785. * chess bsd44
  1786. * chflags bsd44
  1787. * chgrp Fileutils
  1788. * ching bsd44
  1789. * chmod Fileutils
  1790. * chown Fileutils
  1791. * chpass bsd44
  1792. * chroot bsd44
  1793. * ci RCS
  1794. * cksum Textutils
  1795. * cktyps g77
  1796. * clisp CLISP
  1797. * clri bsd44
  1798. * cmail xboard
  1799. * cmmf TeX
  1800. * cmodext xopt
  1801. * cmp Diffutils
  1802. * co RCS
  1803. * col bsd44
  1804. * colcrt bsd44
  1805. * colrm bsd44
  1806. * column bsd44
  1807. * comm Textutils
  1808. * compress bsd44
  1809. * comsat bsd44
  1810. * connectd bsd44
  1811. * cp Fileutils
  1812. * cpicker xopt
  1813. * cpio cpio
  1814. * cpp GCC
  1815. * cppstdin perl
  1816. * cribbage bsd44
  1817. * crock xopt
  1818. * csh bsd44
  1819. * csplit Textutils
  1820. * ctags Emacs
  1821. * ctwm xopt
  1822. * cu UUCP
  1823. * cut Textutils
  1824. * cvs CVS
  1825. * cvscheck CVS
  1826. * cvtmail Emacs
  1827. * cxterm xopt
  1828. * d Fileutils
  1829. * date Shellutils
  1830. * dc bc
  1831. * dd Fileutils
  1832. * delatex TeX
  1833. * demangle Binutils
  1834. * descend CVS
  1835. * detex TeX
  1836. * df Fileutils
  1837. * diff Diffutils
  1838. * diff3 Diffutils
  1839. * digest-doc Emacs
  1840. * dipress bsd44
  1841. * dir Fileutils
  1842. * dirname Shellutils
  1843. * dish xopt
  1844. * disklabel bsd44
  1845. * diskpart bsd44
  1846. * dld dld
  1847. * dm bsd44
  1848. * dmesg bsd44
  1849. * doschk doschk
  1850. * dox xopt
  1851. * du Fileutils
  1852. * dump bsd44
  1853. * dump mkisofs
  1854. * dumpfs bsd44
  1855. * dvi2tty TeX
  1856. * dvicopy TeX
  1857. * dvips TeX
  1858. * dvitype TeX
  1859. * ecc ecc
  1860. * echo Shellutils
  1861. * ed ed
  1862. * edit-pr GNATS
  1863. * editres xreq
  1864. * edquota bsd44
  1865. * eeprom bsd44
  1866. * egrep grep
  1867. * emacs Emacs
  1868. * emacsclient Emacs
  1869. * emacsserver Emacs
  1870. * emacstool Emacs
  1871. * emu xopt
  1872. * env Shellutils
  1873. * eqn Groff
  1874. * error bsd44
  1875. * es es
  1876. * esdebug es
  1877. * etags Emacs
  1878. * ex nvi
  1879. * expand Textutils
  1880. * expect DejaGnu
  1881. * expr Shellutils
  1882. * exterm xopt
  1883. * f2c f2c
  1884. * factor bsd44
  1885. * fakemail Emacs
  1886. * false Shellutils
  1887. * fastboot bsd44
  1888. * fax2ps HylaFAX
  1889. * faxalter HylaFAX
  1890. * faxanswer HylaFAX
  1891. * faxcover HylaFAX
  1892. * faxd HylaFAX
  1893. * faxd.recv HylaFAX
  1894. * faxmail HylaFAX
  1895. * faxquit HylaFAX
  1896. * faxrcvd HylaFAX
  1897. * faxrm HylaFAX
  1898. * faxstat HylaFAX
  1899. * fc f2c
  1900. * fdraw xopt
  1901. * ffe g77
  1902. * fgrep grep
  1903. * file bsd44
  1904. * find Findutils
  1905. * find2perl perl
  1906. * finger finger
  1907. * fingerd finger
  1908. * fish bsd44
  1909. * fixfonts Texinfo
  1910. * fixinc.svr4 GCC
  1911. * fixincludes GCC
  1912. * flex flex
  1913. * flex++ flex
  1914. * fmt bsd44
  1915. * fold Textutils
  1916. * font2c Ghostscript
  1917. * fontconvert Fontutils
  1918. * forth Tile Forth
  1919. * forthicon Tile Forth
  1920. * forthtool Tile Forth
  1921. * fortune bsd44
  1922. * fpr bsd44
  1923. * freq ispell
  1924. * freqtbl ispell
  1925. * from bsd44
  1926. * fsck bsd44
  1927. * fsplit bsd44
  1928. * fstat bsd44
  1929. * ftp bsd44
  1930. * ftpd bsd44
  1931. * g++ GCC
  1932. * gas Binutils
  1933. * gawk Gawk
  1934. * gcc GCC
  1935. * gcore bsd44
  1936. * gdb GDB
  1937. * genclass libg++
  1938. * getty bsd44
  1939. * gftodvi TeX
  1940. * gftopk TeX
  1941. * gftype TeX
  1942. * ghostview Ghostview
  1943. * git GIT
  1944. * gitaction GIT
  1945. * gitcmp GIT
  1946. * gitkeys GIT
  1947. * gitmatch GIT
  1948. * gitmount GIT
  1949. * gitps GIT
  1950. * gitredir GIT
  1951. * gitrgrep GIT
  1952. * gitview GIT
  1953. * gitwipe GIT
  1954. * gnats GNATS
  1955. * gnuchess Chess
  1956. * gnuchessc Chess
  1957. * gnuchessn Chess
  1958. * gnuchessr Chess
  1959. * gnuchessx Chess
  1960. * gnupdisp Shogi
  1961. * gnuplot gnuplot
  1962. * gnuplot_x11 gnuplot
  1963. * gnushogi Shogi
  1964. * gnushogir Shogi
  1965. * gnushogix Shogi
  1966. * go GnuGo
  1967. * gpc xopt
  1968. * gpc xreq
  1969. * gperf cperf
  1970. * gperf libg++
  1971. * gprof Binutils
  1972. * graph Graphics
  1973. * grep grep
  1974. * grodvi Groff
  1975. * groff Groff
  1976. * grops Groff
  1977. * grotty Groff
  1978. * groups Shellutils
  1979. * gs Ghostscript
  1980. * gsbj Ghostscript
  1981. * gsdj Ghostscript
  1982. * gslj Ghostscript
  1983. * gslp Ghostscript
  1984. * gsnd Ghostscript
  1985. * gsrenderfont Fontutils
  1986. * gunzip gzip
  1987. * gwm xopt
  1988. * gzexe gzip
  1989. * gzip gzip
  1990. * h2ph perl
  1991. * h2pl perl
  1992. * hack bsd44
  1993. * hangman bsd44
  1994. * head Textutils
  1995. * hello hello
  1996. * hexdump bsd44
  1997. * hexl Emacs
  1998. * hostname Shellutils
  1999. * hp2xx hp2xx
  2000. * hterm xopt
  2001. * i18nOlwmV2 xopt
  2002. * i2mif xopt
  2003. * ico xopt
  2004. * ico xreq
  2005. * id Shellutils
  2006. * ident RCS
  2007. * ifconfig bsd44
  2008. * ifnames Autoconf
  2009. * ImageMagick xopt
  2010. * imageto Fontutils
  2011. * iman xopt
  2012. * imgrotate Fontutils
  2013. * indent indent
  2014. * indxbib Groff
  2015. * inetd bsd44
  2016. * info Texinfo
  2017. * inimf TeX
  2018. * init bsd44
  2019. * initex TeX
  2020. * inn bsd44
  2021. * install Fileutils
  2022. * iostat bsd44
  2023. * isodiag mkisofs
  2024. * isodump mkisofs
  2025. * ispell ispell
  2026. * ixterm xopt
  2027. * ixx xopt
  2028. * join Textutils
  2029. * jot bsd44
  2030. * jove bsd44
  2031. * kdestroy bsd44
  2032. * kdump bsd44
  2033. * kermit bsd44
  2034. * kgames xopt
  2035. * kgmon bsd44
  2036. * kill bsd44
  2037. * kinit bsd44
  2038. * kinput2 xopt
  2039. * klist bsd44
  2040. * kpasswdd bsd44
  2041. * ksrvtgt bsd44
  2042. * kterm xopt
  2043. * ktrace bsd44
  2044. * lam bsd44
  2045. * larn bsd44
  2046. * lasergnu gnuplot
  2047. * last bsd44
  2048. * lastcomm bsd44
  2049. * latex TeX
  2050. * lclock xopt
  2051. * ld Binutils
  2052. * leave bsd44
  2053. * less less
  2054. * lesskey less
  2055. * libbfd.a Binutils
  2056. * libbfd.a GAS
  2057. * libbfd.a GDB
  2058. * libbzr.a Fontutils
  2059. * libc.a C Library
  2060. * libcompat.a bsd44
  2061. * libcurses.a bsd44
  2062. * libcurses.a nvi
  2063. * libdcurses.a ncurses
  2064. * libedit.a bsd44
  2065. * libF77.a f2c
  2066. * libF77.a g77
  2067. * libg++.a libg++
  2068. * libgdbm.a gdbm
  2069. * libgf.a Fontutils
  2070. * libgmp.a gmp
  2071. * libI77.a f2c
  2072. * libI77.a g77
  2073. * libkvm.a bsd44
  2074. * libm.a bsd44
  2075. * libncurses.a ncurses
  2076. * libnihcl.a NIHCL
  2077. * libnihclmi.a NIHCL
  2078. * libnihclvec.a NIHCL
  2079. * libnls.a xreq
  2080. * libobjects.a libobjects
  2081. * liboctave.a Octave
  2082. * liboldX.a xreq
  2083. * libpbm.a Fontutils
  2084. * libPEXt.a xopt
  2085. * libpk.a Fontutils
  2086. * libresolv.a bsd44
  2087. * librpc.a bsd44
  2088. * libtcl.a DejaGnu
  2089. * libtelnet.a bsd44
  2090. * libterm.a bsd44
  2091. * libtermcap.a Termcap
  2092. * libtfm.a Fontutils
  2093. * libutil.a bsd44
  2094. * libWc.a xopt
  2095. * libwidgets.a Fontutils
  2096. * libX.a xreq
  2097. * libXau.a xreq
  2098. * libXaw.a xreq
  2099. * libXcp.a xopt
  2100. * libXcu.a xopt
  2101. * libXdmcp.a xreq
  2102. * libXmp.a xopt
  2103. * libXmu.a xreq
  2104. * libXO.a xopt
  2105. * libXop.a xopt
  2106. * libXp.a xopt
  2107. * libXpex.a xopt
  2108. * libXt.a xopt
  2109. * libXt.a xreq
  2110. * libXwchar.a xopt
  2111. * liby.a bsd44
  2112. * libYgl.a Ygl
  2113. * limn Fontutils
  2114. * listres xopt
  2115. * listres xreq
  2116. * lkbib Groff
  2117. * ln Fileutils
  2118. * locate Findutils
  2119. * lock bsd44
  2120. * logger bsd44
  2121. * login bsd44
  2122. * logname Shellutils
  2123. * logo ucblogo
  2124. * look ispell
  2125. * lookbib Groff
  2126. * lorder bsd44
  2127. * lpr bsd44
  2128. * ls Fileutils
  2129. * m4 m4
  2130. * mail bsd44
  2131. * mail-files Sharutils
  2132. * mailshar Sharutils
  2133. * make Make
  2134. * make-docfile Emacs
  2135. * make-path Emacs
  2136. * makeindex TeX
  2137. * makeinfo Texinfo
  2138. * MakeTeXPK TeX
  2139. * man bsd44
  2140. * man-macros Groff
  2141. * mattrib mtools
  2142. * maze xopt
  2143. * maze xreq
  2144. * mazewar xopt
  2145. * mcd mtools
  2146. * mcopy mtools
  2147. * mdel mtools
  2148. * mdir mtools
  2149. * me-macros Groff
  2150. * merge RCS
  2151. * mesg bsd44
  2152. * mf TeX
  2153. * mformat mtools
  2154. * mft TeX
  2155. * mgdiff xopt
  2156. * mh bsd44
  2157. * mille bsd44
  2158. * mkdep bsd44
  2159. * mkdir Fileutils
  2160. * mkfifo Fileutils
  2161. * mkisofs mkisofs
  2162. * mklocale bsd44
  2163. * mkmanifest mtools
  2164. * mkmf bsd44
  2165. * mkmodules CVS
  2166. * mknod Fileutils
  2167. * mkstr bsd44
  2168. * mlabel mtools
  2169. * mm-macros Groff
  2170. * mmd mtools
  2171. * monop bsd44
  2172. * more bsd44
  2173. * morse bsd44
  2174. * mount bsd44
  2175. * mountd bsd44
  2176. * movemail Emacs
  2177. * mprof bsd44
  2178. * mrd mtools
  2179. * mread mtools
  2180. * mren mtools
  2181. * ms-macros Groff
  2182. * msgs bsd44
  2183. * mst Smalltalk
  2184. * mt cpio
  2185. * mterm xopt
  2186. * mtree bsd44
  2187. * mtype mtools
  2188. * mule MULE
  2189. * muncher xopt
  2190. * mv Fileutils
  2191. * mvdir Fileutils
  2192. * mwrite mtools
  2193. * nethack Nethack
  2194. * netstat bsd44
  2195. * newfs bsd44
  2196. * nfsd bsd44
  2197. * nfsiod bsd44
  2198. * nfsstat bsd44
  2199. * nice Shellutils
  2200. * nl Textutils
  2201. * nlmconv Binutils
  2202. * nm Binutils
  2203. * nohup Shellutils
  2204. * notify HylaFAX
  2205. * nroff Groff
  2206. * number bsd44
  2207. * objc GCC
  2208. * objcopy Binutils
  2209. * objdump Binutils
  2210. * objective-c GCC
  2211. * obst-boot OBST
  2212. * obst-CC OBST
  2213. * obst-cct OBST
  2214. * obst-cgc OBST
  2215. * obst-cmp OBST
  2216. * obst-cnt OBST
  2217. * obst-cpcnt OBST
  2218. * obst-csz OBST
  2219. * obst-dir OBST
  2220. * obst-dmp OBST
  2221. * obst-gen OBST
  2222. * obst-gsh OBST
  2223. * obst-init OBST
  2224. * obst-scp OBST
  2225. * obst-sil OBST
  2226. * obst-stf OBST
  2227. * oclock xreq
  2228. * octave Octave
  2229. * od Textutils
  2230. * oleo Oleo
  2231. * ora-examples xopt
  2232. * p2c p2c
  2233. * pagesize bsd44
  2234. * palette xopt
  2235. * pascal bsd44
  2236. * passwd bsd44
  2237. * paste Textutils
  2238. * patch patch
  2239. * patgen TeX
  2240. * pathalias bsd44
  2241. * pathchk Shellutils
  2242. * pax bsd44
  2243. * pbmplus xopt
  2244. * perl perl
  2245. * pfbtops Groff
  2246. * phantasia bsd44
  2247. * pic Groff
  2248. * pico pine
  2249. * pig bsd44
  2250. * pine pine
  2251. * ping bsd44
  2252. * pixedit xopt
  2253. * pixmap xopt
  2254. * pktogf TeX
  2255. * pktype TeX
  2256. * plaid xopt
  2257. * plot2fig Graphics
  2258. * plot2plot Graphics
  2259. * plot2ps Graphics
  2260. * plot2tek Graphics
  2261. * pltotf TeX
  2262. * pollrcvd HylaFAX
  2263. * pom bsd44
  2264. * pooltype TeX
  2265. * portmap bsd44
  2266. * ppt bsd44
  2267. * pr Textutils
  2268. * pr-addr GNATS
  2269. * pr-edit GNATS
  2270. * primes bsd44
  2271. * printenv Shellutils
  2272. * printf Shellutils
  2273. * protoize GCC
  2274. * ps bsd44
  2275. * ps2ascii Ghostscript
  2276. * ps2epsi Ghostscript
  2277. * ps2fax HylaFAX
  2278. * psbb Groff
  2279. * pstat bsd44
  2280. * psycho xopt
  2281. * ptx ptx
  2282. * pubdic+ xopt
  2283. * puzzle xopt
  2284. * puzzle xreq
  2285. * pwd Shellutils
  2286. * pyramid xopt
  2287. * query-pr GNATS
  2288. * quiz bsd44
  2289. * quot bsd44
  2290. * quota bsd44
  2291. * quotacheck bsd44
  2292. * quotaon bsd44
  2293. * rain bsd44
  2294. * random bsd44
  2295. * ranlib Binutils
  2296. * rbootd bsd44
  2297. * rc rc
  2298. * rcp bsd44
  2299. * rcs RCS
  2300. * rcs-to-cvs CVS
  2301. * rcs2log Emacs
  2302. * rcsdiff RCS
  2303. * rcsfreeze RCS
  2304. * rcsmerge RCS
  2305. * rdist bsd44
  2306. * reboot bsd44
  2307. * recode recode
  2308. * recvstats HylaFAX
  2309. * red ed
  2310. * refer Groff
  2311. * remsync Sharutils
  2312. * renice bsd44
  2313. * repquota bsd44
  2314. * restore bsd44
  2315. * rev bsd44
  2316. * rexecd bsd44
  2317. * rlog RCS
  2318. * rlogin bsd44
  2319. * rlogind bsd44
  2320. * rm Fileutils
  2321. * rmail bsd44
  2322. * rmdir Fileutils
  2323. * rmt cpio
  2324. * rmt tar
  2325. * robots bsd44
  2326. * rogue bsd44
  2327. * route bsd44
  2328. * routed bsd44
  2329. * rr xopt
  2330. * rs bsd44
  2331. * rsh bsd44
  2332. * rshd bsd44
  2333. * runtest DejaGnu
  2334. * runtest.exp DejaGnu
  2335. * ruptime bsd44
  2336. * rwho bsd44
  2337. * rwhod bsd44
  2338. * s2p perl
  2339. * sail bsd44
  2340. * saoimage saoimage
  2341. * savecore bsd44
  2342. * sc bsd44
  2343. * sccs bsd44
  2344. * sccs2rcs CVS
  2345. * scdisp xopt
  2346. * screen screen
  2347. * script bsd44
  2348. * scsiformat bsd44
  2349. * sctext xopt
  2350. * sdiff Diffutils
  2351. * sed sed
  2352. * send-pr GNATS
  2353. * sendfax HylaFAX
  2354. * sendmail bsd44
  2355. * sgi2fax HylaFAX
  2356. * sh bsd44
  2357. * shar Sharutils
  2358. * shinbun xopt
  2359. * shogi Shogi
  2360. * showfont xopt
  2361. * showmount bsd44
  2362. * shutdown bsd44
  2363. * size Binutils
  2364. * sj3 xopt
  2365. * sjxa xopt
  2366. * slattach bsd44
  2367. * sleep Shellutils
  2368. * sliplogin bsd44
  2369. * snake bsd44
  2370. * snftobdf xopt
  2371. * soelim Groff
  2372. * sort Textutils
  2373. * sos2obst OBST
  2374. * spider xopt
  2375. * split Textutils
  2376. * startslip bsd44
  2377. * stf OBST
  2378. * strings Binutils
  2379. * strip Binutils
  2380. * stty Shellutils
  2381. * su Shellutils
  2382. * sum Textutils
  2383. * superopt Superopt
  2384. * swapon bsd44
  2385. * sync bsd44
  2386. * sysctl bsd44
  2387. * syslogd bsd44
  2388. * systat bsd44
  2389. * tac Textutils
  2390. * tail Textutils
  2391. * taintperl perl
  2392. * talk bsd44
  2393. * talkd bsd44
  2394. * tangle TeX
  2395. * tar tar
  2396. * tbl Groff
  2397. * tcl DejaGnu
  2398. * tclsh DejaGnu
  2399. * tcopy bsd44
  2400. * tcp Emacs
  2401. * tee Shellutils
  2402. * tek2plot Graphics
  2403. * telnet bsd44
  2404. * telnetd bsd44
  2405. * test Shellutils
  2406. * test-g++ DejaGnu
  2407. * test-tool DejaGnu
  2408. * tetris bsd44
  2409. * tex TeX
  2410. * tex3patch Texinfo
  2411. * texi2dvi Texinfo
  2412. * texindex Texinfo
  2413. * texspell TeX
  2414. * textfmt HylaFAX
  2415. * tfmtodit Groff
  2416. * tftopl TeX
  2417. * tftp bsd44
  2418. * tftpd bsd44
  2419. * tgrind TeX
  2420. * time time
  2421. * timed bsd44
  2422. * timer Emacs
  2423. * timex xopt
  2424. * tip bsd44
  2425. * tkpostage xopt
  2426. * tn3270 bsd44
  2427. * touch Fileutils
  2428. * tput tput
  2429. * tr Textutils
  2430. * traceroute bsd44
  2431. * transcript HylaFAX
  2432. * transfig xopt
  2433. * trek bsd44
  2434. * trn3 bsd44
  2435. * troff Groff
  2436. * trpt bsd44
  2437. * trsp bsd44
  2438. * true Shellutils
  2439. * tset bsd44
  2440. * tsort bsd44
  2441. * tty Shellutils
  2442. * tunefs bsd44
  2443. * tvtwm xopt
  2444. * twm xreq
  2445. * ul bsd44
  2446. * umount bsd44
  2447. * uname Shellutils
  2448. * uncompress gzip
  2449. * unexpand Textutils
  2450. * unifdef bsd44
  2451. * unify wdiff
  2452. * uniq Textutils
  2453. * unprotoize GCC
  2454. * unshar Sharutils
  2455. * unvis bsd44
  2456. * update bsd44
  2457. * updatedb Findutils
  2458. * users Shellutils
  2459. * uuchk UUCP
  2460. * uucico UUCP
  2461. * uuconv UUCP
  2462. * uucp UUCP
  2463. * uucpd bsd44
  2464. * uudecode Sharutils
  2465. * uudir UUCP
  2466. * uuencode Sharutils
  2467. * uulog UUCP
  2468. * uuname UUCP
  2469. * uupick UUCP
  2470. * uurate UUCP
  2471. * uusched UUCP
  2472. * uustat UUCP
  2473. * uuto UUCP
  2474. * uux UUCP
  2475. * uuxqt UUCP
  2476. * v Fileutils
  2477. * vacation bsd44
  2478. * vandal xopt
  2479. * vcdiff Emacs
  2480. * vdir Fileutils
  2481. * vftovp TeX
  2482. * vgrind bsd44
  2483. * vi nvi
  2484. * viewres xopt
  2485. * viewres xreq
  2486. * vine xopt
  2487. * vipw bsd44
  2488. * virmf TeX
  2489. * virtex TeX
  2490. * vis bsd44
  2491. * vmstat bsd44
  2492. * vptovf TeX
  2493. * w bsd44
  2494. * wakeup Emacs
  2495. * wall bsd44
  2496. * wargames bsd44
  2497. * wc Textutils
  2498. * wdiff wdiff
  2499. * weave TeX
  2500. * what bsd44
  2501. * whatis bsd44
  2502. * whereis bsd44
  2503. * who Shellutils
  2504. * whoami Shellutils
  2505. * whois bsd44
  2506. * window bsd44
  2507. * winterp xopt
  2508. * wish DejaGnu
  2509. * worm bsd44
  2510. * worms bsd44
  2511. * write bsd44
  2512. * wump bsd44
  2513. * x11perf xreq
  2514. * x2p perl
  2515. * xalarm xopt
  2516. * xancur xopt
  2517. * xargs Findutils
  2518. * xauth xreq
  2519. * xbfe Fontutils
  2520. * xbiff xopt
  2521. * xbiff xreq
  2522. * xboard xboard
  2523. * xboing xopt
  2524. * xbuffy3 xopt
  2525. * xcalc xopt
  2526. * xcalc xreq
  2527. * xcalendar xopt
  2528. * xcdplayer xopt
  2529. * xcell xopt
  2530. * xclipboard xreq
  2531. * xclock xreq
  2532. * xcmdmenu xopt
  2533. * xcms xopt
  2534. * xcmsdb xreq
  2535. * xcmstest xreq
  2536. * xco xopt
  2537. * xcolorize xopt
  2538. * xcolors xopt
  2539. * xconsole xreq
  2540. * xcrtca xopt
  2541. * xdaliclock xopt
  2542. * xdiary xopt
  2543. * xditview Groff
  2544. * xditview xopt
  2545. * xditview xreq
  2546. * xdm xreq
  2547. * xdpyinfo xreq
  2548. * xdu xopt
  2549. * xdvi TeX
  2550. * xdvi xopt
  2551. * xdvorak xopt
  2552. * xearth xopt
  2553. * xed xopt
  2554. * xedit xopt
  2555. * xedit xreq
  2556. * xev xopt
  2557. * xev xreq
  2558. * xexit xopt
  2559. * xeyes xopt
  2560. * xeyes xreq
  2561. * xfd xreq
  2562. * xfed xopt
  2563. * xfedor xopt
  2564. * xfeoak xopt
  2565. * xferstats HylaFAX
  2566. * xfig xopt
  2567. * xfontsel xopt
  2568. * xfontsel xreq
  2569. * xforecast xopt
  2570. * xgas xopt
  2571. * xgas xreq
  2572. * xgc xopt
  2573. * xgc xreq
  2574. * xhearts xopt
  2575. * xhelp xopt
  2576. * xhost xreq
  2577. * xinit xreq
  2578. * xkeycaps xopt
  2579. * xkill xreq
  2580. * xlax xopt
  2581. * xlayout xopt
  2582. * xlbiff xopt
  2583. * xless xopt
  2584. * xload xopt
  2585. * xload xreq
  2586. * xlogin xopt
  2587. * xlogo xreq
  2588. * xlsatoms xreq
  2589. * xlsclients xreq
  2590. * xlsfonts xreq
  2591. * xmag xreq
  2592. * xmail xopt
  2593. * xmailbox xopt
  2594. * xmailwatcher xopt
  2595. * xman xopt
  2596. * xman xreq
  2597. * xmandel xopt
  2598. * xmessage xopt
  2599. * xmeter xopt
  2600. * xmh xreq
  2601. * xmh-icons xopt
  2602. * xmh.editor xopt
  2603. * xmodmap xreq
  2604. * xmon xopt
  2605. * xmove xopt
  2606. * xmphone xopt
  2607. * xpd xopt
  2608. * xphoon xopt
  2609. * xpipeman xopt
  2610. * xplot Graphics
  2611. * xpostit xopt
  2612. * xpr xopt
  2613. * xpr xreq
  2614. * xprompt xopt
  2615. * xproof xopt
  2616. * xprop xreq
  2617. * xpserv xopt
  2618. * xrdb xreq
  2619. * xrefresh xreq
  2620. * xrsh xopt
  2621. * xrubik xopt
  2622. * xrunclient xopt
  2623. * xscope xopt
  2624. * xscreensaver xopt
  2625. * xsession xopt
  2626. * xset xreq
  2627. * xsetroot xreq
  2628. * xshogi xshogi
  2629. * xstdcmap xreq
  2630. * xstr bsd44
  2631. * xtalk xopt
  2632. * xterm xreq
  2633. * xterm_color xopt
  2634. * xtetris xopt
  2635. * xTeXcad.13 xopt
  2636. * xtiff xopt
  2637. * xtree xopt
  2638. * xtv xopt
  2639. * xwd xreq
  2640. * xwininfo xreq
  2641. * xwud xreq
  2642. * yacc bsd44
  2643. * yes Shellutils
  2644. * youbin xopt
  2645. * yow Emacs
  2646. * zcat gzip
  2647. * zcmp gzip
  2648. * zdiff gzip
  2649. * zforce gzip
  2650. * zgrep gzip
  2651. * zmore gzip
  2652. * znew gzip
  2653. * [ Shellutils
  2654. Tapes
  2655. *****
  2656. We offer Unix source code on tapes in `tar' format on these media:
  2657. * 4mm DAT cartridges.
  2658. * 8mm Exabyte cartridges.
  2659. * Sun DC300XLP QIC-24 1/4in cartridges (readable on some other systems).
  2660. * Hewlett-Packard 16-track DC600HC 1/4in cartridges.
  2661. * IBM RS/6000 QIC-150 1/4in cartridges (readable on some other systems).
  2662. * 1600bpi 9-track 1/2in reel tape.
  2663. The contents of the various tapes for Unix systems are the same (except the
  2664. RS/6000 Emacs tape also has binaries for Emacs); only the media are
  2665. different. For prices, see the *note Free Software Foundation Order Form::..
  2666. Source code for the manuals & reference cards is included (*note
  2667. Documentation::.).
  2668. Some of the files on the tapes may be compressed with `gzip' to make them
  2669. fit. Refer to the top-level `README' file at the beginning of each tape for
  2670. instructions on uncompressing them. `uncompress' and `unpack' *do not work*!
  2671. Languages Tape
  2672. --------------
  2673. This tape contains programming tools: compilers, interpreters and related
  2674. programs (parsers, conversion programs, debuggers, etc.).
  2675. * Binutils 2.5.2
  2676. * Bison 1.24
  2677. * C Library 1.09
  2678. * cperf 2.1a
  2679. * DejaGnu 1.2
  2680. * dld 3.2.3
  2681. * ecc 1.2.1
  2682. * f2c 1995.02.24
  2683. * flex 2.5.2
  2684. * g77 0.5.15
  2685. * Gawk 2.15.6
  2686. * GCC/G++/Object-C 2.6.3
  2687. * GCC/G++/Object-C 2.7.0
  2688. * GDB 4.14
  2689. * gdbm 1.7.3
  2690. * gmp 1.3.2
  2691. * gzip 1.2.4
  2692. * indent 1.9.1
  2693. * libg++ 2.6.2
  2694. * libg++ 2.7.0
  2695. * libobjects 0.1.3
  2696. * Make 3.74
  2697. * ncurses 1.9.1a
  2698. * NIHCL 3.1.4
  2699. * OBST 3.4.3
  2700. * Octave 1.1.1
  2701. * p2c 1.20
  2702. * perl 4.036
  2703. * perl 5.001
  2704. * regex 0.12
  2705. * rx 0.05
  2706. * Smalltalk 1.1.1
  2707. * Superopt 2.5
  2708. * Texinfo 3.6
  2709. * Tile Forth 2.1
  2710. * ucblogo
  2711. Lisps/Emacs Tape
  2712. ----------------
  2713. This tape has Common Lisp systems and libraries, GNU Emacs, assorted
  2714. extensions that work with GNU Emacs, and a few other important utilities.
  2715. * Calc 2.02c
  2716. * CLISP 1995.04.25
  2717. * Common Lisp 2.1
  2718. * elib 0.06
  2719. * Emacs 18.59
  2720. * Emacs 19.28
  2721. * Emacs 19.29
  2722. * GNU Emacs Lisp Reference Manual Ed. 1.3 for Version 18
  2723. * GNU Emacs Lisp Reference Manual Ed. 2.4 for Version 19.29
  2724. * gzip 1.2.4
  2725. * Make 3.74
  2726. * MULE 2.2
  2727. * PCL 2.1
  2728. * Programming in Emacs Lisp Ed. 1.03
  2729. * Texinfo 3.6
  2730. Utilities Tape
  2731. --------------
  2732. This tape consists mostly of smaller utilities, and miscellaneous
  2733. applications.
  2734. * acm 4.7
  2735. * Autoconf 2.4
  2736. * BASH 1.14.5
  2737. * bc 1.03
  2738. * cfengine 1.0.4
  2739. * Chess 4.0.74
  2740. * cpio 2.3
  2741. * CVS 1.3
  2742. * Diffutils 2.7
  2743. * doschk 1.1
  2744. * ed 0.2
  2745. * es 0.84
  2746. * Fileutils 3.12
  2747. * Findutils 4.1
  2748. * finger 1.37
  2749. * Fontutils 0.6
  2750. * Ghostscript 2.6.2
  2751. * Ghostview 1.5
  2752. * Ghostview for Windows 1.0
  2753. * GIT 4.3.6
  2754. * GNATS 3.2
  2755. * GnuGo 1.1
  2756. * gnuplot 3.5
  2757. * Graphics 0.17
  2758. * grep 2.0
  2759. * Groff 1.09
  2760. * gzip 1.2.4
  2761. * hello 1.3
  2762. * hp2xx 3.1.4
  2763. * HylaFAX 3.0.0
  2764. * ispell 3.1.18
  2765. * less 2.9.0
  2766. * m4 1.4
  2767. * Make 3.74
  2768. * MandelSpawn 0.07
  2769. * mkisofs 1.03GNU
  2770. * mm 1.07
  2771. * mtools 2.0.7
  2772. * Nethack 3.1.3
  2773. * nvi 1.34
  2774. * Oleo 1.6
  2775. * patch 2.1
  2776. * pine 3.91
  2777. * ptx 0.4
  2778. * rc 1.4
  2779. * RCS 5.7
  2780. * readline 2.0
  2781. * recode 3.4
  2782. * saoimage 1.08
  2783. * screen 3.6.2
  2784. * sed 2.05
  2785. * Sharutils 4.1
  2786. * Shellutils 1.12
  2787. * Shogi 1.2.3
  2788. * tar 1.11.8
  2789. * Termcap 1.2
  2790. * Texinfo 3.6
  2791. * Textutils 1.12
  2792. * time 1.6
  2793. * tput 1.0
  2794. * UUCP 1.05
  2795. * wdiff 0.5
  2796. * xboard 3.2.2
  2797. * xshogi 1.2.03
  2798. * Ygl 2.9.5
  2799. Scheme Tape
  2800. -----------
  2801. Scheme is a simplified, lexically-scoped dialect of Lisp. It was designed at
  2802. MIT and other universities to teach students the art of programming and to
  2803. research new parallel programming constructs and compilation techniques.
  2804. This tape now has MIT Scheme 7.3, which conforms to the "Revised^4 Report On
  2805. the Algorithmic Language Scheme" (MIT AI Lab Memo 848b), for which TeX source
  2806. is included. It is written partly in C, but is presently hard to bootstrap.
  2807. Binaries that can be used to bootstrap it are available for: HP 9000 series
  2808. 300, 400, 700, & 800 (running HP-UX 9.0), NeXT (NeXT OS 2 or 3.2), DEC Alpha
  2809. (OSF/1), IBM RS-6000 (AIX), Sun-3 or Sun-4 (SunOS 4.1), DECstation 3100/5100
  2810. (Ultrix 4.0), Sony NeWS-3250 (NEWS OS 5.01), & Intel i386 (MS-DOS, Windows
  2811. 3.1 or NT). If your system is not on this list & you don't enjoy the
  2812. bootstrap challenge, see "JACAL" in *Note GNU Software::.
  2813. X11 Tapes
  2814. ---------
  2815. The two X11 tapes contain Version 11, Release 6 of the X Window System. The
  2816. first tape has all of the core software, documentation, & some contributed
  2817. clients. We call this the "required" X tape since it is necessary for
  2818. running X or GNU Emacs under X. The second, "optional" tape has contributed
  2819. libraries & toolkits, the Andrew User Interface System, games, et al.
  2820. The X11 Required tape also contains all fixes and patches released to date.
  2821. We update this tape as new fixes and patches are released for programs on
  2822. both tapes. *Note Tape & CD-ROM Subscription Service::.
  2823. We will distribute X11R5 on tape until X11R6 is stable and on the *Note
  2824. November 1993 Source Code CD-ROM::, while supplies last.
  2825. Berkeley 4.4BSD-Lite Tape
  2826. -------------------------
  2827. The "4.4BSD-Lite" release is the last from the Computer Systems Research
  2828. Group at the University of California at Berkeley. It has most of the BSD
  2829. software system, except for a few files that remain proprietary. It is much
  2830. more complete than the previous "Net2" release.
  2831. VMS Emacs and VMS Compiler Tapes
  2832. --------------------------------
  2833. We offer two VMS tapes. One has just GNU Emacs 18.59 (none of the other
  2834. software on the *Note Lisps/Emacs Tape::, is included). The other has GCC
  2835. 2.3.3, Bison 1.19 (to compile GCC), GAS 1.38 (to assemble GCC's output), and
  2836. some library and include files (none of the other software on the *Note
  2837. Languages Tape::, is included). We are not aware of a GDB port for VMS.
  2838. Both VMS tapes have DEC VAX executables from which you can bootstrap, as the
  2839. DEC VMS C compiler cannot compile GCC. We do not have executables for DEC
  2840. Alpha VMS systems. Please do not ask us to devote effort to VMS support,
  2841. because it is peripheral to the GNU Project.
  2842. CD-ROMs
  2843. *******
  2844. We offer these CD-ROMs:
  2845. * Several editions of our *Note Source Code CD-ROMs::.
  2846. * *Note Compiler Tools Binaries CD-ROM::.
  2847. * *Note MS-DOS Book with CD-ROM::, expected in late fall, 1995.
  2848. * *Note Debian GNU/Linux Book with CD-ROM::, expected in late fall, 1995.
  2849. Our CD-ROMs are in ISO 9660 format & can be mounted as a read-only file
  2850. system on most computers. If your driver supports it you can mount each
  2851. CD-ROM with "Rock Ridge" extensions (the MS-DOS CD-ROM is only in ISO 9660
  2852. format), & it will look just like an ordinary Unix file system, rather than
  2853. one full of truncated & otherwise mangled names that fit vanilla ISO 9660.
  2854. You can build most of the software without copying the sources off the CD.
  2855. You only need enough disk space for object files and intermediate build
  2856. targets.
  2857. Pricing of the GNU CD-ROMs
  2858. --------------------------
  2859. If a business or organization is ultimately paying, the June 1995 Source CD
  2860. costs $240. It costs $60 if you, an individual, are paying out of your own
  2861. pocket. The December 1994 Compiler Tools Binaries CD-ROM costs $220 for a
  2862. business or organization, and $55 for an individual.
  2863. What do the individual and company prices mean?
  2864. ................................................
  2865. The software on our disks is free; anyone can copy it and anyone can run it.
  2866. What we charge for is the physical disk and the service of distribution.
  2867. We charge two different prices depending on who is buying. When a company or
  2868. other organization buys the June 1995 Source CD-ROM, we charge $240. When an
  2869. individual buys the same CD-ROM, we charge just $60. This distinction is not
  2870. a matter of who is allowed to use the software. In either case, once you
  2871. have a copy, you can distribute as many copies as you wish and there's no
  2872. restriction on who can have or run them. The price distinction is entirely a
  2873. matter of what kind of entity pays for the CD.
  2874. You, the reader, are certainly an individual, not a company. If you are
  2875. buying a disk "in person", then you are probably doing so as an individual.
  2876. But if you expect to be reimbursed by your employer, then the disk is really
  2877. for the company; so please pay the company price and get reimbursed for it.
  2878. We won't try to check up on you--we use the honor system--so please cooperate.
  2879. Buying CDs at the company price is very helpful for GNU; just
  2880. 140 Source CDs at that price supports an FSF programmer or tech writer for a
  2881. year.
  2882. Why is there an individual price?
  2883. ..................................
  2884. In the past, our distribution tapes have been ordered mainly by companies.
  2885. The CD at the price of $240 provides them with all of our software for a much
  2886. lower price than they would previously have paid for six different tapes. To
  2887. lower the price more would cut into the FSF's funds very badly and decrease
  2888. the software development we can do.
  2889. However, for individuals, $240 is too high a price; hardly anyone could
  2890. afford that. So we decided to make CDs available to individuals at the lower
  2891. price of $60.
  2892. Is there a maximum price?
  2893. ..........................
  2894. Our stated prices are minimum prices. Feel free to pay a higher price if you
  2895. wish to support GNU development more. The sky's the limit; we will accept as
  2896. high a price as you can offer. Or simply give a donation (tax-deductible in
  2897. the U.S.) to the Free Software Foundation, a tax-exempt public charity.
  2898. December 1994 Compiler Tools Binaries CD-ROM
  2899. --------------------------------------------
  2900. We now have the second edition of the CD-ROM that has binaries for GNU
  2901. compiler tools for some systems which lack a compiler. This enables the
  2902. people who use these systems to compile GNU and other free software without
  2903. having to buy a proprietary compiler. You can also use these GNU tools to
  2904. compile your own C/C++/Objective-C programs. The first edition of this CD is
  2905. available while supplies last at a reduced price; see the *note Free Software
  2906. Foundation Order Form::..
  2907. We hope to have more systems on each update of this CD. If you can help
  2908. build binaries for new systems (especially those that don't come with a C
  2909. compiler), or have one to suggest, please contact us at the addresses on page
  2910. 1.
  2911. These packages:
  2912. * DJGPP 1.12.m2 from GCC 2.6.0
  2913. * GCC/G++/Objective-C 2.6.2
  2914. * GNU C Library 1.09
  2915. * GDB 4.13
  2916. * Binutils 2.5.2
  2917. * Bison 1.22
  2918. * Emacs 19.26 (MS-DOS only)
  2919. * Flex 2.4.7
  2920. * Make 3.72.1
  2921. * libg++ 2.6.1
  2922. On these platforms:
  2923. * `i386-msdos'
  2924. * `hppa1.1-hp-hpux9'
  2925. * `sparc-sun-solaris2'
  2926. * `sparc-sun-sunos4.1'
  2927. MS-DOS Book with CD-ROM
  2928. -----------------------
  2929. We hope to release our first Book describing GNU Software for MS-DOS in late
  2930. fall, 1995. Contact either address on page 1 for more information then. It
  2931. will include a CD-ROM with all the sources & binaries on the MS-DOS Diskettes.
  2932. For version numbers & some details, *note MS-DOS Diskettes::..
  2933. Debian GNU/Linux Book with CD-ROM
  2934. ---------------------------------
  2935. We hope to release our first Book describing Debian GNU/Linux in late fall,
  2936. 1995. A CD will be inside the book with sources for Debian GNU/Linux.
  2937. GNU/Linux is a complete operating system for i386, i486, & Pentium machines,
  2938. available in both source code & binary form. It is a GNU/Linux system--that
  2939. is to say, a variant GNU system which uses Linux as the kernel. (All the
  2940. systems now available that use the Linux kernel are GNU/Linux systems.)
  2941. Debian is being developed by Ian Murdock and the Debian Association in
  2942. conjunction with the Free Software Foundation. We are distributing it as an
  2943. interim measure until the GNU kernel (the Hurd) is ready for users.
  2944. You can FTP Debian under `/pub/debian' from `ftp.cps.cmich.edu'. For details
  2945. about Debian & how to get involved, see `/pub/gnu/GNUinfo/DEBIAN' on a GNU
  2946. FTP host (*Note How to Get GNU Software::).
  2947. Source Code CD-ROMs
  2948. -------------------
  2949. We have several versions of our Source Code CD-ROMs available, including:
  2950. * *Note June 1995 Source Code CD-ROM::, the newest release.
  2951. * *Note May 1994 Source Code CD-ROM::.
  2952. * *Note November 1993 Source Code CD-ROM::.
  2953. These & other older Source CDs are available while supplies last at a reduced
  2954. price; see the *note Free Software Foundation Order Form::. (please note
  2955. that the December 1994 Source CD is permanently out of stock). All the
  2956. Source CDs also have Texinfo source for the GNU manuals listed in *Note
  2957. Documentation::. The VMS tapes' contents are *not* included. Many programs
  2958. that are only on MS-DOS diskettes & not on the tapes are also *not* included.
  2959. The MIT Scheme & X11 Optional tapes' contents are *not* on the November 1993,
  2960. May 1994, or June 1995 Source CDs. *Note Tapes:: & *Note MS-DOS Diskettes::.
  2961. There are no precompiled programs on these Source CDs. You will need a C
  2962. compiler (programs which need some other interpreter or compiler normally
  2963. provide the C source for a bootstrapping program). We ship C compiler
  2964. binaries for some systems on the *Note Compiler Tools Binaries CD-ROM::.
  2965. June 1995 Source Code CD-ROM
  2966. .............................
  2967. The sixth edition of our Source CD is out! Not all FSF distributed software
  2968. is included (*note Source Code CD-ROMs::.). It contains these packages, and
  2969. some manuals that are not part of packages:
  2970. * acm 4.7
  2971. * Autoconf 2.4
  2972. * BASH 1.14.5
  2973. * bc 1.03
  2974. * Binutils 2.5.2
  2975. * Bison 1.24
  2976. * C Library 1.09
  2977. * Calc 2.02c
  2978. * cfengine 1.0.4
  2979. * Chess 4.0.pl74
  2980. * CLISP 1995.04.25
  2981. * Common Lisp 2.1
  2982. * cperf 2.1a
  2983. * cpio 2.3
  2984. * CVS 1.3
  2985. * DejaGnu 1.2
  2986. * Diffutils 2.7
  2987. * dld 3.2.3
  2988. * doschk 1.1
  2989. * ecc 1.2.1
  2990. * ed 0.2
  2991. * elib 0.06
  2992. * Emacs 18.59
  2993. * Emacs 19.28
  2994. * Emacs 19.29
  2995. * GNU Emacs Lisp Reference Manual Ed. 1.3 for Version 18
  2996. * GNU Emacs Lisp Reference Manual Ed. 2.4 for Version 19.29
  2997. * es 0.84
  2998. * f2c 1995.02.24
  2999. * Fileutils 3.12
  3000. * Findutils 4.1
  3001. * finger 1.37
  3002. * flex 2.5.2
  3003. * Fontutils 0.6
  3004. * g77 0.5.15
  3005. * Gawk 2.15.6
  3006. * GCC 2.6.3
  3007. * GCC 2.7.0
  3008. * GDB 4.14
  3009. * gdbm 1.7.3
  3010. * Ghostscript 2.6.2
  3011. * Ghostview 1.5
  3012. * Ghostview for Windows 1.0
  3013. * GIT 4.3.6
  3014. * gmp 1.3.2
  3015. * GNATS 3.2
  3016. * GnuGo 1.1
  3017. * gnuplot 3.5
  3018. * Graphics 0.17
  3019. * grep 2.0
  3020. * Groff 1.09
  3021. * gzip 1.2.4
  3022. * hello 1.3
  3023. * hp2xx 3.1.4
  3024. * HylaFAX 3.0.pl0
  3025. * indent 1.9.1
  3026. * ispell 3.1.18
  3027. * less 2.90
  3028. * libg++ 2.6.2
  3029. * libg++ 2.7.0
  3030. * libobjects 0.1.3
  3031. * m4 1.4
  3032. * Make 3.74
  3033. * MandelSpawn 0.07
  3034. * mkisofs 1.03GNU
  3035. * mtools 2.0.7
  3036. * MULE 2.2
  3037. * ncurses 1.9.1
  3038. * Nethack 3.1.3
  3039. * NIHCL 3.1.4
  3040. * nvi 1.34
  3041. * OBST 3.4.3
  3042. * Octave 1.1.1
  3043. * Oleo 1.6
  3044. * p2c 1.20
  3045. * patch 2.1
  3046. * PCL 2.1
  3047. * perl 4.036
  3048. * perl 5.001
  3049. * pine 3.91
  3050. * Programming in Emacs Lisp: An Introduction Ed. 1.03 for Version 19
  3051. * ptx 0.4
  3052. * rc 1.4
  3053. * RCS 5.7
  3054. * recode 3.4
  3055. * regex 0.12
  3056. * rx 0.05
  3057. * screen 3.6.2
  3058. * sed 2.05
  3059. * Sharutils 4.1
  3060. * Shellutils 1.12
  3061. * Shogi 1.2p03
  3062. * Smalltalk 1.1.1
  3063. * Superopt 2.5
  3064. * tar 1.11.8
  3065. * Termcap 1.2
  3066. * TeX 3.1415
  3067. * Texinfo 3.6
  3068. * Textutils 1.12
  3069. * Tile Forth 2.1
  3070. * time 1.6
  3071. * tput 1.0
  3072. * ucblogo
  3073. * UUCP 1.05
  3074. * wdiff 0.5
  3075. * X11R6
  3076. * xboard 3.2.pl2
  3077. * xshogi 1.2p03
  3078. * Ygl 2.9.5
  3079. May 1994 Source Code CD-ROM
  3080. ............................
  3081. We still have the fourth edition of our Source CD, at a reduced price, while
  3082. supplies last. This CD has Edition 2.3 for version 19.25 of the `GNU Emacs
  3083. Lisp Reference Manual' & some additional software; not all FSF distributed
  3084. software is included (*note Source Code CD-ROMs::.). It contains these
  3085. packages:
  3086. *acm 4.5
  3087. *Autoconf 1.10
  3088. *BASH 1.13.5
  3089. *bc 1.02
  3090. *Binutils 2.3
  3091. *Bison 1.22
  3092. *C Library 1.08
  3093. *Calc 2.02c
  3094. *Chess 4.0.69
  3095. *CLISP 1994.01.08
  3096. *Common Lisp 1.0
  3097. *cpio 2.3
  3098. *CVS 1.3
  3099. *dc 0.2
  3100. *DejaGnu 1.2
  3101. *Diffutils 2.6
  3102. *dld 3.2.3
  3103. *doschk 1.1
  3104. *ecc 1.2.1
  3105. *ed 0.1
  3106. *elib 0.06
  3107. *Emacs 18.59
  3108. *Emacs 19.23
  3109. *es 0.84
  3110. *f2c 1994.04.14
  3111. *Fileutils 3.9
  3112. *find 3.8
  3113. *finger 1.37
  3114. *flex 2.4.6
  3115. *Fontutils 0.6
  3116. *GAS 1.36.utah
  3117. *GAS 2.2
  3118. *Gawk 2.15.4
  3119. *GCC 2.5.8
  3120. *GDB 4.12
  3121. *gdbm 1.7.1
  3122. *Ghostscript 2.6.1
  3123. *Ghostview 1.5
  3124. *Ghostview for Windows 1.0
  3125. *gmp 1.3.2
  3126. *GNATS 3.2
  3127. *GnuGo 1.1
  3128. *gnuplot 3.5
  3129. *gperf 2.1a
  3130. *Graphics 0.17
  3131. *grep 2.0
  3132. *Groff 1.09
  3133. *gzip 1.2.4
  3134. *hello 1.3
  3135. *hp2xx 3.1.4
  3136. *indent 1.9.1
  3137. *ispell 4.0
  3138. *libg++ 2.5.3
  3139. *m4 1.1
  3140. *Make 3.71
  3141. *MandelSpawn 0.07
  3142. *mtools 2.0.7
  3143. *MULE 1.0
  3144. *NetFax 3.2.1
  3145. *Nethack 3.1.3
  3146. *NIHCL 3.0
  3147. *nvi 1.11
  3148. *Octave 1.0
  3149. *Oleo 1.5
  3150. *p2c 1.20
  3151. *patch 2.1
  3152. *PCL 1993.03.18
  3153. *perl 4.036
  3154. *ptx 0.3
  3155. *rc 1.4
  3156. *RCS 5.6.0.1
  3157. *recode 3.3
  3158. *regex 0.12
  3159. *screen 3.5.2
  3160. *sed 2.05
  3161. *shellutils 1.9.4
  3162. *Shogi 1.1.02
  3163. *Smalltalk 1.1.1
  3164. *Superopt 2.3
  3165. *tar 1.11.2
  3166. *Termcap 1.2
  3167. *TeX 3.1
  3168. *Texinfo 3.1
  3169. *Textutils 1.9.1
  3170. *Tile Forth 2.1
  3171. *time 1.6
  3172. *tput 1.0
  3173. *UUCP 1.05
  3174. *uuencode 1.0
  3175. *wdiff 0.04
  3176. *X11R6
  3177. *xboard 3.0.9
  3178. *xshogi 1.2.02
  3179. November 1993 Source Code CD-ROM
  3180. .................................
  3181. We still have the third edition of our Source CD, at a reduced price, while
  3182. supplies last. It contains X11R5, as we feel that people should have a
  3183. choice between X11R5 and X11R6 until the latter is stable. This CD has
  3184. Edition 2.2 for version 19 of the `GNU Emacs Lisp Reference Manual' & some
  3185. additional software; not all FSF distributed software is included (*note
  3186. Source Code CD-ROMs::.). It contains these packages:
  3187. * acm 3.1
  3188. * Autoconf 1.7
  3189. * BASH 1.13.4
  3190. * bc 1.02
  3191. * Binutils 1.9 2.3
  3192. * Bison 1.22
  3193. * C Library 1.06.7
  3194. * Calc 2.02b
  3195. * Chess 4.0p62
  3196. * CLISP 93.11.08
  3197. * cpio 2.3
  3198. * CVS 1.3
  3199. * dc 0.2
  3200. * DejaGnu 1.0.1
  3201. * Diffutils 2.6
  3202. * dld 3.2.3
  3203. * doschk 1.1
  3204. * ecc 1.2.1
  3205. * elib 0.06
  3206. * Emacs 18.59
  3207. * Emacs 19.21
  3208. * es 0.84
  3209. * f2c 1993.04.28
  3210. * Fileutils 3.9
  3211. * find 3.8
  3212. * finger 1.37
  3213. * flex 2.3.8
  3214. * Fontutils 0.6
  3215. * GAS 1.36.utah
  3216. * GAS 1.38.1
  3217. * GAS 2.2
  3218. * Gawk 2.15.3
  3219. * GCC 2.5.4
  3220. * GDB 4.11
  3221. * gdbm 1.7.1
  3222. * Ghostscript 2.6.1
  3223. * Ghostview 1.5
  3224. * Ghostview for Windows 1.0
  3225. * gmp 1.3.2
  3226. * GNATS 3.01
  3227. * GnuGo 1.1
  3228. * gnuplot 3.5
  3229. * cperf 2.1a
  3230. * Graphics 0.17
  3231. * grep 2.0
  3232. * Groff 1.08
  3233. * gzip 1.2.4
  3234. * hello 1.3
  3235. * hp2xx 3.1.3a
  3236. * indent 1.8
  3237. * Ispell 4.0
  3238. * less 177
  3239. * libg++ 2.5.1
  3240. * m4 1.1
  3241. * Make 3.69.1
  3242. * MandelSpawn 0.06
  3243. * mtools 2.0.7
  3244. * MULE 1.0
  3245. * NetFax 3.2.1
  3246. * Nethack 3.1.3
  3247. * NIHCL 3.0
  3248. * Oleo 1.5
  3249. * p2c 1.20
  3250. * patch 2.1
  3251. * PCL 93.03.18
  3252. * perl 4.036
  3253. * ptx 0.3
  3254. * rc 1.4
  3255. * RCS 5.6.0.1
  3256. * recode 3.2.4
  3257. * regex 0.12
  3258. * screen 3.5.2
  3259. * sed 1.18 2.03
  3260. * Shellutils 1.9.1
  3261. * Shogi 1.1p02
  3262. * Smalltalk 1.1.1
  3263. * Superopt 2.3
  3264. * tar 1.11.2
  3265. * Termcap 1.2
  3266. * TeX 3.1
  3267. * Texinfo 3.1
  3268. * Tile Forth 2.1
  3269. * time 1.6
  3270. * time 1.6
  3271. * tput 1.0
  3272. * UUCP 1.04
  3273. * uuencode 1.0
  3274. * wdiff 0.04
  3275. * X11R5
  3276. MS-DOS Diskettes
  3277. ****************
  3278. The FSF distributes some of the GNU software ported to MS-DOS, on 3.5inch
  3279. 1.44MB diskettes. These disks have both sources and executables.
  3280. DJGPP Diskettes
  3281. ---------------
  3282. We offer DJGPP on 30 diskettes. For further details, see *Note GNU
  3283. Software::. The DJGPP diskettes contain the following:
  3284. * bc 1.03
  3285. * Binutils 2.4
  3286. * Bison 1.22
  3287. * cpio 2.3
  3288. * Diffutils 2.6
  3289. * doschk 1.1
  3290. * Fileutils 3.9
  3291. * Findutils 3.8
  3292. * flex 2.4.7
  3293. * GAS 2.4
  3294. * Gawk 2.15.5
  3295. * GCC 2.6.0
  3296. * GDB 4.12
  3297. * Ghostscript 2.6.1
  3298. * Groff 1.09
  3299. * gzip 1.24
  3300. * hello 1.3
  3301. * indent 1.9
  3302. * ispell 4.0
  3303. * libg++ 2.6.1
  3304. * m4 1.2
  3305. * Make 3.71
  3306. * patch 2.1
  3307. * sed 1.18
  3308. * shellutils 1.9
  3309. * Texinfo 3.1
  3310. * texutils 1.9
  3311. * wdiff 0.04
  3312. Emacs Diskettes
  3313. ---------------
  3314. Two versions of GNU Emacs are included on the Emacs diskettes we distribute:
  3315. GNU Emacs version 19.28 handles 8-bit character sets; the other, MULE version
  3316. 2.1, handles 16-bit character sets including Kanji.
  3317. Selected Utilities Diskettes
  3318. ----------------------------
  3319. The GNUish MS-DOS Project ported GNU software to PC compatibles. Though
  3320. GNUish is no longer active, users still ask for these ports done some years
  3321. ago. We offer these ports on five diskettes. To find out how to get them on
  3322. the Internet, you can FTP files `/pub/gnu/MicrosPorts/MSDOS*' from a GNU FTP
  3323. host (listed in *Note How to Get GNU Software::). In general, the ports run
  3324. on 8086/80286-based 16-bit machines; an 80386 is not required. Some are
  3325. necessarily missing features. Included are: `cpio', `diff', `find', `flex',
  3326. `gdbm', `grep', `indent', `less', `m4', `make', `ptx', RCS, `sed', `shar',
  3327. `sort', & Texinfo.
  3328. Windows Diskette
  3329. ----------------
  3330. We offer GNU Chess and `gnuplot' for Microsoft Windows on a single diskette.
  3331. Tape & CD-ROM Subscription Service
  3332. **********************************
  3333. If you do not have net access, our subscription service enables you to stay
  3334. current with the latest GNU developments. For a one-time cost equivalent to
  3335. three tapes or CD-ROMs (plus shipping in some cases), we will ship you four
  3336. new versions of the tape of your choice or the Source Code CD-ROM. The tapes
  3337. are sent each quarter; the CD-ROMs are sent as they are issued (currently
  3338. twice a year, but we hope to make it more frequent.)
  3339. Regularly, we will send you a new version of a Lisps/Emacs, Languages,
  3340. Utilities, or X Window System (X11R6) Required tape, or the Source CD-ROM.
  3341. The MIT Scheme and X Window System Optional tapes are not changed often
  3342. enough to warrant quarterly updates. We do not yet know if we will be
  3343. offering subscriptions to the Compiler Tools Binaries or our new Books with
  3344. CD-ROM.
  3345. Since Emacs 19 is on the Lisps/Emacs Tape and the Source CD-ROM, a
  3346. subscription to either is an easy way to keep current with Emacs 19 as it
  3347. evolves.
  3348. A subscription is an easy way to keep up with the regular bug fixes to the X
  3349. Window System. We update the X11R6 Required tape as fixes and patches are
  3350. issued throughout the year. Each edition of the *Note Source Code CD-ROMs::,
  3351. also has updated sources for the required part of the X Window System.
  3352. Please note: In two cases, you must pay 4 times the normal shipping required
  3353. for a single order when you pay for each subscription. If you're in Alaska,
  3354. Hawaii, or Puerto Rico you must add $20.00 for shipping for each
  3355. subscription. If you're outside of U.S., Canada, and Puerto Rico, you must
  3356. add $80.00 for each subscription. See "Unix and VMS Software" & "Shipping
  3357. Instructions" on the *note Free Software Foundation Order Form::..
  3358. The Deluxe Distribution
  3359. ***********************
  3360. The Free Software Foundation has been asked repeatedly to create a package
  3361. that provides executables for all of our software. Normally we offer only
  3362. sources. In addition to providing binaries with the source code, the Deluxe
  3363. Distribution includes a complete set of our printed manuals and reference
  3364. cards.
  3365. The FSF Deluxe Distribution contains the binaries and sources to hundreds of
  3366. different programs including GNU Emacs, the GNU C Compiler, the GNU Debugger,
  3367. the complete X Window System, and all the GNU utilities.
  3368. We will make a Deluxe Distribution for most machines/operating systems. We
  3369. may be able to send someone to your office to do the compilation, if we can't
  3370. find a suitable machine close to us! However, we can only compile the
  3371. programs that already support your chosen machine/system - porting is a
  3372. separate matter (to commission a port, consult the GNU Service Directory;
  3373. details in *Note Free Software Support::). Compiling all these programs
  3374. takes time; a Deluxe Distribution for an unusual machine will take longer to
  3375. produce than one for a common machine. Please contact the FSF Office with
  3376. any questions.
  3377. We supply the software in one of these tape formats in Unix `tar' format:
  3378. 1600 or 6250bpi 1/2in reel, Sun DC300XLP 1/4in cartridge - QIC24,
  3379. Hewlett-Packard 16-track DC600HC 1/4in cartridge, IBM RS/6000 1/4in cartridge
  3380. - QIC 150, Exabyte 8mm cartridge, or DAT 4mm cartridge. If your computer
  3381. cannot read any of these, please contact us to see if we can handle your
  3382. format.
  3383. The manuals included are one each of the `Bison', `Calc', `Gawk', `GNU C
  3384. Compiler', `GNU C Library', `GDB', `Flex', `GNU Emacs Lisp Reference',
  3385. `Programming in Emacs Lisp: An Introduction', `Make', `Texinfo', & `Termcap'
  3386. manuals; six copies of the `GNU Emacs' manual; and a packet of ten reference
  3387. cards each for Emacs, Bison, Calc, Flex, & GDB. Every Deluxe Distribution
  3388. also has a copy of the latest editions of our CD-ROMs (including the MS-DOS &
  3389. Debian GNU/Linux Books with CD when they are available) that have sources of
  3390. our software & compiler tool binaries for some systems. The MS-DOS CD is in
  3391. ISO 9660 format. The other CDs are in ISO 9660 format with Rock Ridge
  3392. extensions.
  3393. The price of the Deluxe Distribution is $5000 (shipping included). These
  3394. sales provide enormous financial assistance to help the FSF develop more free
  3395. software. To order, please fill out the "Deluxe Distribution" section on the
  3396. *note Free Software Foundation Order Form::. and send it to:
  3397. Free Software Foundation, Inc.
  3398. 59 Temple Place -- Suite 330
  3399. Boston, MA 02111--1307
  3400. USA
  3401. Telephone: +1-617-542-5942
  3402. Fax (including Japan): +1-617-542-2652
  3403. Free Dial Fax (in Japan):
  3404. 0031-13-2473 (KDD)
  3405. 0066-3382-0158 (IDC)
  3406. Electronic mail: gnu@prep.ai.mit.edu
  3407. GNU Documentation
  3408. *****************
  3409. GNU is dedicated to having quality, easy-to-use online & printed
  3410. documentation. GNU manuals are intended to explain underlying concepts,
  3411. describe how to use all the features of each program, & give examples of
  3412. command use. GNU manuals are distributed as Texinfo source files, which
  3413. yield both typeset hardcopy via the TeX document formatting system and online
  3414. hypertext display via the menu-driven Info system. Source for these manuals
  3415. comes with our software; these are the manuals that we publish as printed
  3416. books as well. See the *note Free Software Foundation Order Form::., to
  3417. order them.
  3418. Most GNU manuals are bound as soft cover books with "lay-flat" bindings.
  3419. This allows you to open them so they lie flat on a table without creasing the
  3420. binding. They have an inner cloth spine and an outer cardboard cover that
  3421. will not break or crease as an ordinary paperback will. Currently, the
  3422. `GDB', `Emacs', `Emacs Lisp Reference', `Programming in Emacs Lisp: An
  3423. Introduction', `GAWK', `Make', `Bison', & `Texinfo' manuals have this
  3424. binding. The other GNU manuals also lie flat when opened, using a GBC or
  3425. Wire-O binding. All our manuals are 7in by 9.25in except the 8.5in by 11in
  3426. `Calc' manual.
  3427. The edition number of the manual and version number of the program listed
  3428. after each manual's name were current at the time this Bulletin was published.
  3429. `Debugging with GDB' (Edition 4.12 for Version 4.14) tells how to use the GNU
  3430. Debugger, run your program under debugger control, examine and alter data,
  3431. modify a program's flow of control, and use GDB through GNU Emacs.
  3432. The `Emacs Manual' (11th Edition for Version 19.29) describes editing with
  3433. GNU Emacs. It explains advanced features, including outline mode and regular
  3434. expression search; how to use special modes for programming in languages like
  3435. C++ and TeX; how to use the `tags' utility; how to compile and correct code;
  3436. how to make your own keybindings; and other elementary customizations.
  3437. `Programming in Emacs Lisp: An Introduction' (Edition 1.03) is for people who
  3438. are not necessarily interested in programming, but who do want to customize
  3439. or extend their computing environment. If you read it in Emacs under Info
  3440. mode, you can run the sample programs directly.
  3441. The `GNU Emacs Lisp Reference Manual' (Edition 2.4 for Version 19.29) covers
  3442. this programming language in depth, including data types, control structures,
  3443. functions, macros, syntax tables, searching/matching, modes, windows,
  3444. keymaps, byte compilation, and the operating system interface.
  3445. The `GAWK Manual' (Edition 0.16 for Version 2.16) tells how to use the GNU
  3446. implementation of `awk'. It is written for those who have never used `awk'
  3447. and describes the features of this powerful string and record manipulation
  3448. language.
  3449. The `Make Manual' (Edition 0.46 for Version 3.72) describes GNU `make', a
  3450. program used to rebuild parts of other programs. The manual tells how to
  3451. write "makefiles", which specify how a program is to be compiled and how its
  3452. files depend on each other. Included are an introductory chapter for novice
  3453. users and a section about automatically generated dependencies.
  3454. The `Flex Manual' (Edition 1.03 for Version 2.3.7) teaches you to write a
  3455. lexical scanner definition for the `flex' program to create a C++ or C-coded
  3456. scanner that recognizes the patterns defined. You need no prior knowledge of
  3457. scanners.
  3458. The `Bison Manual' (December 1993 Edition for Version 1.23) teaches you how
  3459. to write context-free grammars for the Bison program that convert into
  3460. C-coded parsers. You need no prior knowledge of parser generators.
  3461. `Using and Porting GNU CC' (September 1994 Edition for Version 2.6) tells how
  3462. to run, install, and port the GNU C Compiler to new systems. It lists new
  3463. features and incompatibilities of GCC, but people not familiar with C will
  3464. still need a good reference on the C programming language. It also covers
  3465. G++. We are doing limited copier runs of this manual until it becomes more
  3466. stable.
  3467. The `Texinfo Manual' (Edition 2.21 for Version 3) explains the markup
  3468. language that produces our online Info documentation & typeset hardcopies.
  3469. It tells you how to make tables, lists, chapters, nodes, indexes, cross
  3470. references, & how to catch mistakes. This second edition describes over 50
  3471. new commands.
  3472. The `Termcap Manual' (2nd Edition for Version 1.2), often described as "twice
  3473. as much as you ever wanted to know about termcap," details the format of the
  3474. termcap database, the definitions of terminal capabilities, and the process
  3475. of interrogating a terminal description. This manual is primarily for
  3476. programmers.
  3477. The `C Library Reference Manual' (Edition 0.06 for Version 1.09) describes
  3478. most of the facilities of the GNU C library, including both what Unix calls
  3479. "library functions" and "system calls." We are doing limited copier runs of
  3480. this manual until it becomes more stable. Please send corrections and
  3481. improvements to `bug-glibc-manual@prep.ai.mit.edu'.
  3482. The `Emacs Calc Manual' (Edition 2.02 for Version 2.02) is both a tutorial
  3483. and a reference manual. It tells how to do ordinary arithmetic, how to use
  3484. Calc for algebra, calculus, and other forms of mathematics, and how to extend
  3485. Calc.
  3486. -----------------------------------------------------------------------------
  3487. *Language is thought, and the state has no right getting mixed up in it.*
  3488. - Laurent Dominati, a member of the conservative Union
  3489. for French Democracy, referring to a recent attempt to
  3490. legislate usage of the French language
  3491. -----------------------------------------------------------------------------
  3492. How to Get GNU Software
  3493. ***********************
  3494. All the software & publications from the Free Software Foundation are
  3495. distributed with permission to copy and redistribute. One way to get GNU
  3496. software is to copy it from someone else who has it. You can also get GNU
  3497. software directly from the FSF by ordering diskettes, tapes, CD-ROMs, or
  3498. Books with CD-ROMs. Such orders provide most of the funds for the FSF staff
  3499. to develop more free software, so please support our work by ordering from
  3500. the FSF if you can. See the *note Free Software Foundation Order Form::..
  3501. There are also third party groups who distribute our software; they do not
  3502. work with us, but can provide our software in other forms. Some are listed
  3503. in *Note Free Software for Microcomputers::; also see *Note Free Software
  3504. Redistributors Donate::. Please note that the Free Software Foundation is
  3505. *not* affiliated with them in any way and is *not* responsible for either the
  3506. currency of their versions or the swiftness of their responses.
  3507. If you decide to do business with a commercial distributor of free software,
  3508. ask them how much they do to assist free software development, e.g., by
  3509. contributing money to free software development projects or by writing free
  3510. software themselves for general use. By basing your decision partially on
  3511. this factor, you can help encourage support for free software development.
  3512. Our main FTP host is very busy & limits the number of logins. Please use one
  3513. of these other Internet sites that also provide GNU software via FTP
  3514. (program: `ftp', user: `anonymous', password: YOUR E-MAIL ADDRESS, mode:
  3515. `binary'). If you have FTP access but can't reach one of these hosts, you
  3516. can get the software the same way from GNU's main FTP host, `prep.ai.mit.edu'
  3517. (IP address: `18.159.0.42'). For more details & additional hosts, get the
  3518. files `/pub/gnu/GETTING.GNU.SOFTWARE' and `/pub/gnu/GNUinfo/FTP'.
  3519. Most of the files on the FTP sites are compressed with `gzip' to lessen FTP
  3520. traffic. Refer to the `/pub/gnu/=README-about-.gz-files' on each FTP site
  3521. for instructions on uncompressing them. `uncompress' and `unpack' *do not
  3522. work*!
  3523. * Africa: `ftp.sun.ac.za'.
  3524. * Asia: `utsun.s.u-tokyo.ac.jp', `ftp.cs.titech.ac.jp',
  3525. `cair-archive.kaist.ac.kr'.
  3526. * Australia: `archie.au'
  3527. * Canada: `ftp.cs.ubc.ca'.
  3528. * Europe: `ugle.unit.no', `ftp.stacken.kth.se', `isy.liu.se',
  3529. `ftp.vms.stacken.kth.se' (in `[.GNU-VMS]'), `ftp.mcc.ac.uk',
  3530. `unix.hensa.ac.uk' (in `/mirrors/uunet/systems/gnu'), `ftp.win.tue.nl',
  3531. `ftp.informatik.tu-muenchen.de', `ftp.informatik.rwth-aachen.de',
  3532. `ftp.funet.fi', `ftp.denet.dk', `ftp.eunet.ch', `nic.switch.ch',
  3533. `irisa.irisa.fr', `ftp.univ-lyon1.fr', `archive.eu.net'.
  3534. * USA: `labrea.stanford.edu', `ftp.uu.net' (in `/systems/gnu'),
  3535. `ftp.digex.net', `ftp.cs.columbia.edu', `vixen.cso.uiuc.edu',
  3536. `wuarchive.wustl.edu', `mango.rsmas.miami.edu' (VMS GCC),
  3537. `ftp.kpc.com', `ftp.hawaii.edu', `gatekeeper.dec.com'.
  3538. Those on JANET can look on host `src.doc.ic.ac.uk' in `/gnu'. Those who can
  3539. UUCP can get UUCP instructions via electronic mail from: info@contrib.de
  3540. (Europe). For those without Internet access, see *Note Free Software
  3541. Support::, for information on getting electronic mail and file transfer via
  3542. UUCP.
  3543. Other GPL'ed Software
  3544. *********************
  3545. Here are two examples of copylefted software that we do not presently
  3546. distribute. FTP a more complete list from `/pub/gnu/GPLedSoftware' from a
  3547. GNU FTP host (listed in *Note How to Get GNU Software::). Please let us know
  3548. of additional programs we should mention. We don't list GNU Emacs Lisp
  3549. Libraries. Host `archive.cis.ohio-state.edu' has a list of those you can FTP
  3550. in file `/pub/gnu/emacs/elisp-archive/LCD-datafile.Z'.
  3551. * WN, an HTTP (or WWW) server
  3552. WN is a WWW (World Wide Web) server, written in C, which runs under
  3553. Unix. WN serves the HTTP/1.0 protocol. For more information, see
  3554. `http://hopf.math.nwu.edu/', contact the author, `john@math.nwu.edu',
  3555. John Franks, or FTP it from `ftp.acns.nwu.edu:/pub/wn/wn.tar.gz'.
  3556. * GCT, a Test-Coverage Tool based on GCC
  3557. GCT 1.4 is a test-coverage tool based on GCC which measures how
  3558. thoroughly a test suite exercises a program. GPLed ports for Sun-3,
  3559. Sun-4, RS/6000, 68k, 88k, HP-PA, IBM 3090, Ultrix, Convex, & SCO are
  3560. available from `ftp.cs.uiuc.edu' in files `/pub/testing/gct.1.4/ftp.*'.
  3561. Send discussion list subscriptions to: `gct-request@cs.uiuc.edu', and
  3562. inquries to the author Brian Marick, `marick@cs.uiuc.edu'.
  3563. Telephone: +1-217-351-7228.
  3564. Free Software for Microcomputers
  3565. ********************************
  3566. We do not provide support for GNU software on most microcomputers because it
  3567. is peripheral to the GNU Project. However, we are willing to publish
  3568. information about groups who do support and maintain them. If you are aware
  3569. of any such efforts, please send the details, including postal addresses,
  3570. archive sites, and mailing lists, to either address on page 1.
  3571. *Note MS-DOS Diskettes:: and *Note CD-ROMs::, for microcomputer software
  3572. available from the FSF. Please do not ask us about any other software. We
  3573. do *not* maintain any of it and have *no* additional information.
  3574. * Linux (Also *note Debian GNU/Linux Book with CD-ROM::.)
  3575. Linux (named after its main author, Linus Torvalds) is a GPLed kernel
  3576. that implements POSIX.1 functionality with SysV & BSD extensions.
  3577. Complete systems (essentially variant GNU systems) based on the Linux
  3578. kernel are now available for 386/486/Pentium machines with one of these
  3579. buses: ISA, VLB, EISA, PCI. Since these systems are essentially variant
  3580. GNU systems, we call them "GNU/Linux" systems. A m68k port is in
  3581. testing (it runs on high end Amiga & Atari computers). AlphaPC & MIPS
  3582. ports are being worked on. FTP it from `tsx-11.mit.edu' in `/pub/linux'
  3583. (USA) & `nic.funet.fi' in `/pub/OS/Linux' (Europe). Ask
  3584. `linux-activists-request@niksula.hut.fi' about mailing lists. See the
  3585. USENET newsgroups, such as `comp.os.linux.misc', for discussions.
  3586. * Boston Computer Society
  3587. The BCS has numerous free programs for microcomputers, including some GNU
  3588. programs. Contact them to see what is available for your machine:
  3589. Boston Computer Society
  3590. 101 First Avenue - Suite 2
  3591. Waltham, MA 02154
  3592. USA
  3593. Telephone: +1-617-290-5700
  3594. Fax: +1-617-290-5744
  3595. Electronic-Mail: `membership@bcs.org'
  3596. World Wide Web: `http://www.bcs.org/bcs/bcs.html'
  3597. * GNU Software on the Amiga
  3598. Get Amiga ports of many GNU programs using anonymous FTP from
  3599. `ftp.funet.fi' in `/pub/amiga/gnu' (Europe). For info on (or offers to
  3600. help with) the GCC port and related projects, ask Leonard Norrgard,
  3601. `vinsci@nic.funet.fi'. For info on the GNU Emacs port, ask David Gay,
  3602. `dgay@di.epfl.ch'. Dave Gilbert, `dgilbert@pci.on.ca', coordinates work
  3603. on Emacs 19. You can get more info from a GNU FTP host (listed in *Note
  3604. How to Get GNU Software::) in file `/pub/gnu/MicrosPorts/Amiga'.
  3605. * GNU Software for Atari TOS and Atari Minix
  3606. Get Atari ports by anonymous FTP from `atari.archive.umich.edu', in
  3607. `/atari/Gnustuff', maintained by Howard Chu, `howard@lloyd.com'. The
  3608. GNU software runs on all Atari 68000 and 68030-based systems; a hard
  3609. drive and 4 MB RAM minimum are recommended for using the compilers. See
  3610. USENET newsgroups, such as `comp.sys.atari.st.tech', for discussions.
  3611. * GNU Software for OS/2
  3612. Ports of many GNU programs are on the FTP host `ftp-os2.cdrom.com' in
  3613. `/pub/os2/unix'. One of these is of GNU C/C++/Objective-C Compiler to
  3614. OS/2 2.x and OS/2 Warp, with the GNU assembler, documentation, and both
  3615. OS/2-specific BSD C libraries. This is Eberhard Mattes `emx' port,
  3616. which also features GDB and many Unix-related library functions like
  3617. `fork'. Programs compiled by this port also run on a 80386 under DOS.
  3618. It is in directory `/pub/os2/unix/emx09a'. The `emx0.9a' package offers
  3619. a port of gcc-2.6.3. To join the mailing list send email to
  3620. `listserv@eb.ele.tue.nl' containing `sub emx-list firstname lastname'.
  3621. FSF T-shirt
  3622. ***********
  3623. Our latest T-shirt has artwork by Berkeley, CA artist Etienne Suvasa. The
  3624. front has the ever-popular picture of GNArnold from the `Flex Manual', while
  3625. the back has the Preamble to the GNU General Public License.
  3626. They are available in two colors, Natural & Black. Natural is an off-white,
  3627. unbleached, undyed, environment-friendly cotton, printed with black ink, & is
  3628. great for tye-dyeing or displaying as is. Black is printed with white ink &
  3629. is perfect for late night hacking. All shirts are thick 100% cotton, & are
  3630. available in sizes M, L, XL, & XXL. This shirt makes a great gift for your
  3631. favorite hacker!
  3632. -----------------------------------------------------------------------------
  3633. *We don't have a patent on irony and satire; those tools are available
  3634. for you to use in your own work.*
  3635. - Guerrilla Girls, a New York City performance group
  3636. -----------------------------------------------------------------------------
  3637. Project GNU Wish List
  3638. *********************
  3639. Wishes for this issue are for:
  3640. * Graphical free software applications for ordinary users who are not
  3641. programmers. Oleo extensions and other free software for business, such
  3642. as accounting and project management programs.
  3643. * Volunteers to distribute this Bulletin at technical conferences, trade
  3644. shows, local and national user group meetings, etc. Volunteers to get
  3645. articles into their user group newsletters. Please phone or fax the
  3646. numbers on page 1, or email `gnu@prep.ai.mit.edu' to make arrangements.
  3647. * Boston area volunteers for various tasks in the FSF Distribution and
  3648. Programming Offices. Please contact us at either address on page 1.
  3649. * Volunteers to help write programs and documentation. Send mail to
  3650. `gnu@prep.ai.mit.edu' for the task list and coding standards.
  3651. * Volunteers to build binaries for systems not yet on the *Note Compiler
  3652. Tools Binaries CD-ROM:: (especially for systems that don't come with a C
  3653. compiler). Please contact us at either address on page 1.
  3654. * SCSI tape drives for 4mm DAT cartridge tapes, 8mm Exabyte cartridge
  3655. tapes, and 1600 or 6250bpi 1/2inch reel to reel tapes.
  3656. * 600+ megabyte SCSI disks to give us more space to develop software.
  3657. * Pentium, 486, or 386 PC laptops.
  3658. * Pentium, 486, or 386 PC compatibles with 200+ MB of disk & Ethernet
  3659. cards. High end HP-300, HP-700, & HP-800 workstations. Sun
  3660. SPARCstations. Sixteen or thirty-two 1 Meg SIMMs for a Sun 4/110.
  3661. * Companies to lend good programmers & technical writers for at least six
  3662. months. True wizards may be welcome for less time, but we have found
  3663. that this is the minimum time for a programmer to finish a worthwhile
  3664. project.
  3665. * Professors who might be interested in sponsoring or hosting research
  3666. assistants to do actual GNU development, with partial FSF support.
  3667. * Speech and character recognition software and systems (if the devices
  3668. aren't too weird), with the device drivers if possible. This would help
  3669. the productivity of partially disabled people (including a few we know).
  3670. * New quotes and ideas for articles in the GNU's Bulletin. We particularly
  3671. like to highlight organizations involved with free information exchanges,
  3672. software that uses the GNU General Public License and companies providing
  3673. free software support as a primary business.
  3674. * Information about free software or developers of free software that we
  3675. may not know about. Often, we only find out about interesting projects
  3676. because a user writes and asks us why we have not mentioned those
  3677. projects!
  3678. * Copies of newspaper and journal articles mentioning the GNU Project or
  3679. GNU software. Send these to the address on page 1, or send a citation
  3680. to `gnu@prep.ai.mit.edu'.
  3681. * Money. If you use & appreciate our software, please send a
  3682. contribution. One way to help is to order a tape, diskette, CD-ROM, or
  3683. Book with CD-ROM from us. A business can make a larger contribution by
  3684. ordering a *Note Deluxe Distribution::. This is especially helpful if
  3685. you work for an organization where the word "donation" is anathema.
  3686. Because of the value received, the full dollar amounts of such donations
  3687. are not tax deductible as charitable contributions; however, they may
  3688. qualify as a business expense.
  3689. Thank GNUs
  3690. **********
  3691. Thanks to Jill and Professor Donald Knuth of Stanford University for their
  3692. regular, substantial contributions. Thanks to John Romkey for his large gift.
  3693. Thanks to all those mentioned elsewhere in this and past Bulletins.
  3694. Thanks to the many companies and organizations who have bought our Deluxe
  3695. Distribution package.
  3696. Thanks to the Artificial Intelligence Laboratory, Laboratory for Computer
  3697. Science, and Project Athena all at MIT for their invaluable assistance.
  3698. Thanks to the Hewlett Packard Computer Users' Association in Japan for their
  3699. quarterly donations. Thanks to the Nihon Sun Users Group & Hitachi, Ltd. for
  3700. their generous contributions. Thanks to Addison-Wesley Publishers Japan Ltd.,
  3701. A.I. Soft, Village Center, Inc., ASCII Corporation, & many others in Japan,
  3702. for their donations & support. For their help in Japan, thanks to:
  3703. Nobuyuki Hikichi, Mieko Hikichi, Ken'ichi Handa, Prof. Masayuki Ida, &
  3704. Yukitoshi Fujimura.
  3705. For donating booths at their conferences, thanks to: the USENIX Association
  3706. at Winter USENIX 95; and Dave Crowley and others at HP at the HPUX Developers
  3707. Conference. Thanks to all the volunteers who helped the GNU Project at these
  3708. and other conferences. Thanks to Wired Magazine and Barry Meikle of the
  3709. University of Toronto Bookstore for donating ad space in their separate
  3710. publications. Thanks to Warren A. Hunt, Jr. and Computational Logic, Inc.
  3711. for their continued donations and support. Thanks again to Cygnus Support
  3712. for assisting the GNU Project in many ways.
  3713. Thanks to all those who have lent or donated machines, including: Tadashi
  3714. Kobayashi of Toshiba Corporation & Shinichi Mochizuki of Toshiba America for
  3715. a T4850 notebook computer; Cygnus Support for a Sun SPARCstation; Delta
  3716. Microsystems for a new Exabyte tape drive; an anonymous donor for a 4mm DAT
  3717. cartridge drive; Concentra, Inc. for four HP workstations; Network Computing
  3718. Devices, Inc. for three NCD X-terminals; Russ Button for two SCSI disk drives;
  3719. Doug Lewan for a Sun-3/60; Computer Publishing Group, publishers of
  3720. `SunExpert' & `RS/6000', for several Sun workstations; Simson Garfinkel for
  3721. an NCD X-terminal; Benjamin Cline for a Xylogics SMD controller; IBM Corp.
  3722. for an Exabyte tape drive & an RS/6000; Hewlett-Packard for a dozen computers;
  3723. CMU's Mach Project for a Sun-3/60; Intel Corp. for their 386 machine; NeXT
  3724. for their workstation; MIT's Media Laboratory for a HP 68020; SONY Corp. &
  3725. Software Research Associates, Inc., both of Tokyo, for three SONY News
  3726. workstations; MIT's Laboratory for Computer Science for the DEC MicroVAX; the
  3727. Open Software Foundation for two Compaq 386s; an anonymous donor for a
  3728. Sun-3/280; Liant Software Corp. for 5 VT100s; Jerry Peek for a 386 machine;
  3729. Interleaf, Inc., for the loan of a scanner; several anonymous donors for 8
  3730. IBM RT/PCs; & Rocky Bernstein for much IBM RT/PC hardware & manuals.
  3731. Thanks to all who have contributed ports and extensions, as well as all who
  3732. have sent in other source code, documentation, and good bug reports. Thanks
  3733. to all those who sent money and offered other kinds of help.
  3734. Thanks to all those who support us by ordering t-shirts, manuals, reference
  3735. cards, distribution tapes, diskettes, CD-ROMs, and Books with CD-ROMs.
  3736. The creation of this Bulletin is our way of thanking all who have expressed
  3737. interest in what we are doing.
  3738. Donations Translate Into Free Software
  3739. **************************************
  3740. If you appreciate Emacs, GNU CC, Ghostscript, and other free software, you
  3741. may wish to help us make sure there is more in the future--remember,
  3742. *donations translate into more free software!*
  3743. Your donation to us is tax-deductible in the United States. We gladly accept
  3744. *any* currency, although the U.S. dollar is the most convenient. If your
  3745. employer has a matching gifts program for charitable donations, please arrange
  3746. to: add the FSF to the list of organizations for your employer's matching
  3747. gifts program; and have your donation matched (note *Note Cygnus Matches
  3748. Donations!::). If you do not know, please ask your personnel department.
  3749. Circle amount you are donating, cut out this form, and send it with your
  3750. donation to:
  3751. Free Software Foundation
  3752. 59 Temple Place -- Suite 330
  3753. Boston, MA 02111-1307
  3754. USA
  3755. $500 $250 $100 $50 other $________
  3756. Other currency:________
  3757. You can charge a donation to any of Carte Blanche, Diner's Club, JCB,
  3758. Mastercard, Visa, or American Express. Charges may also be faxed to
  3759. +1-617-542-2652. Individuals in Japan who are unable to place international
  3760. calls may use the "free dial" numbers: 0031-13-2473 (KDD) and
  3761. 0066-3382-0158 (IDC).
  3762. Card type: __________________ Expiration Date: _____________
  3763. Account Number: _____________________________________________
  3764. Cardholder's Signature: _____________________________________
  3765. Name: _______________________________________________________
  3766. Street Address: _____________________________________________
  3767. City/State/Province: ________________________________________
  3768. Zip Code/Postal Code/Country: _______________________________
  3769. Cygnus Matches Donations!
  3770. *************************
  3771. To encourage cash donations to the Free Software Foundation, Cygnus Support
  3772. will continue to contribute corporate funds to FSF to accompany gifts by its
  3773. employees, and by its customers and their employees.
  3774. Donations payable to the Free Software Foundation should be sent by eligible
  3775. persons to Cygnus Support, which will add its gifts and forward the total to
  3776. the FSF each quarter. The FSF will provide the contributor with a receipt to
  3777. recognize the contribution (which is tax-deductible on U.S. tax returns).
  3778. For more information, please contact Cygnus:
  3779. Cygnus Support
  3780. 1937 Landings Drive
  3781. Mountain View, CA 94043
  3782. USA
  3783. Telephone: 415-903-1400
  3784. +1-800-Cygnus1 (-294-6871)
  3785. Fax: 415-903-0122
  3786. Electronic-Mail: `info@cygnus.com'
  3787. FTP: `ftp.cygnus.com'
  3788. WWW: `http://www.cygnus.com/'
  3789. Free Software Foundation Order Form
  3790. ***********************************
  3791. All items are distributed with permission to copy and to redistribute.
  3792. Texinfo source for each manual and source for each reference card is on
  3793. the appropriate tape, diskette, or CD-ROM; the prices for these magnetic
  3794. media do not include printed documentation. All items are provided on
  3795. an ``as is'' basis, with no warranty of any kind. Please allow six
  3796. weeks for delivery (though it won't usually take that long).
  3797. PRICE AND CONTENTS MAY CHANGE WITHOUT NOTICE AFTER January 31, 1996.
  3798. Unix and VMS Software
  3799. ---------------------
  3800. These tapes in the formats indicated (*note Tapes::., for contents):
  3801. Please circle the dollar amount for each tape you order.
  3802. Reel to Sun (1) HP IBM (2) Exabyte DAT
  3803. reel RS/6000
  3804. Unix tar Unix tar Unix tar Unix tar Unix tar Unix tar
  3805. 9-track QIC-24 16-track QIC-150
  3806. 1600 bpi DC300XLP DC600HC DC600A
  3807. 1/2" reel 1/4" c.t. 1/4" c.t. 1/4" c.t. 8mm c.t. 4mm c.t.
  3808. (c.t. = cartridge tape)
  3809. Lisps/Emacs $200 $210 $230 $215 (3) $205 $225
  3810. Languages $200 $210 $230 $215 $205 $225
  3811. Utilities $200 $210 $230 $215 $205 $225
  3812. 4.4BSD-Lite $200 $210 $230 $215 $205 $225
  3813. Scheme $200 $210 $230 $215 $205 $225
  3814. X11R5-Required $200 $210 $230 $215 $205 $225
  3815. X11R5-Optional $200 $210 $230 $215 $205 $225
  3816. X11R6-Required $200 $210 $230 $215 $205 $225
  3817. X11R6-Optional $200 $210 $230 $215 $205 $225
  3818. (1) Sun tapes can be read on some other Unix systems.
  3819. (2) IBM RS/6000 tapes can be read on some other Unix systems.
  3820. (3) The IBM Emacs tape also has binaries for GNU Emacs.
  3821. Subscriptions, 4 updates for one year (*note Tape & CD-ROM Subscription Service::.):
  3822. Emacs $600 $630 $690 $645 $615 $675
  3823. Languages $600 $630 $690 $645 $615 $675
  3824. Utilities $600 $630 $690 $645 $615 $675
  3825. X11R6-Required $600 $630 $690 $645 $615 $675
  3826. Subtotal $ ______ Please put total of the above circled amounts here.
  3827. These 1600 bpi reel-to-reel 9 track 1/2" tapes, in VMS BACKUP format (aka
  3828. interchange format) (*note VMS Emacs and VMS Compiler Tapes::.):
  3829. ____ @ $195 = $ ______ VMS Emacs, GNU Emacs source & executables only.
  3830. ____ @ $195 = $ ______ VMS Compiler, GCC, GAS, and Bison source and
  3831. executables only.
  3832. FSF Deluxe Distribution
  3833. ........................
  3834. (Please call with any questions. *note Deluxe Distribution::. for machine,
  3835. operating system, and media types.):
  3836. ____ @ $5000 = $ ______ The Deluxe Distribution, with manuals, etc.
  3837. Machine: _____________________________________________________________________
  3838. Operating system: ____________________________________________________________
  3839. Media type: __________________________________________________________________
  3840. CD-ROMs, in ISO 9660 format (*note CD-ROMs::.):
  3841. ...............................................
  3842. GNU Source Code CD-ROM, Version 6 with X11R6 (*note June 1995 Source Code CD-ROM::.):
  3843. ____ @ $240 = $ ______ for corporations and other organizations.
  3844. ____ @ $ 60 = $ ______ for individuals.
  3845. Subscriptions, next 4 updates, of the Source Code CD-ROM, in ISO 9660 format
  3846. (*note Tape & CD-ROM Subscription Service::.):
  3847. ____ @ $720 = $ ______ for corporations and other organizations.
  3848. ____ @ $180 = $ ______ for individuals.
  3849. GNU Compiler Tools Binaries CD-ROM, Version 2, December 1994 Edition
  3850. (*note Compiler Tools Binaries CD-ROM::.):
  3851. ____ @ $220 = $ ______ for corporations and other organizations.
  3852. ____ @ $55 = $ ______ for individuals.
  3853. Debian GNU/Linux Book with CD-ROM - expected late fall 1995 (*note Debian GNU/Linux Book with CD-ROM::.):
  3854. ____ @ $200 = $ ______ for corporations and other organizations.
  3855. ____ @ $50 = $ ______ for individuals.
  3856. MS-DOS Software
  3857. ---------------
  3858. MS-DOS Book with CD-ROM - expected late fall 1995 (*note MS-DOS Book with CD-ROM::.):
  3859. ____ @ $180 = $ ______ for corporations and other organizations.
  3860. ____ @ $45 = $ ______ for individuals.
  3861. The following sources and executables for MS-DOS, on 3.5" 1.44MB diskettes
  3862. (*note MS-DOS Diskettes::.):
  3863. ____ @ $ 90 = $ ______ Emacs diskettes, GNU Emacs, for 80386 and up.
  3864. ____ @ $ 80 = $ ______ DJGPP diskettes, GCC version 2, for 80386 and up
  3865. (also on the *note Compiler Tools Binaries CD-ROM::. and *note MS-DOS Book with CD-ROM::..)
  3866. ____ @ $ 85 = $ ______ Selected Utilities diskettes, 8086 and up.
  3867. ____ @ $ 40 = $ ______ Windows diskette, GNU Chess and gnuplot for
  3868. Microsoft Windows.
  3869. Manuals
  3870. -------
  3871. These manuals (*note Documentation::.). Please call for bulk purchase
  3872. discounts.
  3873. ____ @ $ 25 = $ ______ GNU Emacs version manual, with a reference card.
  3874. ____ @ $ 50 = $ ______ GNU Emacs Lisp Reference manual, in two volumes.
  3875. ____ @ $ 50 = $ ______ Using and Porting GNU CC.
  3876. ____ @ $ 50 = $ ______ GNU C Library Reference Manual.
  3877. ____ @ $ 50 = $ ______ GNU Emacs Calc manual, with a reference card.
  3878. ____ @ $ 20 = $ ______ Programming in Emacs Lisp: An Introduction.
  3879. ____ @ $ 20 = $ ______ Debugging with GDB, with a reference card.
  3880. ____ @ $ 20 = $ ______ Gawk manual.
  3881. ____ @ $ 20 = $ ______ Make manual.
  3882. ____ @ $ 20 = $ ______ Bison manual, with a reference card.
  3883. ____ @ $ 20 = $ ______ Flex manual, with a reference card.
  3884. ____ @ $ 20 = $ ______ Texinfo manual.
  3885. ____ @ $ 15 = $ ______ Termcap manual.
  3886. Reference Cards
  3887. ---------------
  3888. The following reference cards, in packets of ten. For single copies please
  3889. call.
  3890. ____ @ $ 10 = $ ______ GNU Emacs version 19 reference cards.
  3891. ____ @ $ 10 = $ ______ GNU Emacs Calc reference cards.
  3892. ____ @ $ 10 = $ ______ GDB reference cards.
  3893. ____ @ $ 10 = $ ______ Bison reference cards.
  3894. ____ @ $ 10 = $ ______ Flex reference cards.
  3895. T-shirts
  3896. --------
  3897. GNU/FSF T-shirts, thick 100% cotton (*note FSF T-shirt::.):
  3898. ____ @ $ 15 = $ ______ Size M ____ natural ____ black.
  3899. ____ @ $ 15 = $ ______ Size L ____ natural ____ black.
  3900. ____ @ $ 15 = $ ______ Size XL ____ natural ____ black.
  3901. ____ @ $ 15 = $ ______ Size XXL ____ natural ____ black.
  3902. Older Items
  3903. -----------
  3904. Older items are only available while supplies last.
  3905. ____ @ $ 5 = $ ______ GNU Emacs version 18 reference cards, in packets
  3906. of ten.
  3907. Please fill in the number of each older CD-ROM you order:
  3908. for for
  3909. corporations individuals:
  3910. and other
  3911. organizations:
  3912. GNU Compiler Tools Binaries CD-ROM
  3913. December 1993 Edition (Version 1) ____________ ____________
  3914. Please note that the December 1994 Source CD is permanently out of stock.
  3915. GNU Source Code CD-ROM
  3916. May 1994 edition with X11R6 ____________ ____________
  3917. GNU Source Code CD-ROM
  3918. November 1993 edition with X11R5 ____________ ____________
  3919. GNU Source Code CD-ROM
  3920. May 1993 edition with X11R5 ____________ ____________
  3921. GNU Source Code CD-ROM
  3922. October 1992 edition with X11R5 ____________ ____________
  3923. Please put the total count and cost of the above older CD-ROMs here:
  3924. ____ @ $ 80 = $ ______ for corporations and other organizations.
  3925. ____ @ $ 20 = $ ______ for individuals.
  3926. ======
  3927. Subtotal $ ______
  3928. Tax and Shipping Costs
  3929. ----------------------
  3930. + $ ______ For addresses in Massachusetts: add 5% sales tax
  3931. or give tax exempt number. There is no sales tax
  3932. on T-shirts.
  3933. + $ ______ Shipping fee for addresses in Alaska, Hawaii, or
  3934. Puerto Rico:
  3935. $ 5.00 for *each* Emacs Calc or Emacs Lisp
  3936. Reference manual ($ 5.00 * m);
  3937. + $ 20.00 for *each* tape subscription or CD
  3938. subscription ($20.00 * s);
  3939. + for all other items, pay $5.00 base charge,
  3940. plus $ 1.00 per item (shipping for all other
  3941. items = $ 5.00 + $ 1.00 * i).
  3942. + $ ______ Shipping fee for most Foreign Destinations: (Please
  3943. do *not* use this formula for addresses in China,
  3944. Guam, Indonesia, Israel, Malaysia, New Zealand,
  3945. Philippines, and Thailand. Please FAX, e-mail,
  3946. or call for an exact shipping a quote.)
  3947. $20.00 base charge for orders to other
  3948. addresses outside of U.S., Canada, & Puerto Rico:
  3949. + $ 80.00 for *each* tape subscription or CD
  3950. subscription ($ 80.00 * s);
  3951. + $ 10.00 for *each* of the other items in the
  3952. order ($ 10.00 * i).
  3953. + $ ______ Optional (tax-deductible in the U.S.) donation.
  3954. ------ We suggest 5% if paying by credit card.
  3955. TOTAL $ ______ We pay for shipping via UPS ground transportation in
  3956. the contiguous 48 states and Canada. For very
  3957. large orders, ask about actual shipping costs for
  3958. that order.
  3959. Shipping Information
  3960. --------------------
  3961. Name: ________________________________________________________________________
  3962. Mail Stop/Dept. Name: ________________________________________________________
  3963. Organization: ________________________________________________________________
  3964. Street Address: ______________________________________________________________
  3965. City/State/Province: _________________________________________________________
  3966. Zip Code/Postal Code/Country: ________________________________________________
  3967. Telephone number in case of a problem with your order.
  3968. For international orders, please include a FAX number. _______________________
  3969. ------------------------------------------------------------------------------
  3970. | |
  3971. | Orders filled only upon receipt of check, money order, or credit card |
  3972. | order in U.S. dollars. Unpaid orders will be returned to the sender. |
  3973. | We do not have the staff to handle the billing of unpaid orders. Please |
  3974. | help keep our lives simple by including your payment with your order. |
  3975. | |
  3976. ------------------------------------------------------------------------------
  3977. For orders from outside the U.S.:
  3978. ---------------------------------
  3979. You are responsible for paying all duties, tariffs, and taxes. If you
  3980. refuse to pay the charges, the shipper will return or abandon the order.
  3981. ---------------------------------------------------------------------------
  3982. | |
  3983. | Please make checks payable to the ``Free Software Foundation''. |
  3984. | |
  3985. ---------------------------------------------------------------------------
  3986. For Credit Card Orders:
  3987. -----------------------
  3988. The Free Software Foundation takes these credit cards: Carte Blanche,
  3989. Diner's Club, JCB, Mastercard, Visa, or American Express. Please note that
  3990. we are charged about 5% of an order's total amount in credit card
  3991. processing fees. Please consider paying by check instead, or adding on a 5%
  3992. donation to make up the difference. To place a credit card order, please
  3993. give us this information:
  3994. Card type: ___________________________________________________________________
  3995. Account Number: ______________________________________________________________
  3996. Expiration Date: _____________________________________________________________
  3997. Cardholder's Signature: ______________________________________________________
  3998. ------------------------------------------------------------------------------
  3999. | |
  4000. | If you wish to pay by wire transfer or you are a reseller, please |
  4001. | call or write us for details. |
  4002. | |
  4003. ------------------------------------------------------------------------------
  4004. Please mail orders to: Free Software Foundation
  4005. 59 Temple Place -- Suite 330
  4006. Boston, MA 02111
  4007. +1-617-542-5942
  4008. FAX (including Japan): +1-617-542-2652
  4009. Free Dial FAX numbers in Japan:
  4010. PRICES AND CONTENTS MAY CHANGE 0031-13-2473 (KDD)
  4011. WITHOUT NOTICE AFTER January 31, 1996. 0066-3382-0158 (IDC)
  4012. Version: June 1995 ASCII Bull to info-gnu@prep.ai.mit.edu
  4013. -----------------------------------------------------------------------------
  4014. -------
  4015. Free Software Foundation, Inc | |
  4016. Electronic Mail: gnu@prep.ai.mit.edu | stamp |
  4017. 59 Temple Place -- Suite 330 | |
  4018. Boston, MA 02111-1307 | here |
  4019. USA | |
  4020. -------
  4021. -----------------------------------------------------------------------------