forked from brailcom/speechd
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a run-spd-say script and make run-speechd and run-spd-say able to…
… talk directly That allows to run the just-built speech-dispatcher and call spd-say on it without having to interfere with an existing installation.
- Loading branch information
Showing
5 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ | |
/po/stamp-it | ||
/po/stamp-po | ||
/py-compile | ||
/run-spd-say | ||
/run-speechd | ||
/so_locations | ||
/speech-dispatcher.pc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -567,7 +567,8 @@ AM_CONDITIONAL([USE_LIBSYSTEMD], [test "x$use_libsystemd" = "xyes"]) | |
AM_CONDITIONAL(BUILD_HTML_DOC, [test "$EMAIL" = [email protected]]) | ||
|
||
AC_CONFIG_FILES([Makefile | ||
run-speechd | ||
run-speechd | ||
run-spd-say | ||
speech-dispatcher.pc | ||
config/Makefile | ||
config/clients/Makefile | ||
|
@@ -591,7 +592,7 @@ AC_CONFIG_FILES([Makefile | |
src/modules/Makefile | ||
src/server/Makefile | ||
src/tests/Makefile], | ||
[chmod +x run-speechd]) | ||
[chmod +x run-speechd run-spd-say]) | ||
AC_OUTPUT | ||
AC_MSG_NOTICE([output modules to be built are $output_modules]) | ||
AC_MSG_NOTICE([audio methods to be built are $audio_methods]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
abs_builddir=@abs_builddir@ | ||
abs_srcdir=@abs_srcdir@ | ||
LD_LIBRARY_PATH=$abs_builddir/src/audio${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} SPEECHD_ADDRESS=inet_socket:127.0.0.1:6561 $abs_builddir/src/clients/say/spd-say "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
abs_builddir=@abs_builddir@ | ||
abs_srcdir=@abs_srcdir@ | ||
LD_LIBRARY_PATH=$abs_builddir/src/audio${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} $abs_builddir/src/server/speech-dispatcher -C $abs_srcdir/config -m $abs_builddir/src/modules "$@" | ||
LD_LIBRARY_PATH=$abs_builddir/src/audio${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} $abs_builddir/src/server/speech-dispatcher -C $abs_srcdir/config -m $abs_builddir/src/modules -P $abs_builddir/speech-dispatcher.pid -c inet_socket -p 6561 "$@" |