Skip to content

Commit 3af67b9

Browse files
committed
Default to not use the zlib which is bundled with rsync.
1 parent 0e75aaa commit 3af67b9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

configure.ac

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,10 +1095,11 @@ else
10951095
AC_MSG_RESULT(no)
10961096
fi
10971097

1098-
# We default to using our zlib unless --with-included-zlib=no is given.
1099-
if test x"$with_included_zlib" != x"no"; then
1100-
with_included_zlib=yes
1101-
elif test x"$ac_cv_header_zlib_h" != x"yes"; then
1098+
# We default to not using our zlib unless --with-included-zlib=yes is given.
1099+
if test x"$with_included_zlib" != x"yes"; then
1100+
with_included_zlib=no
1101+
fi
1102+
if test x"$ac_cv_header_zlib_h" != x"yes"; then
11021103
with_included_zlib=yes
11031104
fi
11041105
if test x"$with_included_zlib" != x"yes"; then

0 commit comments

Comments
 (0)