>>>>> James A Basilio writes:
JAB> can anyone give me a tip as to how to fix this error message?
JAB> ld: Undefined symbol
JAB> _strerror
You get 2.0.43 where this is fixed (I think) or you just fix it
yourself: strerror(x) can be substituted with sys_errlist[x] on
SunOS. Just:
#ifdef <Variable_that_sez_SunOS_goes_here>
#define strerror(x) sys_errlist[x]
#endif
somewhere. There is a compiler option that tells you what
preprocessor symbols are defined on your system.
I hope this is not too vague,
kai
--
Life is hard and then you die.
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Mon Jul 29 1996 - 07:32:12 BST