Index: ossp-pkg/lmtp2nntp/configure.ac RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/configure.ac,v rcsdiff -q -kk '-r1.14' '-r1.15' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/configure.ac,v' 2>/dev/null --- configure.ac 2001/10/04 09:51:07 1.14 +++ configure.ac 2001/10/12 13:51:59 1.15 @@ -45,6 +45,8 @@ AC_CHECK_LIB(socket, getprotobyname) AC_CHECK_LIB(nsl, gethostbyname) AC_CHECK_FUNCS(inet_pton inet_aton) +AC_CHECK_FUNCS(setsid) +AC_CHECK_HEADERS(sys/termios.h) dnl # check for Str library AC_CHECK_EXTLIB([OSSP Str], Index: ossp-pkg/lmtp2nntp/daemon.c RCS File: /v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/daemon.c,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/lmtp2nntp/Attic/daemon.c,v' 2>/dev/null --- daemon.c 2001/10/04 16:07:16 1.3 +++ daemon.c 2001/10/12 13:51:59 1.4 @@ -6,11 +6,16 @@ ** http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC10 */ +#include "config.h" + #include #include #include #include #include +#ifdef HAVE_TERMIOS_H +#include +#endif #include "daemon.h"