mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
link with espeak-ng by default (#25)
This commit is contained in:
parent
a464461f0e
commit
201ae667ee
3 changed files with 8 additions and 7 deletions
2
Makefile
2
Makefile
|
|
@ -6,7 +6,7 @@ DEPFLAGS = -MMD
|
|||
WARNFLAGS = -Wall
|
||||
CFLAGS += ${DEPFLAGS} ${WARNFLAGS}
|
||||
|
||||
LDLIBS = -lespeak -lpthread -lasound -lm
|
||||
LDLIBS = -lespeak-ng -lpthread -lasound -lm
|
||||
|
||||
INSTALL = install
|
||||
BINMODE = 0755
|
||||
|
|
|
|||
11
README.md
11
README.md
|
|
@ -1,14 +1,16 @@
|
|||
# espeakup connector
|
||||
|
||||
espeakup is a program which makes it possible for speakup to use
|
||||
the espeak software synthesizer. It does this by reading speakup's
|
||||
softsynth device and passing the text to espeak which actually speaks.
|
||||
the espeak-ng software synthesizer. It does this by reading speakup's
|
||||
softsynth device and passing the text to espeak-ng which actually speaks.
|
||||
|
||||
## Requirements
|
||||
|
||||
This program works with the speakup screen reader, which can be obtained
|
||||
from http://linux-speakup.org, and the espeak software speech
|
||||
synthesizer which can be obtained from http://espeak.sourceforge.net.
|
||||
from http://linux-speakup.org, and the
|
||||
[espeak-ng](https://github.com/espeak-ng/espeak-ng) software speech
|
||||
synthesizer.
|
||||
|
||||
You must have both of these installed and operational. Setting them up
|
||||
is beyond the scope of this document.
|
||||
|
||||
|
|
@ -47,4 +49,3 @@ authors of Speakup and Espeak, respectively, for their work.
|
|||
|
||||
Bugs should be filed on our bug tracker at
|
||||
https://github.com/linux-speakup/issues.
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
#include <stddef.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#include <espeak/speak_lib.h>
|
||||
#include <espeak-ng/speak_lib.h>
|
||||
|
||||
#include "queue.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue