Ranga,
Just downloaded wu-ftp 2.6.2 and trying to install on OS/390 SuSE 8.You probably mean SuSE's SLES8 for s390.
I had a look at this source (*cringe*) and managed to fix it up so it'll build. Save the attached diff file to something like /tmp/wu-ftpd.diff, then run:
tar -xzvf wu-ftpd-2.6.2.tar.gz cd wu-ftpd-2.6.2 patch -p0 < /tmp/wu-ftpd.diff ./build lnx
Then everything should build properly, and that should fix your immediate problem.
Now... when running './build', it warns you that you should really use autoconf. So I tried that, and it detected my platform as "s390-pc-linux-gnuoldld". Clearly wu-ftpd needs some attention.
- Alex
Chose 'lnx' for ./build xxx I get some 'incomplete type' messages and then when trying './build install' says it could not find the target /bin/ftpd, guess this is because it did not compile/link correctly. 'gcc' is installed and I even specified "./build CC=gcc lnx"
I am proceeding with proftpd.
If any of you have successfully installed wu-ftpd, please tell me what I am doing wrong.
--- src/config/config.lnx.orig Sat Jul 1 14:03:07 2000 +++ src/config/config.lnx Mon Dec 22 20:01:23 2003 @@ -50,7 +50,7 @@ #define HAVE_SNPRINTF #define LINUX #define QUOTA_INODE -#define HAVE_SYS_TIME_H +#undef HAVE_SYS_TIME_H #define NO_UTMPX #undef HAVE_REGEX #define HAVE_REGEX_H @@ -89,7 +89,7 @@
#include "../config.h" -#define QUOTA +#undef QUOTA #include <paths.h> #define HAVE_GLOB_H
