Detect pocketsphinx_export.h header

This commit is contained in:
Gregory John Casamento 2020-01-31 04:39:33 -05:00
parent d526f6f50d
commit 71a87523e4
2 changed files with 8 additions and 8 deletions

14
configure vendored
View file

@ -635,6 +635,7 @@ GSCUPS_LIBS
GSCUPS_LDFLAGS
GSCUPS_CFLAGS
have_cups
BUILD_SPEECH_RECOGNIZER
BUILD_SPEECH
BUILD_SOUND
HAVE_ICU
@ -729,6 +730,7 @@ with_icu_library
enable_aspell
enable_sound
enable_speech
enable_speech_recognizer
enable_cups
'
ac_precious_vars='build_alias
@ -1384,6 +1386,7 @@ Optional Features:
--disable-aspell Disable aspell for spellchecker
--disable-sound Disable sound
--disable-speech Disable speech server
--disable-speech-recognizer Disable speech recognition server
--disable-cups Disable cups printing support
Optional Packages:
@ -5663,8 +5666,6 @@ fi
#--------------------------------------------------------------------
<<<<<<< Updated upstream
=======
# NSSpeechRecognizer
#--------------------------------------------------------------------
# Check whether --enable-speech-recognizer was given.
@ -5719,12 +5720,12 @@ else
have_speech_recognizer=no
fi
for ac_header in pocketsphinx/pocketsphinx.h
for ac_header in pocketsphinx/pocketsphinx_export.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "pocketsphinx/pocketsphinx.h" "ac_cv_header_pocketsphinx_pocketsphinx_h" "$ac_includes_default"
if test "x$ac_cv_header_pocketsphinx_pocketsphinx_h" = xyes; then :
ac_fn_c_check_header_mongrel "$LINENO" "pocketsphinx/pocketsphinx_export.h" "ac_cv_header_pocketsphinx_pocketsphinx_export_h" "$ac_includes_default"
if test "x$ac_cv_header_pocketsphinx_pocketsphinx_export_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_POCKETSPHINX_POCKETSPHINX_H 1
#define HAVE_POCKETSPHINX_POCKETSPHINX_EXPORT_H 1
_ACEOF
have_pocketsphinx=yes
else
@ -5741,7 +5742,6 @@ fi
#--------------------------------------------------------------------
>>>>>>> Stashed changes
# Find CUPS
#--------------------------------------------------------------------
GSCUPS_CFLAGS=

View file

@ -548,7 +548,7 @@ BUILD_SPEECH_RECOGNIZER=
# has pocketsphinx, for speech recognition.
AC_CHECK_LIB(pocketsphinx, ps_start_utt, have_speech_recognizer=yes, have_speech_recognizer=no)
AC_CHECK_HEADERS(pocketsphinx/pocketsphinx.h, have_pocketsphinx=yes, have_pocketsphinx=no)
AC_CHECK_HEADERS(pocketsphinx/pocketsphinx_export.h, have_pocketsphinx=yes, have_pocketsphinx=no)
if test $have_pocketsphinx = yes -a $have_speech_recognizer = yes -a $enable_speech_recognizer = yes; then
#if test $have_speech_recognizer = yes -a $enable_speech_recognizer = yes; then
BUILD_SPEECH_RECOGNIZER="speech_recognizer"