Skip to content

Commit

Permalink
Merge branch 'master' into android
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdunn committed Jun 6, 2014
2 parents 42de2a5 + 23b8324 commit 6f2f4c9
Show file tree
Hide file tree
Showing 14 changed files with 211 additions and 83 deletions.
21 changes: 14 additions & 7 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,21 @@ dnl ================================================================
dnl wxWidgets checks.
dnl ================================================================

AC_CHECK_PROG(WXCONFIG_CHECK,wx-config,yes)
if test x"$WXCONFIG_CHECK" != x"yes" ; then
AC_MSG_ERROR([Please install wxWidgets which is needed for espeakedit.])
AC_ARG_WITH([wx-config],
[AS_HELP_STRING([--with-wx-config], [specify the location of wx-config @<:@default=wx-config@:>@])],
[WX_CONFIG=$with_wx_config],
[WX_CONFIG=wx-config])

if test ! -e "${WX_CONFIG}" ; then
AC_CHECK_PROG(WXCONFIG_CHECK,${WX_CONFIG},yes)
if test x"$WXCONFIG_CHECK" != x"yes" ; then
AC_MSG_ERROR([Cannot find wxWidgets which is needed for espeakedit to build the voices.])
fi
fi

WX_LIBS=`wx-config --libs`
WX_CXXFLAGS=`wx-config --cxxflags`
WX_VERSION=`wx-config --version`
WX_LIBS=`${WX_CONFIG} --libs`
WX_CXXFLAGS=`${WX_CONFIG} --cxxflags`
WX_VERSION=`${WX_CONFIG} --version`

AC_SUBST(WX_LIBS)
AC_SUBST(WX_CXXFLAGS)
Expand All @@ -248,7 +255,7 @@ AC_MSG_NOTICE([
Compiler: ${CXX}
Compiler flags: ${CXXFLAGS}
wxWidgets: ${WX_VERSION}
wxWidgets: ${WX_VERSION} (${WX_CONFIG})
pulseaudio: ${have_pulseaudio}
portaudio: ${have_portaudio}
sada: ${have_sada}
Expand Down
8 changes: 5 additions & 3 deletions dictsource/el_list
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ _0M2 ekatom'iria
_1M3 'ena|Disekatom'irio
_0M3 Disekatom'iria
_dpt _k'oma
_. tel'ia

_#ος os // ordinal suffix
_#η i
Expand Down Expand Up @@ -102,6 +101,11 @@ _3M1o trisCil^ost'
- m'ion
= ison $max3
$ Dol'aria
_. tel'ia
_, k'oma
_« arister'a||isaQojik'a
_» Deksi'a||isaQojik'a


// articles
ο o $u // definate article
Expand Down Expand Up @@ -401,8 +405,6 @@ _ή ,ita||t'onos
ῷ om,eQa||perispom'eni||ipojeQram'eni
ᾠ om,eQa||psil'i||ipojeQram'eni

_. tel'ia
_, k'oma

U+342 perispom'eni // combining accent
U+345 ipojeQram'eni // combining iota subscript
Expand Down
Loading

0 comments on commit 6f2f4c9

Please sign in to comment.