From 48fa03faf5529a4072ae50fe9ff983333bc6fca0 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 5 Sep 2009 11:32:22 -0500 Subject: [PATCH] renamed espeak_sound.c to portaudio.c This better describes the sound system that espeak uses natively. --- Makefile | 6 +++--- espeak_sound.c => portaudio.c | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename espeak_sound.c => portaudio.c (100%) diff --git a/Makefile b/Makefile index da34c2b..6687bdc 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ BINDIR = $(PREFIX)/bin INSTALL = install ALSA_SRCS = alsa.c -ESPEAK_SRCS = espeak_sound.c +PORTAUDIO_SRCS = portaudio.c SRCS = \ cli.c \ espeak.c \ @@ -21,7 +21,7 @@ ifeq ($(AUDIO),alsa) SRCS += $(ALSA_SRCS) LDLIBS += -lasound else -SRCS += $(ESPEAK_SRCS) +SRCS += $(PORTAUDIO_SRCS) endif OBJS = $(SRCS:.c=.o) @@ -54,4 +54,4 @@ softsynth.o: softsynth.c espeakup.h queue.h alsa.o: alsa.c espeakup.h -espeak_sound.o: espeak_sound.c espeakup.h +portaudio.o: portaudio.c espeakup.h diff --git a/espeak_sound.c b/portaudio.c similarity index 100% rename from espeak_sound.c rename to portaudio.c