Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 234184 | Differences between
and this patch

Collapse All | Expand All

(-)alsa-utils-1.0.18.orig/configure.in (+12 lines)
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.
(-)alsa-utils-1.0.18.orig/Makefile.am (-2 / +6 lines)
Lines 9-16 Link Here
9
else
9
else
10
ALSACONF_DIR=
10
ALSACONF_DIR=
11
endif
11
endif
12
SUBDIRS= include alsactl $(ALSACONF_DIR) $(ALSAMIXER_DIR) amidi amixer \
12
if BUILD_SEQ
13
	 aplay iecset seq speaker-test utils m4 po
13
SEQ_DIR=seq
14
AMIDI_DIR=amidi
15
endif
16
17
SUBDIRS= include alsactl alsaconf $(ALSAMIXER_DIR) $(AMIDI_DIR) amixer aplay iecset $(SEQ_DIR) speaker-test utils m4 po
14
EXTRA_DIST= config.rpath  TODO gitcompile
18
EXTRA_DIST= config.rpath  TODO gitcompile
15
AUTOMAKE_OPTIONS=foreign
19
AUTOMAKE_OPTIONS=foreign
16
ACLOCAL_AMFLAGS = -I m4
20
ACLOCAL_AMFLAGS = -I m4

Return to bug 234184