From 3e59135a5c8c7574c14acb0c420fd58546b03e11 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Fri, 19 Nov 1999 18:33:21 +0000 Subject: [PATCH] is needed on linux --- ext/ftp/ftp.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c index 71f9960bfd..47131efa31 100644 --- a/ext/ftp/ftp.c +++ b/ext/ftp/ftp.c @@ -45,8 +45,12 @@ #include #include #include -#include "ftp.h" +#if HAVE_SYS_TIME_H +#include +#endif + +#include "ftp.h" /* sends an ftp command, returns true on success, false on error. * it sends the string "cmd args\r\n" if args is non-null, or -- 2.50.1