Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
1000e8fa
Commit
1000e8fa
authored
Sep 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove recursion into modules/access/screen/
parent
db065ee5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
17 deletions
+14
-17
configure.ac
configure.ac
+0
-4
modules/access/Modules.am
modules/access/Modules.am
+14
-1
modules/access/screen/Modules.am
modules/access/screen/Modules.am
+0
-12
No files found.
configure.ac
View file @
1000e8fa
...
...
@@ -1911,9 +1911,6 @@ if test "${enable_screen}" != "no"; then
VLC_ADD_LIBS([screen],[-Wl,-framework,OpenGL,-framework,ApplicationServices])
])
])
elif test "${SYS}" = "mingw32"; then
VLC_ADD_PLUGIN([screen])
VLC_ADD_LIBS([screen],[-lgdi32])
fi
fi
...
...
@@ -4135,7 +4132,6 @@ AC_CONFIG_FILES([
modules/access/rtp/Makefile
modules/access/vcd/Makefile
modules/access/vcdx/Makefile
modules/access/screen/Makefile
modules/access/zip/Makefile
modules/access/zip/unzip/Makefile
modules/access_output/Makefile
...
...
modules/access/Modules.am
View file @
1000e8fa
SUBDIRS = mms rtp
screen
vcd vcdx zip
SUBDIRS = mms rtp vcd vcdx zip
libfilesystem_plugin_la_SOURCES = \
fs.h \
...
...
@@ -145,6 +145,19 @@ if HAVE_XCB
libvlc_LTLIBRARIES += libxcb_screen_plugin.la
endif
libscreen_plugin_la_SOURCES = screen/screen.c screen/screen.h
libscreen_plugin_la_CFLAGS = $(AM_CFLAGS)
libscreen_plugin_la_LIBADD = $(AM_LIBADD)
if HAVE_WIN32
libscreen_plugin_la_SOURCES += screen/win32.c
libscreen_plugin_la_LIBADD += -lgdi32
libvlc_LTLIBRARIES += libscreen_plugin.la
endif
if HAVE_DARWIN
libscreen_plugin_la_SOURCES += screen/mac.c
libvlc_LTLIBRARIES += $(LTLIBscreen)
endif
### Optical media ###
...
...
modules/access/screen/Modules.am
deleted
100644 → 0
View file @
db065ee5
if HAVE_WIN32
screen_extra = win32.c
else
if HAVE_DARWIN
screen_extra = mac.c
endif
endif
SOURCES_screen = \
screen.c \
screen.h \
$(screen_extra) \
$(NULL)
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