All,
AFAIK, Subversion cannot be build without zlib. At present if configured
using '--without-zlib' or '--with-zlib=no' options, build will fail with
following error message ...
[[[
Subversion/trunk/libtool: line 4992: cd: no/lib: No such file or
directory
libtool: link: cannot determine absolute directory name of `no/lib'
]]]
[[[
Fixes build failure when configured with '--without-zlib'.
* build/ac-macros/zlib.m4
(SVN_LIB_Z): Configure error-outs if executed with '--without-zlib'
or '--with-zlib=no' options.
Patch by: Alexander Thomas <[email protected]>
]]]
-Alexander Thomas(AT)
Index: build/ac-macros/zlib.m4
===================================================================
--- build/ac-macros/zlib.m4 (revision 1174526)
+++ build/ac-macros/zlib.m4 (working copy)
@@ -32,6 +32,8 @@ AC_DEFUN(SVN_LIB_Z,
[
if test "$withval" = "yes" ; then
AC_MSG_ERROR([--with-zlib requires an argument.])
+ elif test "$withval" = "no" ; then
+ AC_MSG_ERROR([cannot compile without zlib.])
else
AC_MSG_NOTICE([zlib library configuration])
zlib_prefix=$withval