Niklas Edmundsson wrote:
You might want to have a go at the configure.apxs before doing that. It
seems to contain some bashisms that shows up on debian/ubuntu machines
which uses dash as /bin/sh:
% ./configure.apxs
test: 8: ==: unexpected operator
test: 19: ==: unexpected operator
Configuring mod_ftp for APXS
Fixed, good catch. Thank you!
The thing is that == is not a valid /bin/sh style test expression. It
should probably be just =, or test -z "$var" ...
Went with '=', I remember hitting -z portability issues before.
On the positive side, the thing builds on both Linux and AIX (out of
tree, for httpd 2.2.6). I'll await the 0.9.1 tag before doing more
elaborate tests though.
Trunk should also be stable now, if you want to take a crack at that
before the tag;
http://svn.apache.org/repos/asf/httpd/mod_ftp/trunk/
Bill