Begin MIT copyright:
/* $XConsortium: copyright.h,v 1.6 91/04/16 15:03:32 rws Exp $ */
/*

Copyright 1991 by the Massachusetts Institute of Technology

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation, and that the name of M.I.T. not be used in advertising or
publicity pertaining to distribution of the software without specific,
written prior permission.  M.I.T. makes no representations about the
suitability of this software for any purpose.  It is provided "as is"
without express or implied warranty.

*/
End MIT copyright.

Instructions for making a shared x11r5 library for your Apollo:

You need to compile pic for the libraries.  The apollo.cf supplied with the
x11r5lib sets all the right flags.  Then you just need to bind everything
together into one or more shared libraries.  The command I use to do this
is:

  ld -r -a -o x11r5lib -A nosys `cat ObjList`

where 'ObjList' contains the names of the .o files to bind together.  I put
everything in one library, but you could split it up if you want.

'-r' is needed to retain the relocation info.  '-a' allocates storage for
common symbols.  '-A nosys' is needed so the binder won't try to resolve
common symbols against any global X libraries.  You'll get a lot of
complaints about unresolved symbols but that's OK.

I didn't make any changes to the source.

For x11r5 sources, try following sites.  This list is old and may be out of
date.

                        Machine
    Location            Name
    --------            -------
(1) West USA            gatekeeper.dec.com
    Central USA         mordred.cs.purdue.edu
(2) Central USA         giza.cis.ohio-state.edu
    Southeast USA       uunet.uu.net
(3) Northeast USA       crl.dec.com
(4) UK Janet            src.doc.ic.ac.uk
    UK niftp            uk.ac.ic.doc.src
(5) Australia           munnari.oz.au

 - Jim Rees, University of Michigan, March 1993
