From cmcl2!rutgers!cs.utexas.edu!uunet!stanford.edu!leland.Stanford.EDU!buc Sat Nov  9 23:26:07 EST 1991
Article 2794 of comp.sys.ibm.pc.rt:
Xref: cmcl2 comp.windows.x:49093 comp.sys.ibm.pc.rt:2794
Path: cmcl2!rutgers!cs.utexas.edu!uunet!stanford.edu!leland.Stanford.EDU!buc
>From: buc@leland.Stanford.EDU (Robert Richards)
Newsgroups: comp.windows.x,comp.sys.ibm.pc.rt
Subject: Incomplete instructions for making XR5 on RT (AOS 4.3), please assist
Message-ID: <1991Nov8.232022.1248@leland.Stanford.EDU>
Date: 8 Nov 91 23:20:22 GMT
Sender: news@leland.Stanford.EDU (Mr News)
Organization: Stanford University
Lines: 103

The following are the instructions I haved collected from sources and
from my own experience.  They are not complete, hopefully someone can
fill in the missing information so I can re-distribute this info in
full to help others build X11R5 on IBM RTs running AOS 4.3.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

o Obtain the X11R5 release:

   For example via anonymous ftp

	ftp gatekeeper.dec.com
  Name: anonymous
Passwd: anything
	cd pub/X11/R5
	bin
	get README
	get  RELNOTES.TXT
	cd mit-1
	prompt
	mget mit-1.??
	cd ../mit-2
	mget mit-2.??
	cd ../mit-3
	mget mit-3.??
	cd ../mit-4
	mget mit-4.??
	cd ../fixes
	mget *
	quit

o Extract the files and place them in the directory one will use as
  the source directory <sourcedir>.

   If the files were obtained as above then execute the following

	cat mit-1.?? | uncompress | (cd <sourcedir>; tar xpf -)
	/bin/rm -f mit-1.??
	cat mit-2.?? | uncompress | (cd <sourcedir>; tar xpf -)
	/bin/rm -f mit-2.??
	cat mit-3.?? | uncompress | (cd <sourcedir>; tar xpf -)
	/bin/rm -f mit-3.??
	cat mit-4.?? | uncompress | (cd <sourcedir>; tar xpf -)
	/bin/rm -f mit-4.??

o The fixes are self-documented, so read fix files and apply the
  patches.

o Change to the source directory

	cd <sourcedir>

o To install into somewhere other than /usr/bin/X11, /usr/include/X11,
  etc., edit mit/config/site.def by uncommenting the ProjectRoot
  lines and changing "/usr/X11R5" to whatever directory one wants to
  install into.  (Do not use DESTDIR.)

o One may find that <stdarg.h> is missing.  In that case, you should
  be able to copy mit/util/misc/rt.stdarg.h to create the file.

	cp mit/util/misc/rt.stdarg.h /usr/include/stdarg.h

o Ftp to "export.lcs.mit.edu" to get the BSDrt directory to be placed
  under server/ddx/ibm.

	ftp export.lcs.mit.edu
  Name: anonymous
Passwd: anything
	cd contrib
	bin
	get Xibm-athena.tar.Z
	quit

o Change to an empty directory and copy Xibm-athena.tar.Z into it,
  after this uncompress and untar,

	uncompress Xibm-athena.tar.Z
	tar xpf Xibm-athena.tar

o One of the resulting directories is called 
     BSDrt
  this directory needs to be moved under the mit/server/ddx/ibm
  directory.

	mv BSDrt <sourcedir>/mit/server/ddx/ibm

o Change to the mit directory under the <sourcedir> and make the
  world.

	cd <sourcedir>/mit
	make World BOOTSTRAPCFLAGS="-Dibm -DNOSTDHDRS -DX_NOT_STDC_ENV
-U__STDC__" >& World.log &

   the make World command is typed as one continuous command without a
   carriage return.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


The above works until it states that it can not find the Imakefile in
the BSDrt directory.

All assistance is appreciated.


