1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-26 15:20:21 +01:00

portmixer: Drop --with-pa-include in favor of overwriting the pkg-config check.

This commit is contained in:
benjamin.drung@gmail.com
2013-11-19 01:43:48 +00:00
parent e13d905f8c
commit 48b001d3d0
2 changed files with 1 additions and 38 deletions

View File

@@ -35,23 +35,7 @@ AC_ARG_ENABLE([debug],
[AC_SUBST( cflags, ["$cflags -g"] ) AC_MSG_RESULT(yes)],
[AC_SUBST( cflags, ["$cflags -O2"] ) AC_MSG_RESULT(no)])
#
# Check for portaudio path
#
AC_ARG_WITH([pa-include],
AC_HELP_STRING([--with-pa-include],
[specify path to portaudio v2.0 include directory]),
[with_portaudio=$withval],
[with_portaudio=""])
PKG_CHECK_MODULES(PORTAUDIO, portaudio-2.0 >= 19)
#
#
#
if test -n "$with_portaudio"; then
PORTAUDIO_CFLAGS="-I$withval"
fi
PKG_CHECK_MODULES([PORTAUDIO], [portaudio-2.0 >= 19])
#
# Check which APIs are available