> #ifdef SOLARIS
 [ ... ]

At the risk of drifting off topic, I'd just add that on solaris
realpath() should handle the details of relative vs absolute paths,
as well as file existence. I think this should cover all the bases
for solaris:

  char buff[PATH_MAX];
  return realpath(getexecname(), buff) ? 0 : -1;

Regards,
Stan


_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to