diff options
author | David Robillard <d@drobilla.net> | 2006-11-11 01:00:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-11-11 01:00:47 +0000 |
commit | 9ed6efc808cb57555f89f08475df70fd4f8b630b (patch) | |
tree | 5486ef7e97a6978f985b433e1966f76a03501845 /configure.ac | |
parent | 5b83af28b6eeb52a285618cd90f30a5461189efd (diff) | |
download | patchage-9ed6efc808cb57555f89f08475df70fd4f8b630b.tar.gz patchage-9ed6efc808cb57555f89f08475df70fd4f8b630b.tar.bz2 patchage-9ed6efc808cb57555f89f08475df70fd4f8b630b.zip |
Fixes for building without ALSA (eg on OSX)
git-svn-id: http://svn.drobilla.net/lad/patchage@200 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a3c18a4..dfb41f1 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ if test "$enable_alsa" = "yes"; then else ALSA_FOUND="no" fi -AM_CONDITIONAL(ALSA, test "$ALSA_FOUND" = "yes") +AM_CONDITIONAL(WITH_ALSA, test "$ALSA_FOUND" = "yes") # LASH config option build_lash="yes" |