Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
d48032f7
Commit
d48032f7
authored
Oct 16, 2015
by
Petri Hintukainen
Committed by
Jean-Baptiste Kempf
Oct 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add configure check for sapi.h
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
7136d004
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
configure.ac
configure.ac
+8
-0
modules/text_renderer/Makefile.am
modules/text_renderer/Makefile.am
+2
-0
No files found.
configure.ac
View file @
d48032f7
...
@@ -3250,6 +3250,14 @@ AM_CONDITIONAL([HAVE_FONTCONFIG], [test "${have_fontconfig}" = "yes"])
...
@@ -3250,6 +3250,14 @@ AM_CONDITIONAL([HAVE_FONTCONFIG], [test "${have_fontconfig}" = "yes"])
AM_CONDITIONAL([HAVE_FRIBIDI], [test "${have_fribidi}" = "yes"])
AM_CONDITIONAL([HAVE_FRIBIDI], [test "${have_fribidi}" = "yes"])
AM_CONDITIONAL([HAVE_HARFBUZZ], [test "${have_harfbuzz}" = "yes"])
AM_CONDITIONAL([HAVE_HARFBUZZ], [test "${have_harfbuzz}" = "yes"])
dnl
dnl SAPI (text to Speech renderer for Windows)
dnl
AC_CHECK_HEADERS(sapi.h, [
have_sapi="yes"
],[AC_MSG_WARN([sapi.h not found. Text to Speech renderer for Windows disabled])])
AM_CONDITIONAL([HAVE_SAPI], [test "${have_sapi}" = "yes"])
dnl
dnl
dnl QuartzText vout module (iOS/Mac OS)
dnl QuartzText vout module (iOS/Mac OS)
...
...
modules/text_renderer/Makefile.am
View file @
d48032f7
...
@@ -42,11 +42,13 @@ libnsspeechsynthesizer_plugin_la_LDFLAGS = -Wl,-framework,Cocoa
...
@@ -42,11 +42,13 @@ libnsspeechsynthesizer_plugin_la_LDFLAGS = -Wl,-framework,Cocoa
text_LTLIBRARIES
+=
libnsspeechsynthesizer_plugin.la
text_LTLIBRARIES
+=
libnsspeechsynthesizer_plugin.la
endif
endif
if
HAVE_SAPI
libsapi_plugin_la_SOURCES
=
text_renderer/sapi.cpp
libsapi_plugin_la_SOURCES
=
text_renderer/sapi.cpp
libsapi_plugin_la_LIBADD
=
-lole32
libsapi_plugin_la_LIBADD
=
-lole32
if
HAVE_WIN32
if
HAVE_WIN32
text_LTLIBRARIES
+=
libsapi_plugin.la
text_LTLIBRARIES
+=
libsapi_plugin.la
endif
endif
endif
libsvg_plugin_la_SOURCES
=
text_renderer/svg.c
libsvg_plugin_la_SOURCES
=
text_renderer/svg.c
libsvg_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
$(SVG_CFLAGS)
libsvg_plugin_la_CPPFLAGS
=
$(AM_CPPFLAGS)
$(SVG_CFLAGS)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment