Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
9edc2a46
Commit
9edc2a46
authored
Jun 07, 2002
by
Loïc Minier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* basic On Screen Display intf-plugin based on libxosd
parent
5a895839
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
543 additions
and
432 deletions
+543
-432
Makefile
Makefile
+4
-2
Makefile.opts.in
Makefile.opts.in
+1
-0
configure
configure
+522
-430
configure.in
configure.in
+16
-0
No files found.
Makefile
View file @
9edc2a46
...
...
@@ -64,7 +64,8 @@ PLUGINS_DIR := a52 \
text
\
vcd
\
win32
\
x11
x11
\
xosd
PLUGINS_TARGETS
:=
a52/a52
\
aa/aa
\
...
...
@@ -158,7 +159,8 @@ PLUGINS_TARGETS := a52/a52 \
win32/waveout
\
win32/intfwin
\
x11/x11
\
x11/xvideo
x11/xvideo
\
xosd/xosd
#
# C Objects
...
...
Makefile.opts.in
View file @
9edc2a46
...
...
@@ -125,6 +125,7 @@ vcd_LDFLAGS = @vcd_LDFLAGS@
vorbis_LDFLAGS
=
@vorbis_LDFLAGS@
waveout_LDFLAGS
=
@waveout_LDFLAGS@
x11_LDFLAGS
=
@x11_LDFLAGS@
xosd_LDFLAGS
=
@xosd_LDFLAGS@
xvideo_LDFLAGS
=
@xvideo_LDFLAGS@
#
...
...
configure
View file @
9edc2a46
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
9edc2a46
...
...
@@ -1496,6 +1496,21 @@ AC_ARG_ENABLE(ncurses,
ncurses_LDFLAGS="${ncurses_LDFLAGS} -lncurses"
fi])
dnl
dnl XOSD plugin
dnl
AC_ARG_ENABLE(xosd,
[ --enable-xosd xosd interface support (default disabled)]
if test x$enable_xosd = xyes
then
AC_CHECK_HEADER(xosd.h), AC_CHECK_LIB(xosd, xosd_init, have_xosd="true", have_xosd="false")
if test x$have_xosd = xyes
then
PLUGINS="${PLUGINS} xosd"
xosd_LDFLAGS="${xosd_LDFLAGS} -lxosd"
fi
fi
dnl
dnl Lirc plugin
dnl
...
...
@@ -1771,6 +1786,7 @@ AC_SUBST(vorbis_LDFLAGS)
AC_SUBST(waveout_LDFLAGS)
AC_SUBST(x11_LDFLAGS)
AC_SUBST(xvideo_LDFLAGS)
AC_SUBST(xosd_LDFLAGS)
AC_OUTPUT([Makefile.config Makefile.opts po/Makefile.in])
...
...
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