Operating System - HP-UX
1830039 Members
1828 Online
109998 Solutions
New Discussion

ghostview can not open .ps

 
SOLVED
Go to solution
maillot_1
New Member

Re: ghostview can not open .ps

Hi Glen,

I have the same problem with ghostscript (pdf2ps)
/usr/lib/dld.sl: Unresolved symbol: jpeg_std_error (code) from gs

This doesn't appear if pdf2ps is run with root.

Did you solve this problem ?

regards

Didier
madrane
New Member

Re: ghostview can not open .ps

Hello,

I have the same pb. with gs. when I try to convert ps 2 pdf xhith the comamnd ps2pdf.

The error is :

Error Messages (98 bytes):
/usr/lib/dld.sl: Unresolved symbol: jpeg_std_error (code) from gs
/bin/sh: 16757 Abort(coredump)

Have you in solution to resolve this pb. ?
Many thanks,
Best Regards,

MMA.
madrane
New Member

Re: ghostview can not open .ps

@maillot : have you any solutions for this pb. ?


Thanks.
Mehdi DIB
Valued Contributor

Re: ghostview can not open .ps

Hi Oliver,

this is an answer by Didier Maillot:

just unset SHLIB_PATH, run pdf2ps and reset SHLIB_PATH:

# if SHLIB_PATH is set then pdf2ps ends with error
SAVE_SHLIB=$SHLIB_PATH
unset SHLIB_PATH

# ajoute OA a la fin du fichier sinon le message d'erreur suivant apparaît
# **** This file has a corrupted %%EOF marker, or garbage after the %%EOF.
# **** The file was produced by Oracle PDF driver:
# **** please notify the author of this software
# **** that the file does not conform to Adobe's published PDF
# **** specification. Processing of the file will continue normally.
echo "" >> $1

# conversion du pdf en ps
pdf2ps $1 $2

# restauration de la valeur d'origine pour SHLIB_PATH
SHLIB_PATH=$SAVE_SHLIB
unset SAVE_SHLIB


Best regards,
mehdi.dib@cheops.fr