diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-11-12 07:37:15 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-11-12 07:37:15 +0000 |
| commit | 606f5646b9b170ec38647387e186a18a8b5f6c07 (patch) | |
| tree | dd82da3d4c4dc1beeab4da21e737d39ba7b7c6b2 | |
| parent | 91618540a1a2bbdda6191e2d444128b946f39101 (diff) | |
Notes
| -rw-r--r-- | libexec/lukemftpd/config.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libexec/lukemftpd/config.h b/libexec/lukemftpd/config.h index 022933cac2319..d6e4688d3b125 100644 --- a/libexec/lukemftpd/config.h +++ b/libexec/lukemftpd/config.h @@ -52,7 +52,7 @@ #define HAVE_FLOCK 1 /* Define if you have the fparseln function. */ -/* #undef HAVE_FPARSELN */ +#define HAVE_FPARSELN 1 /* Define if you have the fts_open function. */ #define HAVE_FTS_OPEN 1 @@ -249,8 +249,11 @@ /* Define if not using in-built /bin/ls code */ /* #undef NO_INTERNAL_LS */ +#include <sys/param.h> +#if __FreeBSD_version <= 500020 /* Define if using S/Key */ -/* #undef SKEY */ +#define SKEY 1 +#endif /* * Define this if compiling with SOCKS (the firewall traversal library). @@ -279,3 +282,6 @@ /* #undef sendto */ /* #undef shutdown */ /* #undef write */ + +/* Define if you have the <arpa/ftp.h> header file. */ +#define HAVE_FTP_NAMES 1 |
