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
5e870913
Commit
5e870913
authored
Aug 18, 2000
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
. removed the sdlvlc alias
. added the vlc-sdl package in the Debian control files
parent
81292683
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
28 additions
and
15 deletions
+28
-15
ChangeLog
ChangeLog
+5
-3
Makefile.in
Makefile.in
+5
-1
configure
configure
+1
-1
configure.in
configure.in
+1
-1
debian/control
debian/control
+9
-0
debian/rules
debian/rules
+5
-4
debian/vlc-sdl.files
debian/vlc-sdl.files
+2
-0
plugins/sdl/sdl.c
plugins/sdl/sdl.c
+0
-5
No files found.
ChangeLog
View file @
5e870913
Thu Aug 18 00:21:33 BST 2000
0.1.99g :
* added support for the SDL vout : the --display fullscreen allows
fullscreen when possible. Disabled by default.
* added sdlvlc (which probably should start in fullscreen, no ?)
* added support for the SDL vout : the --display fullscreen allows
fullscreen when possible. Disabled by default.
* added sdlvlc (which probably should start in fullscreen, no ?)
* removed sdlvlc :)
* updated debian directory to build vlc-sdl
Wed Aug 16 01:07:14 CEST 2000
0.1.99g :
...
...
Makefile.in
View file @
5e870913
...
...
@@ -409,7 +409,11 @@ else
$(CC)
$(CCFLAGS)
$(LCFLAGS)
$(CFLAGS)
--export-dynamic
-rdynamic
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
endif
sdlvlc gvlc xvlc fbvlc
:
vlc
#
# Gnome and Framebuffer aliases - don't add new aliases which could bloat
# the namespace
#
gvlc fbvlc
:
vlc
rm
-f
$@
&&
ln
-s
vlc
$@
plugins
:
$(PLUGINS)
...
...
configure
View file @
5e870913
...
...
@@ -3102,7 +3102,7 @@ fi
# Check whether --enable-sdl or --disable-sdl was given.
if
test
"
${
enable_sdl
+set
}
"
=
set
;
then
enableval
=
"
$enable_sdl
"
if
test
x
$enable_sdl
=
xyes
;
then
PLUGINS
=
${
PLUGINS
}
"sdl "
;
ALIASES
=
${
ALIASES
}
"sdlvlc "
;
fi
if
test
x
$enable_sdl
=
xyes
;
then
PLUGINS
=
${
PLUGINS
}
"sdl "
;
fi
fi
# Check whether --enable-glide or --disable-glide was given.
...
...
configure.in
View file @
5e870913
...
...
@@ -95,7 +95,7 @@ AC_ARG_ENABLE(ggi,
[if test x$enable_ggi = xyes; then PLUGINS=${PLUGINS}"ggi "; fi])
AC_ARG_ENABLE(sdl,
[ --enable-sdl SDL support (default disabled)],
[if test x$enable_sdl = xyes; then PLUGINS=${PLUGINS}"sdl ";
ALIASES=${ALIASES}"sdlvlc ";
fi])
[if test x$enable_sdl = xyes; then PLUGINS=${PLUGINS}"sdl "; fi])
AC_ARG_ENABLE(glide,
[ --enable-glide Glide (3dfx) support (default disabled)],
[if test x$enable_glide = xyes; then PLUGINS=${PLUGINS}"glide "; fi])
...
...
debian/control
View file @
5e870913
...
...
@@ -56,3 +56,12 @@ Description: Esound plugin for the VideoLAN MPEG2 and DVD player vlc
This plugin adds support for the Enlightened Sound Daemon to
the VideoLAN Client.
Package: vlc-sdl
Architecture: any
Depends: vlc (= ${Source-Version}), ${shlibs:Depends}
Description: SDL plugin for the VideoLAN MPEG2 and DVD player vlc
VideoLAN is a free MPEG2 software solution.
.
This plugin adds support for the Simple DirectMedia Layer library to
the VideoLAN Client.
debian/rules
View file @
5e870913
...
...
@@ -16,7 +16,8 @@ build-stamp:
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info \
--enable-mmx --enable-gnome --enable-fb \
--enable-ggi --enable-esd --enable-glide
--enable-ggi --enable-esd --enable-glide \
--enable-sdl
$(MAKE)
touch build-stamp
...
...
@@ -39,7 +40,7 @@ install: build
$(MAKE) install prefix=`pwd`/debian/tmp/usr
# make symlinks for packages
for alias in ggi gnome fb glide esd ; do \
for alias in ggi gnome fb glide esd
sdl
; do \
ln -s vlc debian/tmp/usr/share/doc/vlc-$$alias ; done
ln -s vlc.1.gz debian/tmp/usr/share/man/man1/fbvlc.1.gz
ln -s vlc.1.gz debian/tmp/usr/share/man/man1/gvlc.1.gz
...
...
@@ -63,10 +64,10 @@ binary-arch: build install
# dh_installpam
# dh_installinit
dh_installcron
dh_installmanpages -Nvlc-gnome -Nvlc-fb -Nvlc-ggi -Nvlc-glide -Nvlc-esd
dh_installmanpages -Nvlc-gnome -Nvlc-fb -Nvlc-ggi -Nvlc-glide -Nvlc-esd
-Nvlc-sdl
dh_installinfo
# dh_undocumented
dh_installchangelogs -Nvlc-gnome -Nvlc-fb -Nvlc-ggi -Nvlc-glide -Nvlc-esd
dh_installchangelogs -Nvlc-gnome -Nvlc-fb -Nvlc-ggi -Nvlc-glide -Nvlc-esd
-Nvlc-sdl
dh_link
dh_strip
dh_compress
...
...
debian/vlc-sdl.files
0 → 100644
View file @
5e870913
usr/lib/videolan/vlc/sdl.so
usr/share/doc/vlc-sdl
plugins/sdl/sdl.c
View file @
5e870913
...
...
@@ -81,11 +81,6 @@ plugin_info_t * GetConfig( void )
* initialization part at least, even if we fail afterwards */
p_info
->
i_score
=
0x100
;
if
(
TestProgram
(
"sdlvlc"
)
)
{
p_info
->
i_score
+=
0x180
;
}
/* If this plugin was requested, score it higher */
if
(
TestMethod
(
VOUT_METHOD_VAR
,
"sdl"
)
)
{
...
...
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