[comp.text.tex] Sun ImakeTeX -> ld.so: Undefined symbol: __XtInherit

ramsdell@linus.mitre.org (John D. Ramsdell) (08/30/90)

There is a bug in an Imakefile in ImakeTeX 1.01.

Context:  ImakeTeX version 1.01, on Sun running SunOS4 using Sun's
C compiler and X windows.

Problem: executing mf gives the following error message.
	ld.so: Undefined symbol: __XtInherit

Fix: patch the file mf/Imakefile as follows.
-------------------
diff -r imaketex/mf/Imakefile /tmp/imaketex101/mf/Imakefile
6c6
< libs=$(windowlib) -lXext -lXt -lX11
---
> libs=$(windowlib) -lXt -lX11 -lXext
107c107
< winobjs=hp2627.o sun.o tek.o x11-Xt.o
---
> winobjs=hp2627.o sun.o tek.o x11.o
-------------------

Version 1.02 of ImakeTeX will be available soon on labrea which
includes the patch.

Thanks go to David Dalton for helping me track down this bug.
John