diff options
| author | garyscavone <garyscavone@users.noreply.github.com> | 2014-05-30 09:26:08 -0400 |
|---|---|---|
| committer | garyscavone <garyscavone@users.noreply.github.com> | 2014-05-30 09:26:08 -0400 |
| commit | e2f63bd30514c7a8dc3439a681a87681ef0ad6d3 (patch) | |
| tree | 52ad3707022a854c6f05f7e49de505d23899b233 | |
| parent | c0b9de42a3e7f7c168380c9e91c5993524a11154 (diff) | |
| parent | 54e567b8af8df1b519e264d49e25b26078ce8933 (diff) | |
Merge pull request #14 from dancing-bone-machine/debian-configure
Checking for pulseaudio on Debian
| -rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index fa45967..dc2ad0a 100644 --- a/configure.ac +++ b/configure.ac @@ -107,8 +107,7 @@ case $host in api="$api -D__LINUX_PULSE__" req="$req libpulse-simple" AC_MSG_RESULT(using PulseAudio) - PKG_CHECK_MODULES([PULSE], [libpulse-simple], , AC_MSG_ERROR(PulseAudio support requires the pulse-simple library!)) - LIBS="$LIBS `pkg-config --libs libpulse-simple`" ], ) + AC_CHECK_LIB(pulse-simple, pa_simple_flush, , AC_MSG_ERROR(PulseAudio support requires the pulse-simple library!))], ) # Look for OSS flag AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (linux only)], [ |
