Kayvan A. Sylvan wrote:
> Unfortunately, I have not had a spare minute to look into this.
> Can anyone else help here?

> On Thu, Oct 09, 2003 at 09:57:29AM +0200, Dr. Peter Hartmann wrote:
>> I got exactly the same problem when compiling lyx 1.3.3 on Linux.
>> Have you got an idea yet how to fix it ?

Sure. Replace this block in lib/configure

if test ! $num = 0 ; then
  echo $num >xfonts/fonts.scale
  cat xfonts/tmpfonts >>xfonts/fonts.scale
  cp xfonts/fonts.scale xfonts/fonts.dir
  # create a resource list file for Display Postscript
  (cd xfonts ; rm -f PSres.upr ; makepsres -q) || true
fi

with this

test $num -ne 0 && which makepsres > /dev/null && {
        echo $num >xfonts/fonts.scale
        cat xfonts/tmpfonts >>xfonts/fonts.scale
        cp xfonts/fonts.scale xfonts/fonts.dir
        # create a resource list file for Display Postscript
        (cd xfonts ; rm -f PSres.upr ; makepsres -q)
}

Please tell us if it solves the problem.

Regards,
Angus

Reply via email to