Skip to content

Commit 01fe769

Browse files
committed
add options to don't use bundled libs
This changes make it possible to config rsync while not using the included zlib and popt libs
1 parent 4592aa7 commit 01fe769

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configure.ac

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,9 @@ case "$CC" in
14391439
;;
14401440
esac
14411441

1442-
AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
1442+
AC_CONFIG_FILES([Makefile lib/dummy shconfig])
1443+
AS_IF([test x"$with_included_zlib" = x"yes"], [AC_CONFIG_FILES([zlib/dummy])])
1444+
AS_IF([test x"$with_included_popt" = x"yes"], [AC_CONFIG_FILES([popt/dummy])])
14431445
AC_OUTPUT
14441446

14451447
AC_MSG_RESULT()

0 commit comments

Comments
 (0)