From eb14b7b5798d3cbd4c2b463c5cad514308789e4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Corr=C3=AAa=20da=20Silva?= <78980992+dartmol203@users.noreply.github.com> Date: Mon, 29 Apr 2024 00:52:58 -0300 Subject: [PATCH] add options to don't use bundled libs --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 390c5961..b6100454 100644 --- a/configure.ac +++ b/configure.ac @@ -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()