I successfully compiled db application.
I ran it, but it produced following message and stoped.
/usr/lib/
dld.sl: Unresolved symbol: gethostbyname (code) from
/sys1/sybase/lib/
libinsck.slIOT trap (core dumped)
So I changed following. It ran successfully.
sybopts.sh file
COMLIBS=" -ltcl -lcomn -lintl" ;;
-->
COMLIBS=" -ltcl -linsck -lcomn -lintl" ;;
Which is correct?
Thanks.