Skip to content

Commit

Permalink
add options to don't use bundled libs
Browse files Browse the repository at this point in the history
This changes make it possible to config rsync while not using the included zlib and popt libs
  • Loading branch information
dartmol203 committed Apr 29, 2024
1 parent 4592aa7 commit 01fe769
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,9 @@ case "$CC" in
;;
esac

AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
AC_CONFIG_FILES([Makefile lib/dummy shconfig])
AS_IF([test x"$with_included_zlib" = x"yes"], [AC_CONFIG_FILES([zlib/dummy])])
AS_IF([test x"$with_included_popt" = x"yes"], [AC_CONFIG_FILES([popt/dummy])])
AC_OUTPUT

AC_MSG_RESULT()
Expand Down

0 comments on commit 01fe769

Please sign in to comment.