1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-11 23:25:53 +01:00

Adds system expat library to link

Adds system zlib library to link when using local libid3tag
Fixes portmixer build when using local portaudio
This commit is contained in:
lllucius@gmail.com
2013-11-09 21:10:32 +00:00
parent e7f836222f
commit 488c387b18
4 changed files with 69 additions and 2 deletions

View File

@@ -596,6 +596,11 @@ case "${host_os}" in
AC_MSG_ERROR(dlopen not found, required by Audacity)
fi
AC_SEARCH_LIBS([XML_ParserCreate], [expat])
if [[ "$ac_cv_search_expat" = no ]]; then
AC_MSG_ERROR(expat not found, required by Audacity)
fi
AC_SUBST(HAVE_GTK)
PKG_CHECK_MODULES(GTK, gtk+-2.0, have_gtk=yes, have_gtk=no)
if [[ "$have_gtk" = "yes" ]]