1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02: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

@@ -49,6 +49,7 @@ AC_DEFUN([AUDACITY_CHECKLIB_LIBID3TAG], [
LIBID3TAG_LOCAL_LIBS="libid3tag.a"
LIBID3TAG_LOCAL_CXXFLAGS='-I$(top_srcdir)/lib-src/libid3tag'
LIBID3TAG_LOCAL_CPPSYMBOLS="USE_LIBID3TAG"
LIBS="${LIBS} -lz"
AC_MSG_NOTICE([libid3tag libraries are available in the local tree])
else
LIBID3TAG_LOCAL_AVAILABLE="no"

View File

@@ -44,7 +44,7 @@ AC_DEFUN([AUDACITY_CHECKLIB_PORTAUDIO], [
PORTAUDIO_LOCAL_CXXFLAGS='-I$(top_srcdir)/lib-src/portaudio-v19/include'
dnl set up configuring portaudio
PORTAUDIO_LOCAL_CONFIGURE_ARGS="--with-pa-include=../portaudio-v19/include"
PORTAUDIO_LOCAL_CONFIGURE_ARGS="--with-pa-include=$(pwd)/lib-src/portaudio-v19/include"
AC_MSG_NOTICE([portaudio19 library is available in the local tree])
else