diff options
| author | Keith Packard <keithp@keithp.com> | 2009-07-11 00:56:13 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2009-07-11 00:56:13 -0700 |
| commit | fef7334bddb9fccfbd6deab7d5d466ab3e76323a (patch) | |
| tree | a418845f11ae8004f463cfde8202f43ef6692cc3 /aoview/Makefile.am | |
| parent | 80cadf44f5f1accd6ddfca25c2af8d4d424f26d9 (diff) | |
Hook aoview directly to alsa
This skips the flite internal audio stuff which opened and closed the audio
device for each phrase. This caused the first part of some phrases to be
missed when using an external audio device.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'aoview/Makefile.am')
| -rw-r--r-- | aoview/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aoview/Makefile.am b/aoview/Makefile.am index c354aa0f..00851b67 100644 --- a/aoview/Makefile.am +++ b/aoview/Makefile.am @@ -1,9 +1,9 @@ VERSION=$(shell git describe) -AM_CFLAGS=$(GNOME_CFLAGS) -I$(top_srcdir)/src -DAOVIEW_VERSION=\"$(VERSION)\" @FLITE_INCS@ +AM_CFLAGS=$(GNOME_CFLAGS) $(ALSA_CFLAGS) -I$(top_srcdir)/src -DAOVIEW_VERSION=\"$(VERSION)\" @FLITE_INCS@ bin_PROGRAMS=aoview -aoview_LDADD=$(GNOME_LIBS) $(FLITE_LIBS) +aoview_LDADD=$(GNOME_LIBS) $(FLITE_LIBS) $(ALSA_LIBS) aoview_SOURCES = \ aoview_main.c \ |
