Lines 116-121
Link Here
|
116 |
TESTSOUND="$dir/test.wav") |
116 |
TESTSOUND="$dir/test.wav") |
117 |
AC_SUBST(TESTSOUND) |
117 |
AC_SUBST(TESTSOUND) |
118 |
|
118 |
|
|
|
119 |
AC_ARG_ENABLE([sequencer], |
120 |
[AC_HELP_STRING([--disable-sequencer], [Disable sequencer utilities (aconnect, aplaymidi, aseqdump, aseqnet)])] ) |
121 |
|
122 |
if test "x$enable_sequencer" != "xno"; then |
123 |
AC_CHECK_LIB([asound], [snd_seq_open], [has_seq=yes], [has_seq=no]) |
124 |
fi |
125 |
if test "x$enable_sequencer" = "xyes" && test "x$has_seq" = "xno"; then |
126 |
AC_MSG_FAILURE([cannot find snd_seq_open. ALSA was built without sequencer support]) |
127 |
fi |
128 |
|
129 |
AM_CONDITIONAL([BUILD_SEQ], [test "x$has_seq" = "xyes"]) |
130 |
|
119 |
AM_CONFIG_HEADER(include/aconfig.h) |
131 |
AM_CONFIG_HEADER(include/aconfig.h) |
120 |
|
132 |
|
121 |
dnl Checks for typedefs, structures, and compiler characteristics. |
133 |
dnl Checks for typedefs, structures, and compiler characteristics. |