home *** CD-ROM | disk | FTP | other *** search
/ ftp.pasteur.org/FAQ/ / ftp-pasteur-org-FAQ.zip / FAQ / x-faq / part3 < prev    next >
Encoding:
Text File  |  1996-10-03  |  43.5 KB  |  1,165 lines

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!bone.think.com!paperboy.osf.org!june.osf.org!dbl
  2. From: dbl@osf.org (David Lewis)
  3. Newsgroups: comp.windows.x,news.answers,comp.answers
  4. Subject: comp.windows.x Frequently Asked Questions (FAQ) 3/7
  5. Followup-To: poster
  6. Date: 2 Oct 1996 20:15:41 GMT
  7. Organization: Open Software Foundation
  8. Lines: 1147
  9. Approved: news-answers-request@MIT.Edu
  10. Distribution: world
  11. Expires: Sun, 27 Oct 1996 00:00:00 GMT
  12. Message-ID: <52uihd$bs0@paperboy.osf.org>
  13. Reply-To: faq%craft@uunet.uu.net (X FAQ maintenance address)
  14. NNTP-Posting-Host: june.osf.org
  15. Summary: useful information about the X Window System
  16. Xref: senator-bedfellow.mit.edu comp.windows.x:110955 news.answers:83415 comp.answers:21526
  17.  
  18. Archive-name: x-faq/part3
  19. Last-modified: 1996/09/26
  20.  
  21. ----------------------------------------------------------------------
  22. Subject:  48)  How do I get a font name from the structure?
  23.  
  24. You can't, although you can build up the font properties to rebuild a
  25. description of the font in XLFD format, which should be sufficient.
  26.  
  27. This routine is derived from source provided by John L. Cwikla 
  28. (cwikla@wri.com).
  29.  
  30. #include <X11/Xlib.h>
  31.  
  32. #include <stdio.h>
  33.  
  34. /* Stolen from mit/fonts/lib/font/bitmap/bitscale.c */
  35.  
  36. enum scaleType
  37. {
  38.     atom, pixel_size, point_size,
  39.     resolution, resolution_x, resolution_y, average_width,
  40.     scaledX, scaledY, unscaled, scaledXoverY, uncomputed,
  41. };
  42.  
  43. typedef struct _fontProp
  44. {
  45.     char       *name;
  46.     Atom        atom;
  47.     enum scaleType type;
  48.     char found;
  49. } fontProp;
  50.  
  51. static fontProp fontNamePropTable[] = 
  52. {
  53.     { "FOUNDRY", 0, atom, 0},
  54.     { "FAMILY_NAME", 0, atom, 0},
  55.     { "WEIGHT_NAME", 0, atom, 0},
  56.     { "SLANT", 0, atom, 0},
  57.     { "SETWIDTH_NAME", 0, atom, 0},
  58.     { "ADD_STYLE_NAME", 0, atom, 0},
  59.     { "PIXEL_SIZE", 0, pixel_size, 0},
  60.     { "POINT_SIZE", 0, point_size, 0},
  61.     { "RESOLUTION_X", 0, resolution_x, 0},
  62.     { "RESOLUTION_Y", 0, resolution_y, 0},
  63.     { "SPACING", 0, atom, 0},
  64.     { "AVERAGE_WIDTH", 0, average_width, 0},
  65.     { "CHARSET_REGISTRY", 0, atom, 0},
  66.     { "CHARSET_ENCODING", 0, atom, 0},
  67. #if 0
  68.     { "FONT", 0, atom, 0},
  69. #endif /* 0 */
  70. };
  71.  
  72. #define NUMITEMS(arr) ((int) (sizeof(arr) / sizeof(arr[0])))
  73.  
  74. void regenerateFontName(Display *display, XFontStruct *xfs)
  75. {
  76.     int i;
  77.     unsigned long retValue;
  78.     if (xfs)
  79.     {
  80.          for(i=0;i<NUMITEMS(fontNamePropTable); i++)
  81.         {
  82.                 fontNamePropTable[i].atom = 
  83.                 XInternAtom(display, fontNamePropTable[i].name, 0);
  84.             if (XGetFontProperty(xfs, fontNamePropTable[i].atom, &retValue))
  85.             {
  86.                 switch(fontNamePropTable[i].type)
  87.                 {
  88.                     case atom:
  89.                         printf("%s", XGetAtomName(display, (Atom)retValue));
  90.                         break;
  91.  
  92.                     case pixel_size:
  93.                     case point_size:
  94.                     case resolution:
  95.                     case resolution_x:
  96.                     case resolution_y:
  97.                     case average_width:
  98.                     case scaledX:
  99.                     case scaledY:
  100.                     case unscaled:
  101.                     case scaledXoverY:
  102.                     case uncomputed:
  103.                             printf("%d", retValue);
  104.                             break;
  105.                 }
  106.             }
  107.             else
  108.                 printf("*");
  109.  
  110.             if (i != (NUMITEMS(fontNamePropTable)-1))
  111.                 printf("-");
  112.             else
  113.                 printf("\n");
  114.         }
  115.     }
  116. }
  117.  
  118. ----------------------------------------------------------------------
  119. Subject:  49)  How can I set backgroundPixmap in a defaults file? 
  120. I want to be able to do something like this:
  121.     xclock*backgroundPixmap:      /usr/include/X11/bitmaps/rootweave
  122.  
  123. You can't do this. The backgroundPixmap resource is a pixmap of the same
  124. depth as the screen, not a bitmap (which is a pixmap of depth 1).  Because of
  125. this, writing a generic String to Pixmap converter is impossible, since there
  126. is no accepted convention for a file format for pixmaps.  Therefore, neither
  127. the X Toolkit or the Athena widget set define a String to Pixmap converter;
  128. because there is no converter you cannot specify this value as a resource.
  129. The Athena widget set does define a String to Bitmap converter for use in
  130. many of its widgets, however. 4/90]
  131.  
  132. However, note that a specific converter which encapsulates much of the
  133. functionality of the xloadimage package by Jim Frost was posted 12/90 by
  134. Sebastian Wangnick (basti@unido.informatik.uni-dortmund.de); it permits
  135. loading of a number of image formats as a pixmap.
  136.  
  137. ----------------------------------------------------------------------
  138. Subject:  50)  How can I make small multi-color pixmap images? (What is XPM?)
  139.  
  140. The leading general-purpose format for small multi-color pixmaps is the XPM
  141. format used by Groupe Bull in several of its programs, including the GWM
  142. window manager, by AT&T in its olpixmap editor, and by ICS in its interface
  143. builder. The XPM distribution includes read/write routines for the simple XPM
  144. text format.  See information on the xpm-talk mailing list above.
  145.  
  146. XPM 3.4h became available in 2/96 and is available from
  147. ftp.x.org:/contrib/libraries/xpm-3.4h.tar.gz or
  148. koala.inria.fr:/pub/xpm/xpm-3.4h.tar.gz .  Older versions are on the X
  149. contrib tapes.
  150.  
  151. A set of XPM icons collected by Anthony Thyssen
  152. (anthony@kurango.cit.gu.edu.au) is on ftp.x.org in R5contrib/AIcons; the
  153. hobbes-icon-xpm3 collection of XPM icons is on hobbes.nmsu.edu/ .
  154.  
  155. ----------------------------------------------------------------------
  156. Subject:  51)  Why can't I override translations? Only the first item works. (sic)
  157.  
  158.     You probably have an extra space after the specification of the first 
  159. item, like this:
  160.     basic*text.translations:  #override \
  161.     Ctrl<Key>a:    beginning-of-line() \n\     
  162.     Ctrl<Key>e:    end-of-line()
  163.                           ^ extra space
  164. The newline after that space is ending the translation definition.
  165. [Thanks to Timothy J. Horton, 5/91]
  166.  
  167. ----------------------------------------------------------------------
  168. Subject:  52)  How can I have a clock show different timezones?
  169.  
  170. One solution is xchron, in Volume 6 of comp.sources.x, which can show the
  171. time for timezones other than the local one.
  172.  
  173. sunclock on ftp.x.org displays a world map with sun/dark areas and local and
  174. UTC time.
  175.  
  176. The OpenWindows clock has a TimeZone property.  Modifications to the
  177.  
  178. Xaw clock widget to support hour and minute offsets were posted by David
  179. Herron (david@twg.com).
  180.  
  181. A patch for the clock coming with the Xaw3D widgets introduces resources
  182. hourOffset, minuteOffset, gmt; it can be found at
  183. ftp.wu-wien.ac.at:pub/src/X11/wafe/xaw3d.Clock.patch.
  184.  
  185. Alternatively, you can probably set the timezone in the shell from which you
  186. invoke the xclock or oclock, or use a script similar to this:
  187.  
  188.     #!/bin/sh 
  189.     TZ=PST8PDT xclock -name "La-La" 2> /dev/null &
  190.     TZ=EST5EDT xclock -name "Nyah-Nyah" 2> /dev/null &
  191.  
  192. ----------------------------------------------------------------------
  193. Subject:  53)  I have xmh, but it doesn't work. Where can I get MH?
  194.  
  195. The xmh mail-reader requires the Rand MH mail/message handling system, which
  196. is not part of the UNIX software distribution for many machines.  A list of
  197. various ftp, uucp, e-mail and US-mail sites for both xmh and MH is given in
  198. the monthly MH FAQ posted to comp.mail.mh; one source is ics.uci.edu.
  199.  
  200. ----------------------------------------------------------------------
  201. Subject:  54)  Why am I suddenly unable to connect to my Sun X server?  
  202. After a seemingly random amount of time after the X server has been started,
  203. no other clients are able to connect to it.
  204.  
  205.     The default cron cleanup jobs supplied by Sun (for 4.0.3, at least)
  206. delete "old" (unreferenced) files from /tmp -- including /tmp/.X11-unix, which
  207. contains the socket descriptor used by X. The solution is to add "!  -type s"
  208. to the find exclusion in the cron job.  [10/90]
  209.  
  210. ----------------------------------------------------------------------
  211. Subject:  55)  Why don't the R5 PEX demos work on my mono screen?
  212.  
  213. The R5 sample server implementation works only on color screens, sorry.
  214.  
  215. ----------------------------------------------------------------------
  216. Subject:  56)  How do I get my Sun Type-[45] keyboard fully supported by Xsun?
  217.  
  218. The R6 Xsun supports Sun Type-[45] keyboards; see the KEYBOARDS section of
  219. the Xsun man page.
  220.  
  221. Many users wants the Num Lock key to light the Num Lock LED and have the
  222. appropriate effect on the numeric keypad.  The R5 Xsun server as distributed
  223. by the Consortium doesn't do this but there are two different patches
  224. available.
  225.  
  226. The first patch is written by Jonathan Lemon and fixes the Num Lock related
  227. problems. It is available from ftp.x.org in the file
  228. R5contrib/Xsun-R5.numlock_patch.Z .
  229.  
  230. The second is written by Martin Forssen and fixes the Num Lock and Compose
  231. keys and adds support for the different national keyboard layouts for Type-4
  232. and Type-5 keyboards. This patch is available from ftp.x.org in
  233. R5contrib/sunkbd.930314.tar.Z or via email from maf@dtek.chalmers.se.
  234.  
  235. [thanks to Martin Forssen (maf@dtek.chalmers.se or maf@math.chalmers.se),
  236. 8/92]
  237.  
  238. (Note that use of xmodmap to map function and arrow keys can make the Type 5
  239. keyboard more useful without needing these patches.)
  240.  
  241. ----------------------------------------------------------------------
  242. Subject:  57)  How do I report bugs in X?
  243.  
  244. Generally, report bugs you find to the organization that supplied you with
  245. the X Window System.  If you received the R6 source distribution directly
  246. from the Consortium, please read the file xc/bug-report for instructions.
  247. [Look in mit/bug-report for R5, mit/doc/bugs/bug-report in R4.]
  248.  
  249. [Thanks to Stephen Gildea <gildea@x.org>, 5/91; 12/91]
  250.  
  251. ----------------------------------------------------------------------
  252. Subject:  58)  Why do I get "Warning: Widget class version mismatch"?
  253.  
  254.     This error, which typically goes on to say, "widget 11004 vs.
  255. intrinsics 11003" indicates that the header files you included when building
  256. your program didn't match the header files that the Xt library you're linking
  257. against was built with; check your -I include path and -L link-path to be
  258. sure.
  259.     However, the problem also occurs when linking against a version of the
  260. X11R4 Xt library before patch 10; the version number was wrong.  Some Sun OW
  261. systems, in particular, were shipped with the flawed version of the library,
  262. and applications which link against the library typically give the warnings
  263. you have seen.
  264.  
  265. ----------------------------------------------------------------------
  266. Subject:  59)! Why does my SPARC 4 with the TCX fail? 
  267.  
  268. It apparently needs SunOS 4.1.4 (Solaris 1.1.2) to operate correctly.  Under
  269. Solaris 2 in versions before 2.5, the TCX doesn't pretend to be a CG3, and so
  270. it's not supported by the X Consortium (under 2.5, the emulation of a CG3 is
  271. not quite correct) in X11R6 or X11R6.1.
  272.  
  273. ----------------------------------------------------------------------
  274. Subject:  60)  Why does my SPARC say "Mapping cg3c: No such device or address"?
  275.  
  276.        The R6 sun ddx uses information returned by the device driver to do
  277. the right thing, so this problem should go away with R6, but the X Consortium
  278. does not have this configuration available to test it.
  279.  
  280.     This problem comes up on Sun SPARC Classic machines.  There is no X
  281. Consortium fix for this problem, but the correction can be made to X11R5
  282. sources by editing the file "src/mit/server/ddx/sun/sunCG3C.c". Find the
  283. second buffer definition that looks like this:
  284.  
  285.    typedef struct cg3bc {
  286.    #ifdef sparc
  287.            u_char mpixel[128*1024];         /* bit-per-pixel memory */
  288.            u_char epixel[128*1024];         /* enable plane */
  289.    #endif
  290.            u_char cpixel[CG3B_HEIGHT][CG3B_WIDTH];   /* byte-per-pixel memory */
  291.    } CG3BC, CG3BCRec, *CG3BCPtr;
  292.  
  293. and change the instances of "128*1024" to "96*1024". Then recompile the
  294. X server.
  295.  
  296. [thanks to Russ Poffenberger (poffen@San-Jose.ate.slb.com)]
  297.  
  298. ----------------------------------------------------------------------
  299. Subject:  61)  Where can I find a dictionary server for xwebster?
  300.  
  301. Webster's still owns the copyright to the on-line copies of Webster's
  302. Dictionary which are found at various (university) sites. After it became
  303. aware that these sites were then acting as servers for other sites running
  304. xwebster and gnuemacs-webster, it asked that server sites close off external
  305. access.
  306.  
  307. [The NeXT machine apparently is also licensed to have the dictionary.  A
  308. Webster daemon for NeXT machines is available from iuvax.cs.indiana.edu
  309. (129.79.254.192) in "pub/webster/NeXT-2.0".]
  310.  
  311. Unless you want to get a legal on-line copy yourself or can find a site which
  312. can grant you access, you are probably out of luck.
  313.  
  314. However, if you are a legitimate site, you'll want to pick up the latest
  315. xwebster, as-is on ftp.x.org:R5contrib/xwebster.tar.Z [10/91]; the file
  316. xwebster.README includes discussions of the availability, illegality, and
  317. non-availability of dictionary servers.
  318.  
  319. [courtesy steve@UMIACS.UMD.EDU (Steve Miller) and mayer@hplabs.hp.com (Niels
  320. Mayer) 11/90]
  321.  
  322. ----------------------------------------------------------------------
  323. Subject:  62)! What desktop managers are available?
  324.  
  325. xfm, the X file and appilcation manager, is available from
  326. ftp.x.org:/contrib/applications and from
  327. sunsite.unc.edu:/pub/Linux/X11/xutils/managers; version 1.3.2 was released
  328. 5/95.
  329.  
  330. Moxfm is a free OSF/Motif based file and application manager for generic Unix
  331. systems running X11. Moxfm allows you to browse your directory tree and to
  332. copy, move, link and delete files in an intuitive way by simple drag-and-drop
  333. actions.  (It is based on xfm.) Sources are on
  334. ftp://ftp.x.org/contrib/applications/moxfm-src.tgz ; some Linux, HPUX and IRIX
  335. binaries are available from http://ips105.desy.de:8765/~mai/moxfm .
  336. See also http://sugra.desy.de/user/mai/moxfm/ .
  337.  
  338. xdtm, the X Desktop Manager, is available from ftp.x.org and avahi.inria.fr;
  339. version 2.5.7 was released 12/95.
  340.  
  341. FileRunner is a tcl/Tk based file manager which is configurable. Sources are
  342. available at
  343. ftp://sunsite.unc.edu/pub/Linux/X11/xutils/managers/FileRunner_1.1.tar.gz .
  344. Version 2.0 was released 9/96.
  345.  
  346. Several other packages which are not file managers but which make easy the
  347. invocation of applications from configurable button bars are 
  348.  
  349.     "rtc" (in ftp.x.org:contrib/applications as rtc-2.0.tar.gz) 
  350.  
  351.     "bricons" (in ftp.x.org:R5contrib/ as bricons-athena-3.0.tar.Z or
  352.     bricons-motif-3.0.tar.Z).
  353.  
  354.     "tkgoodstuff" is available from
  355.     ftp://merv.philosophy.lsa.umich.edu/pub/ ; information is on
  356.     http://www.umich.edu/~markcrim/tkgoodstuff/tkgoodstuff.html (version
  357.     4.1 was released 9/96).
  358.  
  359.     "xtpanel" lets the user build a panel containing interactive objects
  360.     such as buttons, sliders, text fields, etc., either from the command
  361.     line or using a simple scripting language. It is available for
  362.     anonymous ftp from hanauma.Stanford.EDU (36.51.0.16) as
  363.     pub/X/xtpanel-3.01.tar.Z and may also be found in the alt.sources
  364.     archives.
  365.  
  366.     "xmgoodstuff" is a simple Motif toolbar along the lines of tkgoodstuff;
  367.     see http://stud1.tuwien.ac.at/~e8930188 for details.
  368.  
  369. Also:
  370.  
  371. IXI sells X.desktop.
  372.  
  373. Freedom software sells a desktop product.
  374.  
  375. Visix offers a desktop product called Looking Glass.
  376.  
  377. A product called G.R.E.A.T. may qualify.
  378.  
  379. The CDE environment offered by several vendors (or in earlier versions from
  380. HP and SAIC) offers a desktop environment. According to the alt.windows.cde
  381. FAQ, it will probably replace Looking Glass and X.desktop. See information
  382. from the vendors, including http://www.triteal.com/ .
  383.  
  384. ----------------------------------------------------------------------
  385. Subject:  63)  How can I use a Web browser as a help system?
  386.  
  387. Keith Gemeinhart (keithg@tsc.com has developed a simple toolkit that allows
  388. you to use either a Netscape or Mosaic WWW browser as an online help system.
  389. For more information see http://www.tsc.com/tools/xtschelp.html [3/96].
  390.  
  391. ----------------------------------------------------------------------
  392. Subject:  64)+ How can I retrieve resource values from an application?
  393.  
  394. The editres program has long allowed you to set resources on widgets in an
  395. application which is "editres-aware" -- one that pays attention to requests
  396. from the editres application.  Newer versions of editres allow you to view as
  397. well as set values; you may need some additional support in libXmu. The
  398. sources are on ftp.x.org. [8/96]
  399.  
  400. ----------------------------------------------------------------------
  401. Subject:  65)  TOPIC: OBTAINING X AND RELATED SOFTWARE AND HARDWARE
  402. ----------------------------------------------------------------------
  403. Subject:  66)  Is X public-domain software?
  404.  
  405.     No. The X software is copyrighted by various institutions and is not
  406. "public domain", which has a specific legal meaning. However, the X
  407. distribution is available for free and can be redistributed without fee.
  408.     Contributed software, though, may be placed in the public domain by
  409. individual authors.
  410.  
  411. ----------------------------------------------------------------------
  412. Subject:  67)  How compatible are X11R3, R4, R5, R6? What changes are there?
  413.  
  414. The Release Notes for each release of X11 specify the changes from the
  415. previous release.  The X Consortium tries very hard to maintain compatibility
  416. across releases.  In the few places where incompatible changes were necessary,
  417. details are given in the Release Notes.  Each X11 distribution site on the
  418. network also offers the Release Notes that go with the release they offer; the
  419. file typically can be found at the top of the distribution tree.
  420.  
  421. [Stephen Gildea, 1/92]
  422.  
  423. Things that are incompatible in R6:
  424.     - R6 Xt requires R6 Xlib.
  425.     - R6 Xaw no longer has Clock, Logo, and Mailbox widgets.
  426.     - R6 Xt retains binary compatibility with R5 for all data
  427.      structures except WMShellPart.  See section 13.4 of the Xt
  428.      specification for more details.
  429. [Dave Wiggins (dpw@x.org)]
  430.  
  431. The comp.windows.x.intrinsics FAQ-Xt lists Xt differences among these
  432. versions.
  433.  
  434. ----------------------------------------------------------------------
  435. Subject:  68)! What is Fresco? When is Fresco rumored to be available?
  436.  
  437. Fresco is a user-interface system specified in CORBA IDL.  The sample
  438. implementation from the X Consortium is implemented in C++.  Fresco is
  439. available with X11R6 (Fresco doesn't require R6, but it does need the R6
  440. imake to build), but as a work-in-progress. Work is progressing, but there is
  441. no schedule for a full release version (and the standardization process has
  442. been deferred); the Consortium is still charting future directions.
  443.  
  444.     Fresco is a fairly long-term effort in our [that is, of the X
  445.     Consortium] minds, in part due to the amount of work needed to
  446.     produce a complete next generation user interface system, and in part
  447.     due to the limited number of people working on it.  We expect that
  448.     each subsequent release of Fresco will both deepen coverage in
  449.     previously existing areas like graphics, and broaden coverage to new
  450.     areas like GUI control objects, embedding, and transcription.  What
  451.     order these things appear in, and the schedule for future releases,
  452.     is still somewhat up in the air.
  453.         - Matt Landau (X Consortium), 10/19/94
  454.  
  455. Fresco draws several design ideas from InterViews and will ultimately
  456. incorporate much of the functionality of Xt and Xlib, and add some
  457. significant new capabilities in the areas of structured graphics, device and
  458. resolution independent drawing models, a standard object model (OMG CORBA)
  459. and interface definition language (CORBA IDL), and application linking and
  460. embedding.
  461.  
  462. There is a writeup on Fresco in the Proceedings of the 7th Annual X Technical
  463. Conference, published in Issue 5 of the X Resource, O'Reilly and Associates
  464. (ISBN 1-56592-020-1).
  465.  
  466. PostScript for Mark Linton's Xhibition94 tutorial notes is in
  467. graphics/fresco/xhibition94.ps.Z on ftp.sgi.com.
  468.  
  469. [Information from Kaleb Keithley (kaleb@x.org) and Matt Landau (matt@x.org); 
  470. 1/94; 4/94.]
  471.  
  472. There is a Fresco home page at http://www.faslab.com/fresco/HomePage.html .
  473.  
  474. Sources and binaries are available at ftp://ftp.faslab.com/pub/Fresco .
  475.  
  476. VFX (Visual Fresco eXplorer) is a highly customizable, extensible, and
  477. integrated environment for the authoring and visualization of Fresco
  478. objects.  FrescoVFX is available from
  479. http://www.faslab.com/fresco/HomePage.html or
  480. ftp.faslab.com:/pub/Fresco/{FrescoVFX-win.zip,FrescoVFX-solaris25.tar.gz} for
  481. Windows 95 or NT 3.51 and for Solaris 2.4 or later. [8/96]
  482.  
  483. ----------------------------------------------------------------------
  484. Subject:  69)  Does Fresco work with g++ 2.5.8?
  485.  
  486. No; g++ does not cope with the use of explicitly-scoped nested type names as
  487. formal parameter types of return types for member functions.  For example,
  488. the following class definition will not compile with g++:
  489.  
  490.         class Event {
  491.         public:
  492.             typedef void *Data;
  493.  
  494.             Event::Data get_data(void);
  495.             int set_data(Event::Data new_data);
  496.         };
  497.  
  498. Cygnus is aware of this problem and claims it's fixed in the next release of
  499. g++.
  500.  
  501. [from matt@x.org (Matt Landau)]
  502.  
  503. ----------------------------------------------------------------------
  504. Subject:  70)  What is Broadway? 
  505.  
  506. Broadway, under development at the X Consortium in 1996, is a package of
  507. technologies designed to provide what is termed "universal access to
  508. interactive applications on the Web" -- the ability to locate and invoke
  509. remote applications via the Web and have their displays, including both
  510. graphics and audio, appear wherever you are (on your local desktop), either
  511. as new top-level windows or embedded within your Web browser.
  512.  
  513. Building Broadway will involve creating a least three new extensions to 
  514. X11 (one for embedding, one for fast performance over low-speed lines, 
  515. and one for security enhancements), but will also involve developing new
  516. standards for remote activation, and will involve modifying Web browsers
  517. to support the Broadway activation and embedding protocols.
  518.  
  519. The Broadway embedding protocols are designed to allow a Broadway-capable
  520. window manager and X server to cooperate and provide embedded display of
  521. unmodified X11 applications; Broadway does not imply an incompatible
  522. protocol.
  523.  
  524. See http://www.x.org/consortium/broadway.html for more information.
  525.  
  526. [3/96; thanks to matt@x.org (Matt Landau)]
  527.  
  528. Note that "Broadway" is an internal name, only. It will be released as
  529. X11R7 or X11R6.2.
  530.  
  531. ----------------------------------------------------------------------
  532. Subject:  71)  Where can I get X11R6.1 (source and/or binaries)?
  533.  
  534. Release 6.1 was made available to the public on March 14, 1996.
  535.  
  536. X11 Release 6.1 is an update to X11 Release 6.  It is compatible with R6 at
  537. the source and protocol levels in all respects, and binaries are
  538. upward-compatible.
  539.  
  540. Here are some highlights of what's new in Release 6.1; this list is by no
  541. means exhaustive.  For complete details, refer to the R6.1 Release Notes.
  542.  
  543. * Support for newer operating system versions on a number of platforms.
  544.  
  545. * Support for threads on more platforms.
  546.  
  547. * New X Consortium standards:
  548.  
  549.    XKEYBOARD (XKB)
  550.    RECORD
  551.    DOUBLE-BUFFER (DBE)
  552.    ICE X Rendezvous
  553.  
  554. * Configuration and build improvements:
  555.  
  556.    BOOTSTRAPCFLAGS required on fewer platforms
  557.    Imake support for Atria clearmake
  558.    Better imake documentation and hints on writing Imakefiles
  559.    
  560. * Bug fixes and enhancements to many programs and libraries
  561.  
  562. ** FTP SITES PROVIDING RELEASE 6.1
  563.  
  564. North America anonymous FTP:
  565.  
  566. Location        Address            Directory
  567. --------        -------            ---------
  568. Cambridge, MA        ftp.crl.research.digital.com    /pub/X11/R6.1
  569. Eastern USA        [192.58.206.2]
  570.  
  571. Cambridge, MA        ftp.x.org        /pub/R6.1
  572. Eastern USA        [198.112.44.100]
  573.  
  574. New York City        ftp.cs.columbia.edu    /archives/X11R6.1
  575. Eastern USA        [multi-homed]
  576.  
  577. North Carolina        ftp.duke.edu        /pub/X11/R6.1
  578. Eastern USA        [152.3.233.7]
  579.  
  580. Washington, DC        ftp.digex.net        /pub/X
  581. Eastern USA        [204.91.197.227]
  582.  
  583. Minneapolis, MN        ftp.cs.umn.edu        /packages/X11/R6.1
  584. Central USA        [160.94.227.144]
  585.  
  586. West Lafayette, IN    ftp.cs.purdue.edu    /pub/X11/R6.1
  587. Central USA        [128.10.2.1]
  588.  
  589. Palo Alto, California    ftp.digital.com        /pub/X11/R6.1
  590. Western USA        [204.123.2.4]
  591.  
  592. Albuquerque, NM        ftp.khoros.unm.edu    /pub/dist/X/X11R6.1
  593. Southwest USA        [198.59.155.28]
  594.  
  595. British Columbia    ftp.cs.ubc.ca        /mirror1/R6.1
  596. Canada            [142.103.6.6]
  597.  
  598.  
  599.  
  600.  
  601. Europe anonymous FTP:
  602.  
  603. Location        Address            Directory
  604. --------        -------            ---------
  605. Czech Republic        ftp.eunet.cz        /pub/X11/R6.1
  606.             [193.85.1.11]
  607.  
  608. England            sunsite.doc.ic.ac.uk    /packages/X11R6.1
  609.             [193.63.254.1]
  610.  
  611. Europe            ftp.eu.net        /X11/R6.1
  612.             [192.16.202.2]
  613.  
  614. Finland            ftp.eunet.fi        /pub/X11/R6.1
  615.             [193.66.1.8]
  616.  
  617. Finland            ftp.funet.fi        /pub/X11/R6.1
  618.             [128.214.248.6]
  619.  
  620. France            ftp.univ-lille1.fr    /pub/X/R6.1
  621.             [134.206.1.36]
  622.  
  623. Germany            ftp.gwdg.de        /pub/x11/x.org
  624.             [134.76.12.1]
  625.  
  626. Germany            ftp.rz.uni-wuerzburg.de    /pub/X11/R6.1
  627.             [132.187.3.2]
  628.  
  629. Germany            ftp.uni-paderborn.de    /pub/X11/R6.1
  630.             [131.234.22.32] and [131.234.2.41]
  631.  
  632. Iceland            ftp.isnet.is        /pub/X11/R6.1
  633.             [193.4.58.51]
  634.  
  635. Ireland            ftp.ieunet.ie        /pub/X11R6.1
  636.             [192.111.39.1]
  637.  
  638. Norway            ftp.eunet.no        /pub/X11/R6.1
  639.             [193.71.1.5]
  640.  
  641. Norway            ftp.unit.no        /pub/X11/R6.1
  642.             [129.241.1.97]
  643.  
  644. Poland            sunsite.icm.edu.pl    /pub/X11/R6.1
  645.             [148.81.209.3]
  646.  
  647. Portugal        ftp.puug.pt        /pub/X11/R6.1
  648.             [193.126.4.70]
  649.  
  650. Spain            asterix.fi.upm.es    /pub/X11/R6.1
  651.             [138.100.8.6]
  652.  
  653. Sweden            ftp.sunet.se        /pub/X11/R6.1
  654.             [130.238.127.3]
  655.  
  656. Switzerland        ftp.switch.ch *        /mirror/X11/R6.1
  657.             [130.59.1.40] 
  658.             *only available for Swiss organizations with a SWITCH
  659.             service contract and foreign education & research
  660.             organizations
  661.  
  662. United Kingdom        ftp.mcc.ac.uk        /pub/misc-unix/X11R6.1
  663.             [130.88.203.12]
  664.  
  665.  
  666.  
  667.  
  668. East Asia anonymous FTP:
  669.  
  670. Location        Address            Directory
  671. --------        -------            ---------
  672. Hong Kong        ftp.cs.cuhk.edu.hk    /pub/X11R6.1
  673.             [137.189.4.110]
  674.  
  675. Japan            sunsite.sut.ac.jp    /pub/archives/X11/R6.1
  676.             [133.31.180.200]
  677.  
  678.  
  679.  
  680.                    
  681. Africa anonymous FTP:
  682.  
  683. Location        Address            Directory
  684. --------        -------            ---------
  685. South Africa        ftp.is.co.za        /x/pub/R6.1
  686.  
  687.  
  688.  
  689. Middle East anonymous FTP:
  690.  
  691. Location        Address            Directory
  692. --------        -------            ---------
  693. Israel            ftp.huji.ac.il        /mirror/X11/R6.1
  694.             [132.65.16.10]
  695.  
  696.  
  697. Binaries of X11R6.1 for SPARC SunOS 4.1.3 are available from
  698. ftp://ftp.cad.gatech.edu/pub/R6.1/X11R6.1.sunos413.tar.gz [4/96]. 
  699.  
  700. Sources of X11R6.1 are available on CD-ROM from Yggdrasil Computing. It also
  701. includes GNU and Linux tools. To order, call 1-800-261-6630 or email
  702. orders@yggdrasil.com.
  703.  
  704.  
  705. ----------------------------------------------------------------------
  706. Subject:  72)  Where can I get X11R6 (source and/or binaries)?
  707.  
  708. Release 6 was made available to the public on May 2, 1994.
  709.   
  710. The X Consortium is making R6 available simultaneously on multiple ftp sites
  711. around the world; the Consortium is also offering R6 on CD-ROM, QIC-150 tape,
  712. and 8mm tape (tar format) and is distributing hardcopy documentation.
  713. Information: X Consortium, R6 Sales Center, 1 Memorial Drive, Cambridge, MA
  714. 02142-1301, USA.
  715.  
  716. You will need about 140Mb of disk space to hold all of the Core distribution.
  717.  
  718. PLEASE use a site that is close to you in the network.
  719.  
  720. Note: this list is better available through:
  721.     http://www.x.org/consortium/GettingX11R6.html
  722.     (or via ftp from ftp.x.org as GettingR6, or via "send R6 sales" to
  723.         xstuff@x.org)
  724.                           
  725.  
  726.                  North America anonymous FTP:
  727.  
  728. Location            Address          Directory
  729. --------            -------          ---------
  730.  
  731. Cambridge, MA               ftp.crl.research.digital.com 
  732. Digital Equipment Corp.     [192.58.206.2]        /pub/X11/R6 
  733. Cambridge Research Laboratory                     /pub/X11/contrib
  734.  
  735. Cambridge, MA               ftp.x.org             /pub/R6
  736. X Consortium                [198.112.44.100]      /contrib
  737. (ftp.crl.research.digital.com is a faster site for FTP)
  738.  
  739. Newton, MA                  ftp.marcam.com         /R6
  740. MARCAM Corporation          [198.102.216.30]       /R6/contrib
  741.  
  742. New York City, NY           ftp.cs.columbia.edu   /archives/X11R6/R6
  743. Columbia University         [128.59.26.5]         /archives/X11R6/contrib
  744. Computer Science Dept
  745.  
  746. Buffalo New York            ftp.acsu.buffalo.edu  /pub/R6
  747. University at Buffalo       [128.205.7.9]         /pub/R6
  748.  
  749. Washington DC               ftp.digex.net         /pub/X11/R6
  750. Digital Express Group, Inc. [128.219.128.109]     /pub/X11/contrib
  751.  
  752. Aberdeen Maryland           ftp.arl.mil           /pub/X11/R6
  753. Army Research Laboratory    [138.18.1.158]        /pub/X11/contrib
  754.  
  755. Falls Church, VA            ftp.uu.net            /systems/window-sys/X/R6
  756. UUNET Technologies, Inc     [192.48.96.9]         /systems/window-sys/X/contrib
  757.  
  758. Durham, NC                  ftp.duke.edu          /pub/X11R6
  759. Duke University             [152.3.102.3]
  760.  
  761. Oak Ridge, Tenn             sws1.ctd.ornl.gov     /unix/X11R6
  762. Oak Ridge National Lab      [128.219.128.109]     /unix/X11R6/contrib 
  763. (Limited access host)
  764.  
  765. Ann Arbor, MI               ftp.merit.edu         /pub/dist/X/X11R6
  766. Merit Network, Inc.         [35.1.1.48]
  767.  
  768. West Lafayette, Indiana     ftp.cs.purdue.edu     /pub/X11/R6
  769. Purdue University           [128.10.2.1]          /pub/X11/R6
  770. Dept of Computer Sciences
  771.  
  772. Columbus, Ohio              ftp.cis.ohio-state.edu /pub/X.V11R6/R6
  773. The Ohio State University   [128.146.8.52]        /pub/X.V11R6/R6-contrib
  774. Dept of Computer and Information Science
  775.  
  776. Albuquerque New Mexico      ftp.khoros.unm.edu    /pub/dist/X/X11R6
  777. Khoros Group UNM            [198.59.155.28]       /pub/dist/X/X11R6.contrib
  778.  
  779. Palo Alto, California       gatekeeper.dec.com    /pub/X11/R6
  780. Digital Equipment Corp      [16.1.0.2]            /pub/X11/contrib
  781.  
  782.  
  783.                     Europe anonymous FTP:
  784.  
  785. Location                    Address               Directory
  786. --------                    -------               ---------
  787.  
  788. Vienna, Austria             ftp.Austria.EU.net    /pub/x11/x11r6
  789. EUnet Austria               [192.92.138.34]       /pub/x11/x11r6/contrib
  790.  
  791. Zagreb, Croatia             ftp.zel.etf.hr        /pub/X11/R6
  792. Faculty of Electrical       [161.53.65.13]        /pub/X11/contrib
  793. Engineering, Dept of Electronics
  794.  
  795. Prague, Czech Republic      ftp.eunet.cz          /pub/x11/R6
  796. EUnet Czechia               [193.85.1.11]         /pub/x11/R6/contrib
  797.  
  798. Copenhagen, Denmark         ftp.denet.dk          /pub/X11/X11R6
  799. DENet                       [129.142.6.74]        /pub/X11/contrib
  800.  
  801. Copenhagen, Denmark         osiris.dknet.dk       /pub/X11/R6
  802. DKnet / EUnet Denmark       [193.88.44.45]        /pub/X11/contrib
  803.  
  804. Helsinki, Finland           ftp.eunet.fi          /X11R6/release
  805. EUnet Finland               [192.26.119.1]        /X11R6/contrib
  806.  
  807. Espoo, Finland              nic.funet.fi          /pub/X11/X11R6
  808.                             [192.52.71.41]        /pub/X11/contrib
  809.  
  810. France (near Paris)         ftp.inria.fr          /X/X11R6
  811. INRIA Rocquencourt          [192.93.2.54]         /X/contrib-R6
  812.  
  813. Paris, France               ftp.ibp.fr            /pub/X11/R6
  814. Institut Blaise Pascal      [132.227.60.2]        /pub/X11/contrib
  815.  
  816. Dortmund, Germany           ftp.germany.eu.net    /pub/X11/XConsortium/pub/R6
  817. EUnet Deutschland GmbH      [192.76.144.75]       /pub/X11/XConsortium/contrib
  818.  
  819. Paderborn, Germany          ftp.uni-paderborn.de  /pub/X11/R6
  820. University of Paderborn     [131.234.2.32]        /pub/X11/contrib
  821.  
  822. Budapest, Hungary           sunserv.sztaki.hu     /pub/X11R6
  823. SZTAKI / EUnet Hungary      [192.84.227.1]        /pub/R6-contrib
  824.  
  825. Dublin, Ireland             ftp.ieunet.ie         /pub/R6
  826. IEunet                      [192.111.39.3]        /pub/R6/contrib
  827.  
  828. Milano, Italy               ftp.dsi.unimi.it      /pub/R6
  829. DSI, U of Milan             [149.132.2.45]        /export
  830.  
  831. Milano, Italy               ftp.iunet.it          /X11/X11R6
  832. IUnet NOC                   [192.106.1.6]         /X11/contrib
  833.  
  834. Oslo, Norway                ftp.eunet.no          /pub/X11/R6
  835. EUnet Norway                [193.71.1.7]          /pub/X11/contrib
  836.  
  837. Norway                      ftp.unit.no           /pub/X11/R6
  838. U. of Trondheim/SINTEF      [129.241.1.97]        /pub/X11/contrib
  839.  
  840. Warsaw, Poland              ftp.icm.edu.pl        /pub/X11/R6
  841. ICM, Warsaw University      [XXX.XXX.XXX.XXX]     /pub/X11/contrib
  842.  
  843. Lisbon, Portugal            relay.puug.pt         /pub/X11R6
  844. PUUG                        [193.126.4.65]        /pub/X11R6/contrib
  845. Portuguese UNIX Users Group
  846.  
  847. Moscow, Russia              ftp.kiae.su           /x11/X11R6
  848. RELCOM/EUnet, KIAE          [144.206.136.10]      /x11/X11R6/contrib
  849.  
  850. Lulea, Sweden               ftp.luth.se           /pub/X11/R6
  851. Lulea University            [130.240.18.2]        /pub/X11/contrib
  852. of Technology
  853.  
  854. Sweden                      ftp.sunet.se           /pub/X11/R6
  855. Swedish University          [130.238.127.3]        /pub/X11/contrib
  856. Computer Network
  857.  
  858. Zurich, Switzerland         ftp.eunet.ch          /archive/software/X11R6
  859. EUnet Switzerland           [146.228.10.16]       /archive/software/X
  860.  
  861. Zurich, Switzerland         ftp.switch.ch         /mirror/X11/R6
  862. SWITCH - Swiss Academic &   [130.59.1.40]         /mirror/X11/contrib
  863. Research Network
  864.  
  865. Amsterdam, The Netherlands  ftp.EU.net            /X11/R6
  866. EUnet Europe                [192.16.202.2]        /X11/contrib
  867.  
  868. Amsterdam, The Netherlands  ftp.NL.net            /pub/windows/X/R6
  869. NLnet                       [193.78.240.13]       /pub/windows/X/contrib
  870.  
  871. Canterbury, Kent, UK        ftp.britain.eu.net    /pub/X11R6
  872. EUnet GB                    [192.91.199.5]        /pub/X11R6-contrib
  873.  
  874. London, UK                  src.doc.ic.ac.uk      /packages/X11R6
  875. SUNsite, Dept of Computing, [146.169.2.10]        /packages/X11-contrib
  876.  
  877.  
  878.                   East Asia anonymous FTP:
  879.  
  880. Location                    Address               Directory
  881. --------                    -------               ---------
  882.  
  883. Hong Kong                   ftp.cs.cuhk.hk        /pub/X11R6
  884. Computer Science Dept       [137.189.4.57]        /pub/Xcontrib
  885. The Chinese University of Hong Kong
  886.  
  887. Taejon, Republic of Korea   cair.kaist.ac.kr      /pub/X11/R6
  888. Center for Artificial       [143.248.11.170]      /pub/X11/contrib (not yet operational)
  889. Inteligence Research, KAIST
  890.  
  891. Tokyo, Japan                ftp.iij.ad.jp         /pub/X/X11R6
  892. Internet Initiative Japan   [192.244.176.50]      /pub/X/contrib
  893.  
  894. Fukuoka, Japan              ftp.ec.kyushu-u.ac.jp /pub/X11R6
  895. Kyushu University           [133.5.10.12]         /pub/contrib
  896.  
  897. Tokyo, Japan                SunSITE.sut.ac.jp     /pub/archives/X11/R6
  898. Science University of Tokyo [133.31.30.7]         /pub/archives/X11/R6contrib
  899.  
  900. Tokyo, Japan                ftp.u-tokyo.ac.jp     /pub/X11R6
  901. The University of Tokyo     [130.69.254.254]      /pub/X11R6-contrib
  902.  
  903. Fujisawa, Japan             sh.wide.ad.jp         /X11R6
  904. WIDE Project (Fujisawa)     [133.4.11.11]         /X11R6-contrib
  905.  
  906. Nara, Japan                 wnoc-nara-ss2.wide.ad.jp /pub/X11R6
  907. WIDE Project (Nara)         [133.4.23.2]          /pub/X11R6-contrib
  908.  
  909. Tokyo, Japan                ftp.inter.spin.ad.jp  /pub/unix/R6
  910. Roppongi, Minato-ku         [165.76.8.4]          /pub/unix/R6/contrib
  911. Spin project
  912.  
  913. Taiwan                      NCTUCCCA.edu.tw       /X/X11R6
  914. Campus Computer             [140.111.1.10]        /X/contrib
  915. Communication Assoc.
  916.  
  917.  
  918.                  Australia anonymous FTP:
  919.  
  920. Location            Address          Directory
  921. --------            -------          ---------
  922.  
  923. Melbourne, Australia        archie.AU             X11/R6
  924. AARNet archive server       [139.130.23.2]        X11/contrib
  925.  
  926. Melbourne, Australia        munnari.OZ.AU         X.V11/R6
  927. University of Melbourne     [128.250.22.2]        X.V11/contrib
  928.  
  929. The Free Software Foundation's "X11 Tapes" and "May 1994 Source Code CD-ROM"
  930. contain X11R6. Email: gnu@prep.ai.mit.edu; Voice: +1-617-542-5942;
  931. Fax: +1-617-542-2652.
  932.  
  933. Anyone in Europe can get a copy of the X.V11R6 distribution, including the
  934. core and contributed software and all official patches, free of charge.  The
  935. only requirement is to agree to return the tapes, or equivalent new tapes.
  936. Available tape formats are QIC, TK, DAT and Exabyte cartridges.  Contact:
  937. Jamie Watson, Adasoft AG, Nesslerenweg 104, 3084 Wabern, Switzerland.  Tel:
  938. +41 31 961.35.70 or +41 62 61.41.21; Fax: +41 62 61.41.30; jw@adasoft.ch.
  939.  
  940. Binary distributions include:
  941.  
  942. X11R6pl2 binaries for Sun3 are on ftp.cad.gatech.edu in pub/X11R6. 
  943.  
  944. X11R6pl12 binaries for SPARC SunOS 4.1.3 are accessible through
  945. http://mistral.enst.fr/~pioch/X11/ (/pub/unix/X11/X11R6 on ftp.enst.fr).
  946.  
  947. Walnut Creek is producing a CD-ROM which should contain the new (2/95)
  948. patches to X11R6 and a new release of XFree86.
  949.  
  950. Additional sites that mirror ftp.x.org include:
  951.     freebsd.cdrom.com
  952.  
  953. ----------------------------------------------------------------------
  954. Subject:  73)  Where can I get X11R5 (source and/or binaries)?
  955.  
  956. Information about the Consortium's distribution of the sources on 6250bpi and
  957. QIC-24 tape and its distribution of hardcopy of the documents is available
  958. from Software Center, Technology Licensing Office, Massachusetts Institute of
  959. Technology, 28 Carleton Street, Room E32-300, Cambridge MA 02142-1324,
  960. phone:  617-258-8330.
  961.  
  962. You will need about 100Mb of disk space to hold all of Core and 140MB to hold
  963. the Contrib software donated by individuals and companies.
  964.  
  965. PLEASE use a site that is close to you in the network.
  966.  
  967. Note that the RELEASE notes are generally available separately in the same
  968. directory; the notes list changes from previous versions of X and offer a
  969. guide to the distribution.
  970.  
  971. The following list was originally obtained from the X Consortium. As sites
  972. have been found to have dropped their distributions, they have been removed.
  973.  
  974.               North America anonymous FTP:
  975.  
  976. Maryland        ftp.brl.mil                     pub/X11R5
  977.         128.63.16.158 (good for MILNET sites)
  978. Massachusetts   ftp.x.org                       pub/R5
  979.         198.112.44.100 (crl.dec.com is better)
  980. Michigan        merit.edu                       pub/X11R5
  981.         35.1.1.42
  982. Missouri        wuarchive.wustl.edu             packages/X11R5
  983.         128.252.135.4
  984. Montana         ftp.cs.montana.edu              pub/X.V11R5
  985.         192.31.215.202
  986. New York        azure.acsu.buffalo.edu          pub/X11R5
  987.         128.205.7.6
  988. Ohio            ftp.cis.ohio-state.edu          pub/X.V11R5
  989.         128.146.8.52
  990. Ontario         ftp.cs.utoronto.ca              pub/X11R5
  991.         128.100.1.105
  992. Washington DC   x11r5-a.uu.net                  X/R5
  993.         192.48.96.12
  994. Washington DC   x11r5-b.uu.net                  X/R5
  995.         137.39.1.12
  996.  
  997.            Europe/Middle East/Australia anonymous FTP:
  998.  
  999. Australia       munnari.oz.au                   X.V11/R5
  1000.         128.250.1.21
  1001. Denmark         freja.diku.dk                   pub/X11R5
  1002.         129.142.96.1
  1003. United Kingdom  src.doc.ic.ac.uk                graphics/X.V11R5
  1004.         146.169.3.7 hpb.mcc.ac.uk                   pub/X11r5
  1005.         130.88.200.7
  1006. Finland         nic.funet.fi                    pub/X11/R5
  1007.         128.214.6.100
  1008. France          nuri.inria.fr                   X/X11R5
  1009.         128.93.1.26
  1010. Germany         ftp.germany.eu.net              pub/X11/X11R5
  1011.         192.76.144.129
  1012. Israel          cs.huji.ac.il                   pub/X11R5
  1013.         132.65.6.5
  1014. Italy           ghost.sm.dsi.unimi.it           pub/X11R5
  1015.         149.132.2.1
  1016. Netherlands     archive.eu.net                  windows/X/R5
  1017.         192.16.202.1
  1018. Norway          ugle.unit.no                    pub/X11R5
  1019.         129.241.1.97
  1020. Norway          nac.no                          pub/X11R5
  1021.         129.240.2.40
  1022. Switzerland     nic.switch.ch                   software/X11R5
  1023.         130.59.1.40
  1024.  
  1025.              Japan anonymous FTP:
  1026.  
  1027. Kanagawa        sh.wide.ad.jp                   X11R5
  1028.         133.4.11.11
  1029. Kwansai         ftp.ics.osaka-u.ac.jp           X11R5
  1030.         133.1.12.30
  1031. Kyushu          wnoc-fuk.wide.ad.jp             X11R5
  1032.         133.4.14.3
  1033. TISN            utsun.s.u-tokyo.ac.jp           X11R5
  1034.         133.11.11.11
  1035. Tokyo           kerr.iwanami.co.jp              X11R5
  1036.         133.235.128.1
  1037. Tokyo           scslwide.sony.co.jp             pub/X11R5
  1038.         133.138.199.1
  1039.  
  1040.                 UUCP:
  1041.  
  1042. uunet           for UUNET customers             ~/X/R5 decwrl existing
  1043. neighbors only         ~/pub/X11/R5
  1044. osu-cis                                         ~/X.V11R5
  1045.         (not online until ~ 9 Sept)
  1046. utai            existing neighbors only         ~/ftp/pub/X11R5
  1047. hp4nl           Netherlands only                ~uucp/pub/windows/X/R5
  1048.  
  1049.  
  1050.  
  1051.                  NFS:
  1052. Missouri        wuarchive.wustl.edu             /archive/packages/X11R5
  1053.         128.252.135.4                   mount point: /archive
  1054.  
  1055.                  AFS:
  1056. Pennsylvania    /afs/grand.central.org/pub/X11R5
  1057.  
  1058.              NIFTP (hhcp, cpf, fcp, ...):
  1059. United Kingdom  uk.ac.ic.doc.src                <X.V11R5>
  1060.         00000510200001 user "guest"
  1061.  
  1062.                   anon FTAM:
  1063. United Kingdom  000005102000 (Janet)            X.V11R5
  1064.         146.169.3.7 (Internet) 204334504108 (IXI)
  1065.  
  1066.                    ACSNet:
  1067. Australia       munnari.oz (fetchfile)          X.V11/R5
  1068.         Please fetch only one file at a time, after checking that a
  1069.         copy is not available at a closer site.
  1070.  
  1071. [9/2/91; updated for contrib 10/91]
  1072.  
  1073. Anyone in Europe can get a copy of the X.V11R5 distribution, including the
  1074. core and contributed software and all official patches, free of charge.  The
  1075. only requirement is to agree to return the tapes, or equivalent new tapes.
  1076. Only QIC and TK format cartridges can be provided.  Contact: Jamie Watson,
  1077. Adasoft AG, Nesslerenweg 104, 3084 Wabern, Switzerland.  Tel: +41 31 961.35.70
  1078. or +41 62 61.41.21; Fax: +41 62 61.41.30; jw@adasoft.ch.
  1079.  
  1080. UK sites can obtain X11 through the UKUUG Software Distribution Service, from
  1081. the Department of Computing, Imperial College, London, in several tape
  1082. formats.  You may also obtain the source via Janet (and therefore PSS) using
  1083. Niftp (Host:  uk.ac.ic.doc.src Name: guest Password: your_email_address).
  1084. Queries should be directed to Lee McLoughlin, 071-589-5111#5037, or to
  1085. info-server@doc.ic.ac.uk or ukuug-soft@uk.ac.ic.doc (send a Subject line of
  1086. "wanted"). Also offered are copies of comp.sources.x, the ftp.x.org contrib
  1087. and doc areas and most other announced freely distributable packages.
  1088.  
  1089. X11R5 and X11R4 source along with X11R5 contrib code, prebuilt X binaries for
  1090. major platforms (R5.21), and source code examples from O'Reilly's books is
  1091. available on an ISO-9660-format CD-ROM (with Rock Ridge extensions) from
  1092. O'Reilly & Associates. [6/92].
  1093.  
  1094. X11R5 source is available on ISO-9660-format CD-ROM for members of the Japan
  1095. Unix Society from Hiroaki Obata, obata@jrd.dec.com.
  1096.  
  1097. X11R5 source along with GNU source, the comp.sources.x archives, and SPARC
  1098. binaries is available on an ISO-9660-format CD-ROM from PDQ Software,
  1099. 510-947-5996 (or Robert A. Bruce, rab@sprite.Berkeley.EDU).
  1100.  
  1101. X11R5 source is available from Automata Design Associates, +1 215-646-4894.
  1102.  
  1103. X11R5 source is part of the Free Software Foundation GNU CD-ROM (2nd Edition).
  1104.  
  1105. Various users' groups (e.g. SUG) offer X sources cheaply, typically on
  1106. CD-ROM.
  1107.  
  1108. Source for the Andrew User Interface System 6.3.1 (9/94) are available on
  1109. ftp.andrew.cmu.edu in pub/AUIS and via tape from the Andrew Consortium,
  1110. School of Computer Science, Carnegie Mellon University, 5000 Forbes Ave.,
  1111. Pittsburgh PA 15217.  Information: info-andrew-requests@andrew.cmu.edu,
  1112. 412-268-6710, fax 412-621-8081, http://www.cs.cmu.edu/~AUIS .
  1113.  
  1114. Binaries for X11R5, with shared libX11 and libXmu, for A/UX 2.0.1 are now
  1115. available from wuarchive.wustl.edu:/archive/systems/aux/X11R5.  Patches for
  1116. X11R5 compiled with gcc (but not shared libraries) are also available.  [John
  1117. L. Coolidge (coolidge@cs.uiuc.edu, 10/91)]
  1118.  
  1119. A binary tree for the Next by Douglas Scott (doug@foxtrot.ccmrc.ucsb.edu) is
  1120. on foxtrot.ccmrc.ucsb.edu; it is missing the server, though.
  1121.  
  1122. Binaries for the Sun386i are in vernam.cs.uwm.edu:/sun386i.
  1123.  
  1124. Binaries for the HP-PA are on hpcvaaz.cv.hp.com (15.255.72.15).
  1125.  
  1126. Binaries for the HP-PA are on ftp.cae.wisc.edu.
  1127.  
  1128. Binaries of X11R5.26 for Sun3/SunOS4.1.1 systems are on ftp.cad.gatech.edu as
  1129. X11R5.pl26.slim.sun3.gcc258.tar.gz; the distribution includes also binaries of
  1130. common X tools.
  1131.  
  1132. Binaries of X11R5 for Solaris 2, packaged for installation with pkgadd, are in
  1133. camus.quintus.com:/pub/X11R5.
  1134.  
  1135. Source and binaries for HP-UX 8.*/9.0(S300/400/700/800) and Domain 10.4 (68K,
  1136. DN 10K) are available through the Interworks Users Group; contact Carol Relph
  1137. at 508-436-5046, fax 508-256-7169, or relph_c@apollo.hp.com.
  1138.  
  1139. Patches to X11R5 for Solaris 2.1 by Casper H.S. Dik (casper@fwi.uva.nl) et al
  1140. are on ftp.x.org in R5contrib/{R5.SunOS5.patch.tar.Z,R5.SunOS5.patch.README}.
  1141.  
  1142. X servers for color and monochrome NeXT machines is on foxtrot.ccmrc.ucsb.edu
  1143. in /pub/X11R5-MouseX.tar.Z. Source patches are expected to be on orst and
  1144. sonata as X11R5-source.patch.tar.Z.
  1145.  
  1146. An X11R5 package for multi-lingual users is available (for SunOS 4.1.3 and 
  1147. Solaris 2.1 and later) on ftp.waseda.ac.jp (133.9.1.32) in
  1148. ftp/pub3/X11R5/binaries/. 
  1149.  
  1150. A full port of X11R5 is now available on the Atari platform (all machines
  1151. 68000, 68030 & 68040) and is available at
  1152. http://www.ph.kcl.ac.uk/~sjg/ftp/X11R5.html
  1153.  
  1154. Also:
  1155.  
  1156. Binaries are available from Unipalm (+44 954 211797, xtech@unipalm.co.uk),
  1157. probably for the Sun platforms.
  1158.  
  1159. ----------------------------------------------------------------------
  1160.  
  1161.  
  1162. David B. Lewis                     faq%craft@uunet.uu.net
  1163.  
  1164.         "Just the FAQs, ma'am." -- Joe Friday 
  1165.