>>>> "Vin" == Vin Shelton <acs(a)xemacs.org>
writes:
Vin> /opt/src/xemacs-21.4-2003-01-09-1600/src/process-unix.c(292): warning #266:
function declared implicitly
Vin> slave_name = ptsname (master_fd);
Vin> ^
ptsname () is declared in stdlib.h, which is included by
process-unix.c.
But stdlib.h only declares ptsname() if the appropriate preprocessor
symbols are defined. The XEmacs configuration process must define
_GNU_SOURCE (or _XOPEN_SOURCE, etc...) on Linux systems. Why isn't it??
Martin