Here is how to build GNU texinfo for MPE/iX ------------------------------------------- Create the IX account, if it does not exist yet... :hello manager.sys :newacct ix,mgr ;pass=dontknow :altacct ix ;cap=+ph :altuser mgr.ix ;cap=+ph :altgroup pub.ix ;access=(r,x:any;w,a,l,s:AL) Create symbolic link for HFS name to the "home" of texinfo/iX... :hello manager.sys :newlink /usr/local/texinfo , /IX/TEXINFO Create user and MPE group to provide texinfo/iX "home" setup... :hello mgr.ix :newgroup texinfo.ix ;access=(r,w,a,l,x,s:GL) :newuser texinfo.ix ;pass=dontknow :altuser texinfo.ix ;home=texinfo ;cap=+ph,gl Logon as texinfo.iX user to unpack files and perform build... :hello texinfo.ix (optionally copy some helpful .exrc and .profile files here) :/bin/sh -L First unpack the original GNU texinfo 3.12 distribution... shell/iX> gunzip -c /tmp/texinfo-3.12.tar.gz | tar xvof - And then add the MPE specific files (into separate mpe subdir)... shell/iX> tar xvzopf /tmp/gi-mpe.tar.Z shell/iX> cat ReadMe Now have the setup script replace/adjust the MPE specific files... shell/iX> cd texinfo-3.12 ; sh ~/mpe/setup And "dot" the dotme script to setup some shell env variables... shell/iX> . ~/mpe/dotme Finally perform the configure, make and make install steps... (the configure script is already mpe-ized with autoconf/iX) shell/iX> ./configure $conf shell/iX> make shell/iX> make install shell/iX> make distclean shell/iX> cd .. Optionally create a subdirectory with HTML docs (needs texi2html)... shell/iX> umask 0022 shell/iX> mkdir public_html shell/iX> cd public_html shell/iX> texi2html -verbose ../texinfo-3.12/doc/info.texi shell/iX> texi2html -verbose ../texinfo-3.12/doc/info-stnd.texi shell/iX> texi2html -verbose ../texinfo-3.12/doc/texinfo.txi shell/iX> cd .. That's all (you'd also have this state by unpacking gd-all.tar.Z) shell/iX> exit :bye