/*
* ftpsbr.c -- simple FTP client library
*
- * $Id$
- *
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
#include <h/mh.h>
#include <h/mime.h>
-#ifdef HAVE_ARPA_FTP_H
+#ifdef notdef_lyndon_posix
+/*
+ * Does this get included indirectly? Let's find out. It's not
+ * part of Posix. Mail lyndon@orthanc.ca if this breaks your build.
+ */
# include <arpa/ftp.h>
#endif
struct addrinfo hints, *res;
memset(&hints, 0, sizeof(hints));
+#ifdef AI_ADDRCONFIG
hints.ai_flags = AI_ADDRCONFIG;
+#endif
hints.ai_family = PF_INET;
hints.ai_socktype = SOCK_STREAM;