home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / fj / maillis / xwindow / 17612 < prev    next >
Encoding:
Internet Message Format  |  1992-11-18  |  52.5 KB

  1. Path: sparky!uunet!stanford.edu!sun-barr!sh.wide!wnoc-tyo-news!scslwide!wsgw!wsservra!daemon
  2. From: dbl@visual.com (David B. Lewis)
  3. Newsgroups: fj.mail-lists.x-window
  4. Subject: comp.windows.x Frequently Asked Questions (FAQ) 2/4
  5. Message-ID: <1992Nov19.003449.18657@sm.sony.co.jp>
  6. Date: 19 Nov 92 00:34:49 GMT
  7. Sender: daemon@sm.sony.co.jp (The devil himself)
  8. Distribution: fj
  9. Organization: Visual
  10. Lines: 1126
  11. Approved: michael@sm.sony.co.jp
  12.  
  13. Date: Tue, 17 Nov 92 22:08:12 GMT
  14. Message-Id: <1992Nov17.220812.9632@visual.com>
  15. Newsgroups: comp.windows.x,news.answers
  16. Sender: xpert-request@expo.lcs.mit.edu
  17.  
  18. Archive-name: x-faq/part2
  19. Last-modified: 1992/11/16
  20.  
  21. ----------------------------------------------------------------------
  22. Subject:  34)  How does Xt use environment variables in loading resources?
  23.  
  24.     You can use several environment variables to control how resources are 
  25. loaded for your Xt-based programs -- XFILESEARCHPATH, XUSERFILESEARCHPATH, and 
  26. XAPPLRESDIR.  These environment variables control where Xt looks for 
  27. application-defaults files as an application is initializing.  Xt loads at most
  28. one app-defaults file from the path defined in XFILESEARCHPATH and another from
  29. the path defined in XUSERFILESEARCHPATH.
  30.  
  31.     Set XFILESEARCHPATH if software is installed on your system in such a 
  32. way that app-defaults files appear in several different directory hierarchies.
  33. Suppose, for example, that you are running Sun's Open Windows, and you also 
  34. have some R4 X applications installed in /usr/lib/X11/app-defaults. You could 
  35. set a value like this for XFILESEARCHPATH, and it would cause Xt to look up 
  36. app-defaults files in both /usr/lib/X11 and /usr/openwin/lib (or wherever your
  37. OPENWINHOME is located):
  38.     setenv XFILESEARCHPATH /usr/lib/X11/%T/%N:$OPENWINHOME/lib/%T/%N
  39.  
  40.     The value of this environment variable is a colon-separated list of
  41. pathnames.  The pathnames contain replacement characters as follows:
  42.     %T        the literal string "app-defaults" [works only in
  43.             XFILESEARCHPATH]
  44.     %N        application class name
  45.     %C        customization resource (R5 only)
  46.     %L        language, locale, and codeset (e.g. "ja_JP.EUC")
  47.     %l        language part of %L  (e.g. "ja") 
  48.  
  49.     Let's take apart the example.  Suppose the application's class name is 
  50. "Myterm". Also, suppose Open Windows is installed in /usr/openwin. (Notice the 
  51. example omits locale-specific lookup.)
  52.     /usr/lib/X11/%T/%N        means /usr/lib/X11/app-defaults/Myterm
  53.     $OPENWINHOME/lib/%T/%N    means /usr/openwin/lib/app-defaults/Myterm
  54.  
  55.     As the application initializes, Xt tries to open both of the above 
  56. app-defaults files, in the order shown.  As soon as it finds one, it reads it 
  57. and uses it, and stops looking for others.  The effect of this path is to 
  58. search first in /usr/lib/X11, then in /usr/openwin.
  59.  
  60.     Let's consider another example. This time, let's set 
  61. XUSERFILESEARCHPATH so it looks for the file Myterm.ad in the current working 
  62. directory, then for Myterm in the directory ~/app-defaults.
  63.     setenv XUSERFILESEARCHPATH ./%N.ad:$HOME/app-defaults/%N
  64.  
  65.     The first path in the list expands to ./Myterm.ad.  The second expands 
  66. to $HOME/app-defaults/Myterm.  This is a convenient setting for debugging 
  67. because it follows the Imake convention of naming the app-defaults file 
  68. Myterm.ad in the application's source directory, so you can run the application
  69. from the directory in which you are working and still have the resources loaded
  70. properly.
  71.  
  72.     With R5, there's another twist.  You may specify a customization 
  73. resource value.  For example, you might run the "myterm" application like this:
  74.     myterm -xrm "*customization: -color"
  75.  
  76.     If one of your pathname specifications had the value
  77. "/usr/lib/X11/%T/%N%C" then the expanded pathname would be
  78. "/usr/lib/X11/app-defaults/Myterm-color" because the %C substitution character 
  79. takes on the value of the customization resource.
  80.  
  81.     The default XFILESEARCHPATH, compiled into Xt, is:
  82.         /usr/lib/X11/%L/%T/%N%C:\  (R5)
  83.         /usr/lib/X11/%l/%T/%N%C:\  (R5)
  84.         /usr/lib/X11/%T/%N%C:\     (R5)
  85.         /usr/lib/X11/%L/%T/%N:\
  86.         /usr/lib/X11/%l/%T/%N:\
  87.         /usr/lib/X11/%T/%N
  88.  
  89.     (Note: some sites replace /usr/lib/X11 with a ProjectRoot in
  90. this batch of default settings.)
  91.  
  92.     The default XUSERFILESEARCHPATH, also compiled into Xt, is 
  93.         <root>/%L/%N%C:\  (R5)
  94.         <root>/%l/%N%C:\  (R5)
  95.         <root>/%N%C:\     (R5)
  96.         <root>/%L/%N:\
  97.         <root>/%l/%N:\
  98.         <root>/%N:
  99.  
  100.     <root> is either the value of XAPPLRESDIR or the user's home directory 
  101. if XAPPLRESDIR is not set.  If you set XUSERFILESEARCHPATH to some value other 
  102. than the default, Xt ignores XAPPLRESDIR altogether.
  103.  
  104.     Notice that the quick and dirty way of making your application find 
  105. your app-defaults file in your current working directory is to set XAPPLRESDIR 
  106. to ".", a single dot.  In R3, all this machinery worked differently; for R3 
  107. compatibilty, many people set their XAPPLRESDIR value to "./", a dot followed 
  108. by a slash.
  109.  
  110. [Thanks to Oliver Jones (oj@pictel.com) and Peter Ware, 8/92]
  111.  
  112. ----------------------------------------------------------------------
  113. Subject:  35)  How to I have the R4 xdm put a picture behind the log-in window?
  114.  
  115. The answer lies in changing xdm's xrdb resource in the xdm-config file to run a
  116. program to change the background before loading the resources; for example, 
  117. your /usr/lib/X11/xdm/xdm-config file may add the line 
  118.     DisplayManager.0.authorize: false 
  119. to permit unrestricted access to the display before log-in (beware!) and also 
  120.     DisplayManager*xrdb:    /usr/lib/X11/xdm/new.xrdb
  121. where that file does something (for all connections) along the lines of:
  122.     #!/bin/sh
  123.     #comes in with arguments: -display :0 -load /usr/lib/X11/xdm/Xresources
  124.     /usr/bin/X11/xsetroot -display $2 -bitmap /usr/lib/X11/xdm/new.bitmap
  125.     /usr/bin/X11/xrdb $*
  126. Substitute xloadimage or xv for xsetroot, to taste.  Note that this is a 
  127. general hack that can be used to invoke a console window or any other client.
  128.  
  129. [Thanks to Jay Bourland (jayb@cauchy.stanford.edu), 9/91]
  130.  
  131. ----------------------------------------------------------------------
  132. Subject:  36)  Why isn't my PATH set when xdm runs my .xsession file?
  133.  
  134.     When xdm runs your .xsession it doesn't source your .cshrc or .login
  135. files. You can set the path explicitly as you normally could for any SH script;
  136. or you can place all environment-setting statements in a separate file and
  137. source it from both the .xsession file and your shell configuration file; or,
  138. if you set your PATH in your .cshrc file, the normal place, you can make your 
  139. .xsession have PATH set simply by making it a csh script, i.e. by starting
  140. your .xsession file off with "#!/bin/csh". 
  141.     If this doesn't work, also try starting off with:
  142.         #!/bin/sh
  143.         # Reset path:
  144.         PATH=`csh -c 'echo $PATH'` ; export PATH
  145.  
  146. ----------------------------------------------------------------------
  147. Subject:  37)  How do I keep my $DISPLAY when I rlogin to another machine?
  148.  
  149.     There are several ways to avoid having to do a "setenv DISPLAY ..."
  150. whenever you log in to another networked UNIX machine running X.
  151.     One solution is to use the clients/xrsh on the R5 contrib tape.  It 
  152. includes xrsh, a script to start an X application on remote machine, and
  153. xrlogin, a script to start a local xterm running rlogin to a remote machine.
  154. A more recent version is on export in xrsh-5.4.shar.
  155.     One solution is to use the xrlogin program from der Mouse
  156. (mouse@larry.mcrcim.mcgill.edu). You can ftp caveat-emptor versions from
  157. 132.206.1.1, in X/xrlogin.c and X/xrlogind.c. The program packages up $TERM and
  158. $DISPLAY into a single string, which is stuffed into $TERM.  rlogin then 
  159. propagates $TERM normally; your .cshrc on the remote machine should contain
  160.         eval `xrlogind`
  161. where xrlogind is a program that checks $TERM and if it is of the special 
  162. format it recognizes, unpacks it and spits out setenv and unsetenv commands to 
  163. recreate the environment variables. [11/90]
  164.  
  165.     In addition, if all you need to do is start a remote X process on 
  166. another host, and you find
  167.         rsh <HOST> -n /usr/bin/X11/xterm -display $DISPLAY 
  168. too simple (DISPLAY must have your real hostname), then this version of xrsh 
  169. can be used to start up remote X processes. The equivalent usage would be 
  170.         xrsh <HOST> xterm
  171.  
  172.   #! /bin/sh
  173.   # start an X11 process on another host
  174.   # Date: 8 Dec 88 06:29:34 GMT
  175.   # From: Chris Torek <chris@mimsy.umd.edu>
  176.   # rsh $host -n "setenv DISPLAY $DISPLAY; exec $@ </dev/null >&/dev/null"
  177.   #
  178.   # An improved version:
  179.   # rXcmd (suggested by John Robinson, jr@bbn.com)
  180.   #       (generalized for sh,ksh by Keith Boyer, keith@cis.ohio-state.edu)
  181.   #
  182.   # but they put the rcmd in ()'s which left zombies again.  This
  183.   # script combines the best of both.
  184.   
  185.   case $# in
  186.   [01])  echo "Usage: $0 host x-cmd [args...]";;
  187.   *)
  188.       case $SHELL in
  189.       *csh*)  host="$1"; shift
  190.           xhost "$host" > /dev/null
  191.           rsh "$host" -n \
  192.               "setenv TERM xterm; setenv DISPLAY `hostname`:0; \
  193.               exec $* </dev/null >& /dev/null" &
  194.           ;;
  195.       *sh)
  196.           host="$1"; shift
  197.           xhost "$host" > /dev/null
  198.           rsh "$host" -n \
  199.               "TERM=xterm export TERM; \
  200.               DISPLAY=`hostname`:0 export DISPLAY; \
  201.               LD_LIBRARY_PATH=/usr/X11/lib export LD_LIBRARY_PATH; \
  202.               PATH=\$PATH:/usr/X11/bin:/usr/bin/X11:/usr/local/bin; \            export PATH; \
  203.               exec $* < /dev/null > /dev/null 2>&1" &
  204.           ;;
  205.       esac
  206.       ;;
  207.   esac
  208.  
  209. ----------------------------------------------------------------------
  210. Subject:  38)  How can I design my own font?
  211.  
  212.     One way is to use the "bitmap" client or some other bitmap-editor (e.g.
  213. Sun's icon-editor tool, post-processed with pbmplus) to design the individual 
  214. characters and then to do some large amount of post-processing to concatenate 
  215. them into the BDF format. See Ollie Jones's article in the November 91 X 
  216. Journal for more information.
  217.     The R3 contrib/ area (in fonts/utils/ and in clients/xtroff) contained 
  218. a number of useful utilities, including some to convert between BDF font format
  219. and a simple character format which can be edited with any text editor.
  220.     An easier way is to use the "xfed" client to modify an existing font; a
  221. version is on the R4 or R5 X11R5 contrib tape in contrib/clients/xfed. Xfed is 
  222. available for anonymous ftp on ftp.Informatik.Uni-Dortmund.DE [129.217.64.63], 
  223. possibly as file /pub/windows/X/Diverse-X11-Sourcen/xfed.tar.Z. It can produce
  224. BDF-format fonts which can be compiled for a variety of X servers.
  225.     The xfedor client from Group Bull permits creation of bitmaps, cursors,
  226. XPM1 pixmaps, and fonts. Binaries for common machines are on avahi.inria.fr in
  227. /pub; in addition, the sources (an old Xlib implementation) have been placed 
  228. [5/91] in export:/contrib. 
  229.     If you are a MetaFont user you can use "mftobdf" from the SeeTeX
  230. distribution to convert PK, GF, and PXL fonts to BDF format; the distribution
  231. is on ftp.cs.colorado.edu and on export.lcs.mit.edu.
  232.     The GNU package fontutils-0.4.tar.Z on prep.ai.mit.edu includes xbfe,
  233. a font editor, and a number of utilities for massaging font formats.
  234.     The O'Reilly X Resource issue #2 contains an article on using these
  235. tools to modify a font.
  236.     Fonts can be resized with Hiroto Kagotani's bdfresize; a new version is
  237. in ftp.cs.titech.ac.jp:/X11/contrib.
  238.  
  239. ----------------------------------------------------------------------
  240. Subject:  39)  Why does adding a font to the server not work (sic)?
  241.  
  242.     After you have built the font using your system's font-compiler, 
  243. installed it in some directory, and run `mkfontdir` or your system's equivalent
  244. (e.g. bldfamily for OpenWindows) in that directory, be sure to use `xset +fp 
  245. $dir` to add that full path-name to the server's font-path, *or* if the 
  246. directory is already in the path, use `xset fp rehash` so that the new fonts in
  247. that directory are actually found; it is this last step that you're probably 
  248. leaving out. (You can also use `xset q` to make sure that that directory is in 
  249. the path.)
  250.     Sometimes your "xset +fp $dir" command fails with a BadValue error:
  251. X Error of failed request:BadValue(integer parameter out of range for operation)
  252.   Major opcode of failed request:  51 (X_SetFontPath)
  253.  
  254.     This means the X server cannot find or read your font directory, or
  255. that your directory does not look like a font directory to the server.  (The
  256. mention of an "integer parameter" in the message is spurious.)
  257.  
  258. -- Is the font directory you're specifying readable from the SERVER's file
  259.    system?  Remember, it's the server, not the client, which interprets your
  260.    font directory.  Trouble in this area is especially likely when you issue an
  261.    xset command with shell metacharacters in it (e.g. "xset +fp ~/myfonts") and
  262.    the server is an X terminal or managed by xdm.
  263.  
  264. -- Is the directory really a font directory?  If you're running an MIT server
  265.    (or most varieties of vendor servers) look in the directory for the file
  266.    "fonts.dir".  If you can't find that file, run mkfontdir(1).  (If you're
  267.    running OpenWindows, look for the file "Families.list".  If you can't find
  268.    it, run bldfamily(1).)
  269.  
  270. -- If you're in a site where some people run X11Rn servers and others run a
  271.    proprietary server with nonstandard font formats (OpenWindows, for
  272.    example), make sure the font directory is right for the server you're using.
  273.    Hint: if the directory contains .pcf and/or .snf files, it won't work for
  274.    Open Windows.  If the directory contains .ff and/or .fb files, it won't work
  275.    for X11Rn.
  276.  
  277. [thanks to der Mouse (mouse@larry.mcrcim.mcgill.edu) and to Oliver Jones 
  278. (oj@pictel.com); 7/92 ]
  279.  
  280. ----------------------------------------------------------------------
  281. Subject:  40)  How do I convert a ".snf" font back to ".bdf" font?
  282.  
  283.     A tool called "snftobdf 1.4" is part of the bdftools package, which is 
  284. available from export.lcs.mit.edu:contrib/bdftools.tar.Z and from 
  285. crl.nmsu.edu:pub/misc/bdftools.tar.Z. Sources have been posted to fj.sources on
  286. JUNET and should be appearing on comp.sources.x. [2/91]
  287.  
  288. ----------------------------------------------------------------------
  289. Subject:  41)  What is a general method of getting a font in usable format?
  290.  
  291.     der Mouse's getbdf is one solution; it connects to a server and 
  292. produces a .BDF file for any font the server is willing to let it.  It can be 
  293. used as an anything-to-BDF converter, but requires access to a server that can 
  294. understand the font file, thus is both more and less powerful than other tools 
  295. such as snftobdf. getbdf is on 132.206.1.1 in X/getbdf.c or available via mail 
  296. from mouse@larry.McRCIM.McGill.EDU. [5/91]
  297.     In addition, the R5 program "fstobdf" can produce bdf for any font that
  298. the R5 server has access to.
  299.  
  300. ----------------------------------------------------------------------
  301. Subject:  42)  How do I use DECwindows fonts on my non-DECwindows server?
  302.  
  303.     The DECwindows fonts typically don't exist on a non-DEC installation,
  304. but rewrite rules can be used to alias fonts used by DECwindows applications to
  305. standard MIT fonts of similar characteristics and size. Pick up the file 
  306. contrib/DECwindows_on_X11R4_font.aliases from export.lcs.mit.edu; this file is 
  307. for a standard MIT R4 server.  It can also serve as a starting point for 
  308. creating a similar aliases file for the Open Windows server or other servers 
  309. which do not use the MIT font scheme.
  310.  
  311. ----------------------------------------------------------------------
  312. Subject:  43)  How do I add ".bdf" fonts to my DECwindows server?
  313.  
  314.     The format of fonts preferred by DEC's X server is the ".pcf" format.
  315. You can produce this compiled format from the .bdf format by using DEC's dxfc
  316. font-compiler. Note that the DEC servers can also use raw .bdf fonts, with a
  317. performance hit.
  318.  
  319. ----------------------------------------------------------------------
  320. Subject:  44)  How can I set the backgroundPixmap resource in a defaults file?
  321. I want to be able to do something like this:
  322.     xclock*backgroundPixmap:      /usr/include/X11/bitmaps/rootweave
  323.  
  324.     You can't do this. The backgroundPixmap resource is a pixmap of the 
  325. same depth as the screen, not a bitmap (which is a pixmap of depth 1). Because 
  326. of this, writing a generic String to Pixmap converter is impossible, since 
  327. there is no accepted convention for a file format for pixmaps. Therefore, 
  328. neither the X Toolkit or the Athena widget set define a String to Pixmap 
  329. converter, because there is no converter you cannot specify this value as a 
  330. resource.  The Athena widget set does define a String to Bitmap converter for 
  331. use in many of its widgets, however.
  332. [courtesy Chris D. Peterson (now kit@ics.com), 4/90]
  333.  
  334. However:
  335.     A specific converter which encapsulates much of the functionality of 
  336. the xloadimage package by Jim Frost was posted 12/90 by Sebastian Wangnick 
  337. (basti@unido.informatik.uni-dortmund.de); it permits loading of a number of 
  338. image formats as a pixmap.
  339.  
  340.     The leading general-purpose format for pixmaps is the XPM format used 
  341. by Groupe Bull in several of its programs, including the GWM window manager, by
  342. AT&T in its olpixmap editor, and by ICS in its interface builder. XPM 
  343. distribution, available on export as contrib/xpm.tar.Z, includes read/write 
  344. routines which can easily be adapted to converters by new widgets which want to
  345. allow specification of pixmap resources in the above manner.  See information
  346. on the xpm-talk mailing list above. XPM 3.0c was announced in 10/91 and is
  347. available from export.lcs.mit.edu and avahi.inria.fr; it should be on the R5
  348. contrib tape. XPM 3.2a is now available. [8/92]
  349.  
  350. ----------------------------------------------------------------------
  351. Subject:  45)  Why can't I override translations? Only the first item works.
  352.  
  353.     You probably have an extra space after the specification of the first 
  354. item, like this:
  355.     basic*text.translations:  #override \
  356.     Ctrl<Key>a:    beginning-of-line() \n\     
  357.     Ctrl<Key>e:    end-of-line()
  358.                           ^ extra space
  359. The newline after that space is ending the translation definition.
  360. [Thanks to Timothy J. Horton, 5/91]
  361.  
  362. ----------------------------------------------------------------------
  363. Subject:  46)  How can I have xclock or oclock show different timezones?
  364.  
  365.     One solution is xchron, in Volume 6 of comp.sources.x, which can show
  366. the time for timezones other than the local one. 
  367.     Alternatively, you can probably set the timezone in the shell from
  368. which you invoke the xclock or oclock, or use a script similar to this:
  369.     #!/bin/sh
  370.     TZ=PST8PDT xclock -name "Seattle" 2> /dev/null &
  371.     TZ=EST5EDT xclock -name "Arlington" 2> /dev/null &
  372.  
  373. ----------------------------------------------------------------------
  374. Subject:  47)  I have xmh, but it doesn't work. Where can I get MH?
  375.  
  376.     The xmh mail-reader requires the Rand MH mail/message handling system,
  377. which is not part of the UNIX software distribution for many machines. A list 
  378. of various ftp, uucp, e-mail and US-mail sites for both xmh and MH is given in 
  379. the monthly MH FAQ; one source is ics.uci.edu in the file pub/mh/mh-6.7.tar.Z.  
  380. If you do not receive the comp.mail.mh newsgroup or the MH-users mailing list, 
  381. you can request a copy of the FAQ, which also includes a section on xmh, 
  382. by sending mail to mail-server@pit-manager.mit.edu containing the request
  383. "send usenet/news.answers/mh-faq".
  384.  
  385. ----------------------------------------------------------------------
  386. Subject:  48)  Why am I suddenly unable to connect to my Sun X server?
  387. After a seemingly random amount of time after the X server has been started, no
  388. other clients are able to connect to it.
  389.  
  390.     The default cron cleanup jobs supplied by Sun (for 4.0.3, at least)
  391. delete "old" (unreferenced) files from /tmp -- including /tmp/.X11-unix, which 
  392. contains the socket descriptor used by X. The solution is to add "! -type s" to
  393. the find exclusion in the cron job.
  394. [10/90]
  395.  
  396. ----------------------------------------------------------------------
  397. Subject:  49)  Why don't the R5 PEX demos work on my mono screen?
  398.  
  399. The R5 sample server implementation works only on color screens, sorry.
  400.  
  401. ----------------------------------------------------------------------
  402. Subject:  50)! How do I get my Sun Type-[45] keyboard fully supported by Xsun?
  403.  
  404. Many users wants the Num Lock key to light the Num Lock LED and have the 
  405. appropriate effect on the numeric keypad. The Xsun server as distributed by MIT
  406. doesn't do this but there are two different patches available.
  407.  
  408. The first patch is written by Jonathan Lemon and fixes the Num Lock related 
  409. problems. It is available from export.lcs.mit.edu in the file
  410. contrib/Xsun-R5.numlock_patch.Z .
  411.  
  412. The second is written by Martin Forssen and fixes the Num Lock and Compose keys
  413. and adds support for the different national keyboard layouts for Type-4 and 
  414. Type-5 keyboards. This patch is available from export.lcs.mit.edu in
  415. contrib/sunkbd.tar.Z or via email from maf@dtek.chalmers.se.
  416.  
  417. [thanks to Martin Forssen (maf@dtek.chalmers.se or maf@math.chalmers.se), 8/92]
  418.  
  419. A set of patches by William Bailey (dbgwab@arco.com) was posted to newsgroups
  420. 11/92 to provide support for the Type-5 keyboard.
  421.  
  422. ----------------------------------------------------------------------
  423. Subject:  51)  How do I report bugs in X?
  424.  
  425.     Generally, report bugs you find to the organization that supplied you
  426. with the X Window System. If you received the R5 source distribution directly 
  427. from MIT, please read the file mit/bug-report for instructions. [Look in
  428. mit/doc/bugs/bug-report in R4.]
  429.  
  430. [Thanks to Stephen Gildea <gildea@expo.lcs.mit.edu>, 5/91; 12/91]
  431.  
  432. ----------------------------------------------------------------------
  433. Subject:  52)  Why do I get "Warning: Widget class version mismatch"?
  434.  
  435.     This error, which typically goes on to say, "widget 11004 vs. 
  436. intrinsics 11003" indicates that the header files you included when building 
  437. your program didn't match the header files that the Xt library you're linking 
  438. against was built with; check your -I include path and -L link-path to be sure.
  439.     However, the problem also occurs when linking against a version of the 
  440. X11R4 Xt library before patch 10; the version number was wrong. Some Sun OW
  441. systems, in particular, were shipped with the flawed version of the library, 
  442. and applications which link against the library typically give the warnings you
  443. have seen.
  444.  
  445. ----------------------------------------------------------------------
  446. Subject:  53)  Where can I find a dictionary server for xwebster?
  447.  
  448.     Webster's still owns the copyright to the on-line copies of Webster's
  449. Dictionary which are found at various (university) sites. After it became aware
  450. that these sites were then acting as servers for other sites running xwebster 
  451. and gnuemacs-webster, it asked that server sites close off external access.
  452.     [The NeXT machine apparently is also licensed to have the dictionary. A
  453. Webster daemon for NeXT machines is available from iuvax.cs.indiana.edu 
  454. (129.79.254.192) in "pub/webster/NeXT-2.0".]
  455.     Unless you want to get a legal on-line copy yourself or can find a site
  456. which can grant you access, you are probably out of luck. 
  457.  
  458.     However, if you are a legitimate site, you'll want to pick up the
  459. latest xwebster, as-is on export:contrib/xwebster.tar.Z [10/91]; the file 
  460. xwebster.README includes discussions of the availability, illegality, and 
  461. non-availability of dictionary servers. 
  462.     
  463. [courtesy steve@UMIACS.UMD.EDU (Steve Miller) and mayer@hplabs.hp.com (Niels 
  464. Mayer) 11/90]
  465.  
  466. ----------------------------------------------------------------------
  467. Subject:  54)  TOPIC: OBTAINING X AND RELATED SOFTWARE AND HARDWARE
  468. ----------------------------------------------------------------------
  469. Subject:  55)  Is X public-domain software?
  470.  
  471.     No. The X software is copyrighted by various institutions and is not 
  472. "public domain", which has a specific legal meaning. However, the X 
  473. distribution is available for free and can be redistributed without fee.
  474.     Contributed software, though, may be placed in the public domain by
  475. individual authors.
  476.  
  477. ----------------------------------------------------------------------
  478. Subject:  56)  How compatible are X11R3, R4, and R5? What changes are there?
  479.  
  480. The Release Notes for each MIT release of X11 specify the changes from the 
  481. previous release.  The X Consortium tries very hard to maintain compatibility 
  482. across releases.  In the few places where incompatible changes were necessary, 
  483. details are given in the Release Notes.  Each X11 distribution site on the 
  484. network also offers the Release Notes that go with the release they offer; the 
  485. file typically can be found at the top of the distribution tree.
  486.  
  487. [Stephen Gildea, 1/92]
  488.  
  489. The comp.windows.x.intrinsics FAQ-Xt lists Xt differences among these versions.
  490.  
  491. ----------------------------------------------------------------------
  492. Subject:  57)  Where can I get X11R5 (source and/or binaries)?
  493.  
  494. Information about MIT's distribution of the sources on 6250bpi and QIC-24 tape 
  495. and its distribution of hardcopy of the documents is available from 
  496. Software Center, Technology Licensing Office, Massachusetts Institute of 
  497. Technology, 28 Carleton Street, Room E32-300, Cambridge MA 02142-1324,
  498. phone: 617-258-8330.
  499.  
  500. You will need about 100Mb of disk space to hold all of Core and 140MB to hold
  501. the Contrib software donated by individuals and companies. 
  502.  
  503. PLEASE use a site that is close to you in the network.
  504.  
  505. Note that the RELEASE notes are generally available separately in the same
  506. directory; the notes list changes from previous versions of X and offer a
  507. guide to the distribution.
  508.  
  509.               North America anonymous FTP:
  510.  
  511. California    gatekeeper.dec.com        pub/X11/R5
  512.         16.1.0.2
  513. California    soda.berkeley.edu        pub/X11R5
  514.         128.32.131.179
  515. Indiana        mordred.cs.purdue.edu        pub/X11/R5
  516.         128.10.2.2
  517. Maryland    ftp.brl.mil            pub/X11R5
  518.         128.63.16.158
  519.         (good for MILNET sites)
  520. Massachusetts    crl.dec.com            pub/X11/R5
  521.         192.58.206.2
  522. Massachusetts    export.lcs.mit.edu        pub/R5
  523.         18.24.0.12
  524.         (crl.dec.com is better)
  525. Michigan    merit.edu            pub/X11R5
  526.         35.1.1.42
  527. Missouri    wuarchive.wustl.edu        packages/X11R5
  528.         128.252.135.4
  529. Montana        ftp.cs.montana.edu        pub/X.V11R5
  530.         192.31.215.202
  531. New Mexico    pprg.eece.unm.edu        pub/dist/X11R5
  532.         129.24.24.10
  533. New York    azure.acsu.buffalo.edu        pub/X11R5
  534.         128.205.7.6
  535. North Carolina    cs.duke.edu            dist/sources/X11R5
  536.         128.109.140.1
  537. Ohio        ftp.cis.ohio-state.edu        pub/X.V11R5
  538.         128.146.8.52
  539. Ontario        ftp.cs.utoronto.ca        pub/X11R5
  540.         128.100.1.105
  541. Washington DC    x11r5-a.uu.net            X/R5
  542.         192.48.96.12
  543. Washington DC    x11r5-b.uu.net            X/R5
  544.         137.39.1.12
  545.  
  546.            Europe/Middle East/Australia anonymous FTP:
  547.  
  548. Australia    munnari.oz.au            X.V11/R5
  549.         128.250.1.21
  550. Denmark        freja.diku.dk            pub/X11R5
  551.         129.142.96.1
  552. United Kingdom    src.doc.ic.ac.uk        graphics/X.V11R5
  553.         146.169.3.7
  554.         hpb.mcc.ac.uk            pub/X11r5
  555.         130.88.200.7
  556. Finland        nic.funet.fi            pub/X11/R5
  557.         128.214.6.100
  558. France        nuri.inria.fr            X/X11R5
  559.         128.93.1.26
  560. Germany        ftp.germany.eu.net        pub/X11/X11R5
  561.         192.76.144.129
  562. Israel        cs.huji.ac.il            pub/X11R5
  563.         132.65.6.5
  564. Italy        ghost.sm.dsi.unimi.it        pub/X11R5
  565.         149.132.2.1
  566. Netherlands    archive.eu.net            windows/X/R5
  567.         192.16.202.1
  568. Norway        ugle.unit.no            pub/X11R5
  569.         129.241.1.97
  570. Norway        nac.no                pub/X11R5
  571.         129.240.2.40
  572. Switzerland    nic.switch.ch            software/X11R5
  573.         130.59.1.40
  574.  
  575.              Japan anonymous FTP:
  576.  
  577. Kanagawa    sh.wide.ad.jp            X11R5
  578.         133.4.11.11
  579. Kwansai        ftp.ics.osaka-u.ac.jp        X11R5
  580.         133.1.12.30
  581. Kyushu        wnoc-fuk.wide.ad.jp        X11R5
  582.         133.4.14.3
  583. TISN        utsun.s.u-tokyo.ac.jp        X11R5
  584.         133.11.11.11
  585. Tokyo        kerr.iwanami.co.jp        X11R5
  586.         133.235.128.1
  587. Tokyo        scslwide.sony.co.jp        pub/X11R5
  588.         133.138.199.1
  589.  
  590.                 UUCP:
  591.  
  592. uunet        for UUNET customers        ~/X/R5
  593. decwrl        existing neighbors only        ~/pub/X11/R5
  594. osu-cis                        ~/X.V11R5
  595.         (not online until ~ 9 Sept)
  596. WJanon        (host: watjo.swp.wj.com)    ~/X/X11R5/
  597.         Modem: Telebit TB2500 (PEP, V.32, etc)
  598.         Systems or L.sys suggested/approximate entry:
  599.             WJanon Any ACU 19200 1-408-435-0240 "" \r login: WJanon
  600. utai        existing neighbors only        ~/ftp/pub/X11R5
  601. hp4nl        Netherlands only        ~uucp/pub/windows/X/R5
  602.         
  603.  
  604.  
  605.                  NFS:
  606. Missouri    wuarchive.wustl.edu        /archive/packages/X11R5
  607.         128.252.135.4            mount point: /archive
  608.                             
  609.                  AFS:
  610. Pennsylvania    /afs/grand.central.org/pub/X11R5
  611.  
  612.              NIFTP (hhcp, cpf, fcp, ...):
  613. United Kingdom    uk.ac.ic.doc.src        <X.V11R5>
  614.         00000510200001
  615.         user "guest"
  616.  
  617.                   anon FTAM:
  618. United Kingdom    000005102000 (Janet)        X.V11R5
  619.         146.169.3.7 (Internet)
  620.         204334504108 (IXI)
  621.  
  622.                    ACSNet:
  623. Australia    munnari.oz (fetchfile)        X.V11/R5
  624.         Please fetch only one file
  625.         at a time, after checking
  626.         that a copy is not available
  627.         at a closer site.
  628.  
  629. [9/2/91; updated for contrib 10/91]
  630.  
  631. Anyone in Europe can get a copy of the MIT X.V11R5 distribution, including
  632. the core and contributed software and all official patches, free of charge.
  633. The only requirement is to agree to return the tapes, or equivalent new tapes.
  634. Only QIC and TK format cartridges can be provided.  Contact: Jamie Watson,
  635. Adasoft AG, Nesslerenweg 104, 3084 Wabern, Switzerland.
  636. Tel: +41 31 961.35.70 or +41 62 61.41.21; Fax: +41 62 61.41.30; jw@adasoft.ch.
  637.  
  638. UK sites can obtain X11 through the UKUUG Software Distribution Service, from 
  639. the Department of Computing, Imperial College, London, in several tape formats.
  640. You may also obtain the source via Janet (and therefore PSS) using Niftp (Host:
  641. uk.ac.ic.doc.src Name: guest Password: your_email_address).  Queries should be 
  642. directed to Lee McLoughlin, 071-589-5111#5037, or to info-server@doc.ic.ac.uk 
  643. or ukuug-soft@uk.ac.ic.doc (send a Subject line of "wanted". Also offered are 
  644. copies of comp.sources.x, the export.lcs.mit.edu contrib and doc areas and most
  645. other announced freely distributable packages. 
  646.  
  647. X11R5 and X11R4 source along with X11R5 contrib code, prebuilt X binaries for
  648. major platforms, and source code examples from O'Reilly's books is available on
  649. an ISO-9660-format CD-ROM from O'Reilly & Associates. [as of 3/92].
  650.  
  651. X11R5 source is available on ISO-9660-format CD-ROM for members of the Japan
  652. Unix Society from Hiroaki Obata, obata@jrd.dec.com.
  653.  
  654. X11R5 source along with GNU source, the comp.sources.x archives, and SPARC
  655. binaries is available on an ISO-9660-format CD-ROM from PDQ Software,
  656. 510-947-5996 (or Robert A. Bruce, rab@sprite.Berkeley.EDU).
  657.  
  658. X11R5 source is available from Automata Design Associates, +1 215-646-4894.
  659.  
  660. Various users' groups (e.g. SUG) offer X sources cheaply, typically on CD-ROM.
  661.  
  662. Source for the Andrew User Interface System 5.1 and binaries for common systems 
  663. are available on CD-ROM. Information: info-andrew-requests@andrew.cmu.edu,
  664. 412-268-6710, fax 412-621-8081.
  665.  
  666. Binaries for X11R5, with shared libX11 and libXmu, for A/UX 2.0.1 are now 
  667. available from wuarchive.wustl.edu:/archive/systems/aux/X11R5.  Patches for 
  668. X11R5 compiled with gcc (but not shared libraries) are also available.
  669. [John L. Coolidge (coolidge@cs.uiuc.edu, 10/91)]
  670.  
  671. Binaries by Rich Kaul (kaul@ee.eng.ohio-state.edu) for the Sun386i running 
  672. SunOS 4.0.2 are available on dsinc.dsi.com (please only after-hours USA EST).
  673.  
  674. Binaries for the Sun386i are available from compaq.com (131.168.249.254) in
  675. pub/sun-386i/sources and from vernam.cs.uwm.edu (129.89.9.117).
  676.  
  677. A binary tree for the Next by Douglas Scott (doug@foxtrot.ccmrc.ucsb.edu) is on
  678. foxtrot.ccmrc.ucsb.edu; it is missing the server, though.
  679.  
  680. Binaries for the Sun386i are in vernam.cs.uwm.edu:/sun386i.
  681.  
  682. Binaries for the HP-PA are on hpcvaaz.cv.hp.com (15.255.72.15).
  683.  
  684. Source and binaries for HP-UX 8.*/9.0(S300/400/700/800) and Domain 10.4 (68K,
  685. DN 10K) are available through the Interworks Users Group; contact Carol Relph
  686. at 508-436-5046, fax 508-256-7169, or relph_c@apollo.hp.com.
  687.  
  688. Patches to X11R5 for Solaris 2.0 by Danny Backx (db@sunbim.be) are on export in
  689. contrib/X11r5-Solaris2-patches.tar.Z.
  690.  
  691. Patches to X11R5 for the Sun Type 5 keyboard and the keyboard NumLock are 
  692. available from William Bailey (dbgwab@arco.com).
  693.  
  694.  
  695. Also:
  696.  
  697. Binaries are available from Unipalm (+44 954 211797, xtech@unipalm.co.uk), 
  698. probably for the Sun platforms. 
  699.  
  700. ----------------------------------------------------------------------
  701. Subject:  58)  Where can I get patches to X11R5?
  702.  
  703.     The release of new public patches by the MIT X Consortium is announced
  704. in the comp.windows.x.announce newsgroup.
  705.  
  706.     Patches themselves are available via ftp from export and from other
  707. sites from which X11 is available. They are now also distributed through the 
  708. newsgroup comp.sources.x. Some source re-sellers may be including patches in 
  709. their source distributions of X11.
  710.  
  711.     People without ftp access can use the xstuff mail server. It now has 
  712. 17 patches for X11R5 [8/92].  Send to xstuff@expo.lcs.mit.edu the Subject line
  713.         send fixes #
  714. where # is the name of the patch and is usually just the number of the patch.
  715.  
  716.     Here are a few complications:
  717.     1) fix 5 is in four parts; you need to request "5a", "5b", "5c" and 
  718. "5d" separately
  719.     2) the file sunGX.uu, which was part of an earlier patch, was 
  720. re-released with patch 7
  721.     3) fix 8 is in two parts: "8a" and "8b"
  722.     4) fix 13 is in three parts: "13a", "13b", and "13c"
  723.     5) fix 16 is in two parts: "16a" and "16b"
  724.  
  725. ----------------------------------------------------------------------
  726. Subject:  59)  What is the xstuff mail-archive?
  727.  
  728.     The xstuff server is a mail-response program. That means that you mail 
  729. it a request, and it mails back the response.
  730.     Any of the four possible commands must be the first word on a line. The 
  731. xstuff server reads your entire message before it does anything, so you can 
  732. have several different commands in a single message (unless you ask for help). 
  733. The xstuff server treats the "Subject:" header line just like any other line 
  734. of the message.
  735.     The archives are organized into a series of directories and 
  736. subdirectories.  Each directory has an index, and each subdirectory has an 
  737. index. The top-level index gives you an overview of what is in the 
  738. subdirectories, and the index for each subdirectory tells you what is in it.
  739.  
  740.     1) The command "help" or "send help" causes the server to send you a 
  741. more detailed version of this help file.
  742.     2) if your message contains a line whose first word is "index", then 
  743. the server will send you the top-level index of the contents of the archive. If
  744. there are other words on that line that match the name of subdirectories, then 
  745. the indexes for those subdirectories are sent instead of the top-level index. 
  746. For example, you can say "send index fixes" (or "index fixes"). A message that 
  747. requests an index cannot request data.
  748.     3) if your message contains a line whose first word is "send", then the
  749. xstuff server will send you the item(s) named on the rest of the line. To name 
  750. an item, you give its directory and its name. For example
  751.                 send fixes 1 4 8a 8b 9
  752.     You may issue multiple send requests. The xstuff server contains many 
  753. safeguards to ensure that it is not monopolized by people asking for large 
  754. amounts of data. The mailer is set up so that it will send no more than a fixed 
  755. amount of data each day. If the work queue contains more requests than the 
  756. day's quota, then the unsent files will not be processed until the next day. 
  757. Whenever the mailer is run to send its day's quota, it sends the requests out 
  758. shortest-first.
  759.     4) Some mailers produce mail headers that are unusable for extracting 
  760. return addresses.  If you use such a mailer, you won't get any response.  If 
  761. you happen to know an explicit path, you can include a line like
  762.         path foo%bar.bitnet@mitvma.mit.edu
  763. or
  764.         path bar!foo!frotz
  765. in the body of your message, and the daemon will use it.
  766.  
  767.     The xstuff server itself can be reached at xstuff@expo.lcs.mit.edu. If 
  768. your mailer deals in "!" notation, try sending to 
  769. {someplace}!mit-eddie!expo.lcs.mit.edu!xstuff.
  770.  
  771. [based on information from the MIT X Consortium, 8/89, 4/90.]
  772.  
  773. ----------------------------------------------------------------------
  774. Subject:  60)  Where can I get X11R4 (source and binaries)?
  775.  
  776.     Integrated Computer Solutions, Inc., ships X11R4 on half-inch, 
  777. quarter-inch, and TK50 formats. Call 617-621-0060 for ordering information.
  778.  
  779.     The Free Software Foundation (617-876-3296) sells X11R4 on half-inch 
  780. tapes and on QIC-24 cartridges.  
  781.  
  782.     Yaser Doleh (doleh@math-cs.kent.EDU; P.O. Box 1301, Kent, OH 44240) is
  783. making X11R4 available on HP format tapes, 16 track, and Sun cartridges. [2/90]
  784.  
  785.     European sites can obtain a free X11R4 distribution from Jamie Watson,
  786. who may be reached at chx400!pan!jw or jw@pan.uu.ch. [10/90]
  787.  
  788.     Non Standard Logics (+33 (1) 43 36 77 50; requests@nsl.fr) makes source
  789. available.
  790.  
  791.     IXI Limited (+44 223 462 131) is selling X11R4 source on quarter-inch 
  792. cartridge formats and on 5.25" and 3.5" floppy, with other formats available on
  793. request. [IXI, 2/90]
  794.  
  795.     Virtual Technologies (703-430-9247) provides the entire X11R4 
  796. compressed source release on a single QIC-24 quarter-inch cartridge and also on
  797. 1.2meg or 1.44 meg floppies upon request. [Conor Cahill (cpcahil@virtech.uu.net)
  798. 2/90]
  799.  
  800.     Young Minds (714-335-1350) makes the R4 and GNU distributions available
  801. on a full-text-indexed CD-ROM.
  802.  
  803. [Note that some distributions are media-only and do not include docs.]
  804.  
  805.     X11R4 is ftp-able from export.lcs.mit.edu; these sites are preferable, 
  806. though, and are more direct:
  807.  
  808.                         Machine                  Internet      FTP
  809.     Location            Name                     Address       Directory
  810.     --------            -------                  --------      -------------
  811. (1) West USA            gatekeeper.dec.com       16.1.0.2      pub/X11/R4
  812.     Central USA         mordred.cs.purdue.edu    128.10.2.2    pub/X11/R4
  813. (2) Central USA         giza.cis.ohio-state.edu  128.146.8.61  pub/X.V11R4
  814.     Southeast USA       uunet.uu.net             192.48.96.2   X/R4
  815. (3) Northeast USA       crl.dec.com              192.58.206.2  pub/X11/R4
  816. (4) UK Janet            src.doc.ic.ac.uk         129.31.81.36  X.V11R4
  817.     UK niftp            uk.ac.ic.doc.src                       <XV11R4>
  818. (5) Australia           munnari.oz.au            128.250.1.21  X.V11/R4
  819.  
  820. The giza.cis.ohio-state.edu site, in particular, is known to have much of the
  821. contrib stuff that can be found on export. 
  822.  
  823. The release is available to DEC Easynet sites as CRL::"/pub/X11/R4".
  824.  
  825. Sites in Australia may contact this address: ftp.Adelaide.EDU.AU [129.127.40.3]
  826. and check the directory pub/X/R4. The machine shadows export and archives
  827. comp.sources.x. (Mark Prior, mrp@ucs.adelaide.edu.au, 5/90)
  828.  
  829. Note: a much more complete list is distributed regularly by Dan Heller 
  830. (argv@sun.com) as part of the introductory postings to comp.sources.x.
  831.  
  832. A set of X11R4 binaries built by Tom Roell (roell@informatik.tu-muenchen.de) 
  833. for the 386/ix will available from export.lcs.mit.edu in /contrib and in 
  834. /pub/i386/X11R4 from 131.159.8.35 in Europe. Stephen Hite 
  835. (shite@sinkhole.unf.edu) can also distribute to folks without ftp facilities 
  836. via disks sent SASE; contact him for USmail and shipping details. [12/90] In 
  837. addition, the binaries are available via uucp from szebra [1-408-739-1520, TB+ 
  838. (PEP); ogin:nuucp sword:nuucp] in /usr2/xbbs/bbs/x.  In addition, the source is
  839. on zok in /usrX/i386.R4server/. [2/91] In addition, if you are in the US, the 
  840. latest SVR4 binary (April 15), patches, and fonts are available on 
  841. piggy.ucsb.edu (128.111.72.50) in the directory /pub/X386, same filenames as 
  842. above. (Please use after 6pm Pacific, as these are large files.) [5/91]
  843.  
  844. A set of HP 9000/800 binaries is available on hpcvaaz.cv.hp.com (15.255.72.15)
  845. as ~ftp/pub/MitX11R4/libs.x800.Z. [2/91]
  846.  
  847. A set of X11R4 binaries for the NeXT 2.x have been made available by Howie Kaye
  848. on cunixf.cc.columbia.edu
  849.  
  850. A set of binaries by John Coolidge (coolidge@cs.uiuc.edu) for the Mac running 
  851. A/UX 2.0 is available from wuarchive.wustl.edu in the file
  852. (/archive/systems/aux/X11R4/Xupdate2.tar.Z). Also in X11R4/diffs is a set of 
  853. patches for making X11R4 with shared libraries with mkshlib.
  854.  
  855. A complete distribution of SCO X11R4 binaries by Baruch Cochavy 
  856. (blue@techunix.technion.ac.il) can be found on uunet. The server is Roell's 
  857. X386 1.1b, compiled for ET4000 based SVGA boards.
  858.  
  859. ----------------------------------------------------------------------
  860. Subject:  61)! Where can I get OSF/Motif?
  861.     
  862.     You can obtain either OSF/Motif source or binaries from a number of 
  863. vendors. 
  864.     Motif 1.2.0 source became available in 5/92; it is based on X11R5.
  865.     Motif 1.1 is based on the R4.18 Intrinsics and is currently [7/92] at 
  866. 1.1.5.
  867.     An OSF/Motif source license must be obtained from OSF before source can
  868. be obtained from the Open Software Foundation or any value-added vendor for
  869. any version. Call the Direct Channels Desk at OSF at 617-621-7300 for ordering 
  870. information.
  871.     Various hardware vendors produce developer's toolkits of binaries, 
  872. header files, and documentation; check your hardware vendor, particularly if
  873. that vendor is an OSF member. 
  874.     In addition, independent binary vendors produce Motif toolkits for
  875. machines for which Motif is not supported by a vendor; the kits include varied 
  876. levels of bug-fixing and support for shared libraries and are based on widely
  877. divergent version of Motif:
  878.     Quest (408-988-8880) sells kits for Suns, as well; 
  879.     IXI (+44 223 462 131) offers kits for Sun3 and Sun4. 
  880.     NSL (+33 (1) 43 36 77 50; requests@nsl.fr) offers kits for the Sun 3 
  881. and Sun 4.
  882.     Bluestone Consulting makes a kit for Sun systems.
  883.     ICS (617-62-0060) makes several binary kits, notably for Sun, DEC.
  884.     HP and DEC have announced support for Motif on Sun systems.
  885.     Unipalm (+44-954-211-797) currently offers for Sun systems a Motif 
  886. Development Kit including X11R4 and based on Motif 1.1.2. The US distributor is
  887. Expert Object Corp (708-926-8500).
  888.     BIM ships Motif 1.1 binaries for Suns. Shared library support is 
  889. included. Contact Alain Vermeiren (av@sunbim.be) or Danny Backx (db@sunbim.be) 
  890. at +32(2)759.59.25 (Fax : +32(2)759.47.95) (Belgium).
  891.     SILOGIC (+33 61.57.95.95) ships Motif 1.2 and Motif 1.1 on Sun 
  892. machines.
  893.     Metro Link Inc. (305-970-7353, sales@metrolink.com; in Europe contact
  894. ADNT, (33 1) 3956 5333, UniVision (UK) Ltd. (44) 628 82 22 81) ships an 
  895. implementation of X11R4 and Motif 1.1.2 (including a shared-library 
  896. implementation of libXm.a) for the 386/486 Unix market.  Motif 1.1.2 is 
  897. also available for Sun Sparc based workstations. It has also announced 
  898. Motif 1.2 for Solaris systems.
  899.  
  900. ----------------------------------------------------------------------
  901. Subject:  62)  Does Motif work with X11R4? X11R5?
  902.  
  903.     Motif 1.2 is based on X11R5 (available 5/92).
  904.     Motif 1.1, available in source form from OSF as of August 1990, uses 
  905. the "vanilla" X11R4 Intrinsics, where "vanilla" means "with just a few 
  906. patches"; the file fix-osf which OSF distributes is obsoleted by MIT's patches 
  907. 15-17.  The file fix-osf-1.1.1 distributed with the 1.1.1 version or its 
  908. subsequent modification needs to be applied after MIT fix-18, though.
  909.  
  910.     Motif 1.1.1 to 1.1.3 will work with X11R5 if X11R5 is compiled with
  911. -DMOTIFBC; 1.1.4 and later should work with the vanilla R5, although there are 
  912. some known new geometry-management problems.
  913.     
  914. ----------------------------------------------------------------------
  915. Subject:  63)  Where can I get toolkits implementing OPEN LOOK?
  916.  
  917.     Sun's XView has a SunView-style API. A version is on the X11R4 tape;
  918. the latest [2/92] 3.0 sources are on export in contrib/xview3/.
  919.     XView and X binaries for the Sun 386i ("roadrunner") are available for 
  920. ftp from svin01.win.tue.nl (131.155.70.70), directory pub/X11R4_386i.
  921.     Supported binaries of XView 2.0 or 3.0 include: 
  922.  
  923. XView for non-Sun Platforms  (domestic and selected international vendors).
  924. Several are also available from Sun; contact your local sales office.
  925.  
  926. Amiga        GfxBase, Inc.        1881 Ellwell Drive
  927. (AmigaDOS)    (408) 262-1469        Milpitas, CA 95035
  928.         Fax: (408) 262-8276
  929.  
  930. SGI
  931. Sony (NEWS-OS)
  932. IBM RS/6000
  933. HP 9000
  934. DECstation    UniPress Software    2025 Lincoln Highway
  935. (Ultrix)    (908) 985-8000        Edison, NJ 08817
  936.         Fax: (908) 287-4929
  937.  
  938.         UniPress Software, Ltd.        PO Box 70
  939.         44-624-661-8850            Viking House
  940.         Fax: 44-624-663-453        Nelson Street
  941.                         Douglas, Isle of Man
  942.                         United Kingdom
  943.  
  944. DEC VAXstation    TGV            603 Mission Street
  945. (VMS)        (800) TGV-3440        Santa Cruz, CA 95060
  946.         (408) 427-4366
  947.         Fax: (408) 427-4365
  948.  
  949.         Unipalm Ltd.            145-147 St. Neots Road
  950.         44-0954-211797            Hardwick
  951.         Fax: 44-0954-211244        Cambridge CB3 7QJ
  952.                         England
  953.  
  954. Intel 386    Quarterdeck Office    150 Pico Boulevard
  955. (DOS)        Systems            Santa Monica, CA 90405
  956.         (213) 392-9851
  957.         Fax: (213) 399-3802
  958.  
  959. Intel 386    SunSoft Corporation    6601 Center Drive West
  960. (Interactive    310-348-8649        Suite 700
  961.  UNIX and                Los Angeles, CA  90045
  962.  SCO UNIX)    
  963.  
  964. Stardent    Scripps Institute    Clinic MB-5
  965. (Stellix OS    Fax: (619) 554-4485    10666 N. Torrey Pines Road
  966.  and Titan OS)    Include mailstop MB-5    La Jolla, CA 92057
  967.         By ftp: 192.42.82.8 in pub/binary/{Xview.README,XView.tar.Z}
  968.  
  969.     AT&T's OPEN LOOK GUI 3.0 Xt-based toolkit is now generally available 
  970. [2/92]; contact 1-800-828-UNIX#544 for information. Binaries are produced
  971. for SPARC systems by International Quest Corporation (408-988-8289). A version
  972. of the toolkit is also produced under the name OLIT by Sun. 
  973.     More recent versions of OLIT have been ported to IBM 6000 and DEC MIPS 
  974. by both UniPress and ICS. OLIT is also available for HP from Melillo Consulting 
  975. (908-873-0075). MJM (Somerset, NJ) makes OLIT 4.0 for HP 7xx series running
  976. HPUX 8.0, DECstations, and RS/6000s [thanks to Joanne Newbauer, 
  977. jo@attunix.att.com, 908-522-6677.]
  978.  
  979.     Sun is shipping OpenWindows 3.0; contact your local sales 
  980. representative for more details; the package includes toolkit binaries and 
  981. header files.
  982.  
  983.     ParcPlace's (formerly Solbourne's) extensible C++-based Object 
  984. Interface Library, which supports run-time selection between Open Look or 
  985. Motif, is available from 303-678-4626. [5/92]
  986.  
  987. ----------------------------------------------------------------------
  988. Subject:  64)  Where can I get other X sources? (including R5 modifications)
  989.  
  990.     The MIT Software Center ships the X Test Suite on tape.
  991.  
  992.     A multi-threaded version of Xlib based on X11R5 patch 12 is now 
  993. available for anonymous FTP from:
  994.         Xerox PARC on parcftp.xerox.com (13.1.64.94) in /pub/mt-xlib
  995.         DEC on gatekeeper.dec.com (16.1.0.2) in /pub/X11/contrib/mt-xlib
  996.         MIT on export.lcs.mit.edu (18.24.0.12) in /contrib/mt-xlib
  997.  
  998.     HP has made available drivers to permit the building of the X11R5
  999. sample server on the HP 9000 Series 700 workstations; the files are on
  1000. export.lcs.mit.edu in ~ftp/contrib/R5.HP.SRV. [8/92]
  1001.  
  1002.     User-contributed software is distributed through the newsgroup
  1003. comp.sources.x, moderated by David C. Martin (dcmartin@msi.com); also check 
  1004. that group for posting information.
  1005.  
  1006.     Richard Hesketh (rlh2@ukc.ac.uk) has been creating a list of freely-
  1007. available X sources.  The list is stored on export.lcs.mit.edu in contrib as
  1008. x-source-list.Z. It lists the main storage locations for the program and 
  1009. international sites from which it may be ftp'ed.
  1010.  
  1011.     The machine export.lcs.mit.edu has a great deal of user-contributed
  1012. software in the contrib/ directory; a good deal of it is present in current or 
  1013. earlier versions on the X11R3, X11R4, and X11R5 contrib tapes. There are also
  1014. directories for fixes to contrib software.  The file on export in
  1015. contrib/00-index.txt is a quick overall index of the software in that area,
  1016. provided by Daniel Lewart (d-lewart@uiuc.edu).
  1017.  
  1018.     These sites used to and may still mirror export and are of particular 
  1019. use for Australasia: Anonymous ftp: ftp.Adelaide.EDU.AU; ACSnet Fetchfile: 
  1020. sirius.ua.oz.
  1021.  
  1022.     The material on giza.cis.ohio-state.edu, which tends to duplicate 
  1023. the export archives, is also available via anonymous UUCP from osu-cis, at TB+ 
  1024. and V.32 speeds.  Write to uucp@cis.ohio-state.edu (same as osu-cis!uucp) for 
  1025. instructions. [the archive is now maintained by Karl Kleinpaste]
  1026.  
  1027.     A new west-coast UUCP X11 Archive is administered by Mark Snitily 
  1028. (mark@zok.uucp) and contains the full X11 distribution, the XTEST
  1029. distribution, an entire archive of comp.sources.x and other goodies.
  1030.     The machine zok has a TB+ modem which will connect to 19.2K, 2400, 
  1031. 1200 baud (in that order).  The anonymous UUCP account is UXarch with password 
  1032. Xgoodies.  The modem's phone number is 408-996-8285.
  1033.     A sample Systems (or L.sys) entry might be:
  1034.            zok Any ACU 19200 4089968285 in:--in: UXarch word: Xgoodies
  1035.     To get a current listing of the files that are available, download
  1036. the file "/usrX/ls-lR.Z".
  1037.     A full subject index of the comp.sources.x files is available in the
  1038. file "/usrX/comp.sources.x/INDEX".
  1039.     The machine has just the one modem, so please do not fetch large 
  1040. amounts of data at one sitting.
  1041. [courtesy Mark Snitily, 2/90]
  1042.  
  1043. In addition, UUNET Source Archives (703-876-5050) tracks comp.sources.x and 
  1044. provides 800MB+ of compressed programs on 6250 bpi tapes or 1/4" tapes.  It 
  1045. also mirrors export/contrib in its packages/X directory.
  1046.     
  1047. ----------------------------------------------------------------------
  1048. Subject:  65)! Where can I get interesting widgets?
  1049.  
  1050.     The Free Widget Foundation (FWF) library sponsored by Brian Totty 
  1051. (totty@cs.uiuc.edu) is now [12/90] available on a.cs.uiuc.edu (128.174.252.1) 
  1052. in pub/fwf.shar.Z. The set of widgets there is intended to form the basis for 
  1053. future contributions. To be added to the discussion list,contact 
  1054. free-widgets-request@kazoo.cs.uiuc.edu.  The current set includes a pixmap 
  1055. editor. Version 3.1 was released 6/92.
  1056.     Peter Ware's Xo "Open Widget" set, which has Motif-like functionality, 
  1057. is on archive.cis.ohio-state.edu as pub/Xo/Xo-2.1.tar.Z [8/92].
  1058.     The AthenaTools Plotter Widget Set Version 6-beta [7/92] maintained by
  1059. Peter Klingebiel (klin@iat.uni-paderborn.de) includes many graph and plotting 
  1060. widgets; a copy is on export in plotter.v6b.tar.Z, plotter.doc.tar.Z,
  1061. plotter.afm.tar.Z, and plotter.README. The latest versions may in fact be on
  1062. ftp@uni-paderborn.de (131.234.2.32) in /unix/tools.
  1063.     An advance version of Marc Quinton's Motif port of the FWF MultiList 
  1064. widget is in ftp.stna7.stna.dgac.fr:pub/MultiList.tar.Z [143.196.9.31].
  1065.     Additional widgets are available on the contrib/ portion of the X11R4
  1066. tapes; these include the Xcu set.
  1067.     Paul Johnston's (johnston@spc5.jpl.nasa.gov) X Control Panel widget set
  1068. emulates hardware counterparts; sources are on export.lcs.mit.edu in 
  1069. Xc-1.3.tar.Z.
  1070.     O'Reilly Volume 4, Doug Young's book, the Asente/Swick book, and Jerry 
  1071. Smith's "Object-oriented Programming with the X Window System Toolkits" all 
  1072. include details on writing widgets and include several useful widgets; sources 
  1073. are typically on export and/or UUNET. 
  1074.     The Dirt interface builder includes the libXukc widet set which extends
  1075. the functionality of Xaw. 
  1076.     A graph widget and other 2D-plot and 3D-contour widgets by Sundar 
  1077. Narasimhan (sundar@ai.mit.edu) are available from ftp.ai.mit.edu as
  1078. /com/ftp/pub/users/sundar/graph.tar.Z. The graph widget has been updated [3/91]
  1079. with documentation and histogram capabilities.
  1080.     A graph widget is available from ftp.stna7.stna.dgac.fr in
  1081. pub/Graph.tar.Z; it uses a segment list for drawing and hence supports a zoom
  1082. operation.
  1083.     Ken Lee's Xm widget (demo) that uses Display PostScript to draw labels 
  1084. at a non-horizontal angle is on export in contrib/dpslabel.tar.Z.
  1085.     The Table widget (works like troff TBL tables) is available in several
  1086. flavors, one of which is with the Widget Creation Library release.
  1087.     Bell Communications Research has developed a Matrix widget for complex
  1088. application layouts; it's on export in contrib/Xbae-widgets-3.7.tar.Z. The 
  1089. distribution also includes a "caption" widget to associate labels with 
  1090. particular GUI components. (7/92)
  1091.     Dan Connolly's (connolly@convex.COM) XcRichText interprets RTF data;
  1092. it's on export as contrib/XcRichText-1.1.tar.Z.
  1093.  
  1094.     A version of Lee Iverson's (leei@McRCIM.McGill.EDU) image-viewing tool
  1095. is available as contrib/vimage-0.9.3.tar.Z on export.lcs.mit.edu.  The package 
  1096. also includes an ImageViewPort widget and a FileDialog widget. [12/91;5/92] 
  1097.     Other available file-requestor widgets include the FileSelector from 
  1098. the Free Widget Foundation, the XiFileSelector from Iris Software's book, the 
  1099. xdbx file-selector extracted by David Nedde (daven@wpi.wpi.edu), and the 
  1100. FileNominator from the aXe distribution.
  1101.     In addition, the PEXt toolkit by Rich Thomson (rthomson@dsd.es.com) is 
  1102. available on export as PEXt.tar.Z; it includes a PEX widget making it easier to
  1103. use PEX in Xt-based programs.
  1104.     A Motif port of the Xaw clock widget is in ftp.stna7.stna.dgac.fr
  1105. in pub/Clock.tar.Z.
  1106.  
  1107.     A beta 0.3 (11/92) release of the R5 Xaw widgets with a 3D visual 
  1108. appearance by Kaleb Keithley (kaleb@thyme.jpl.nasa.gov) is available on export 
  1109. in contrib/Xaw3d/R5/Xaw3d-0.3.tar.Z. The library, which is binary-compatible 
  1110. with the MIT Xaw, implements a 3D subclass which handles the extra drawing.
  1111.  
  1112. Also:
  1113.     The Xtra XWidgets set includes widgets for pie and bar charts, XY plots,
  1114. Help, spreadsheets, data entry forms, and line and bar graphs.  Contact 
  1115. Graphical Software Technology at 310-328-9338 (info@gst.com) for information.
  1116.     The XRT/graph widget, available for Motif, XView and OLIT, displays
  1117. X-Y plots, bar and pie charts, and supports user-feedback, fast updates and
  1118. PostScript output. Contact KL Group Inc. at 416-594-1026 (info@klg.com).
  1119.     A set of data-entry widgets for Motif is available from Marlan 
  1120. Software, 713-467-1458 (gwg@world.std.com).
  1121.     A set of graph widgets is available from Expert Database Systems
  1122. (212-370-6700).
  1123.     A set of OSF/Motif compound widgets and support routines for 2D
  1124. visualization is available from Ms Quek Lee Hian, National Computer Board,
  1125. Republic of Singapore; Tel : (65)7720435; Fax : (65)7795966; 
  1126. Email : leehian@iti.gov.sg, leehian@itivax.bitnet.
  1127.     The ICS Widget Databook includes a variety of control widgets and 
  1128. special-purpose widgets, available on a variety of platforms.  Information: 
  1129. 617-621-0060, info@ics.com.
  1130. ----------------------------------------------------------------------
  1131.  
  1132.  
  1133. David B. Lewis                     faq%craft@uunet.uu.net
  1134.  
  1135.         "Just the FAQs, ma'am." -- Joe Friday 
  1136. -- 
  1137. David B. Lewis        Temporarily at but not speaking for Visual, Inc.
  1138. day: dbl@visual.com    evening: david%craft@uunet.uu.net
  1139.