Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
4ac9513c
Commit
4ac9513c
authored
Mar 02, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install and look for plugins in plugins/, not modules/ (fixes: #3352)
parent
8902488b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
modules/common.am
modules/common.am
+1
-1
src/Makefile.am
src/Makefile.am
+1
-1
src/modules/modules.c
src/modules/modules.c
+1
-3
No files found.
modules/common.am
View file @
4ac9513c
...
...
@@ -7,7 +7,7 @@
NULL =
SUFFIXES =
libvlcdir = $(vlclibdir)/
module
s/$(basedir)
libvlcdir = $(vlclibdir)/
plugin
s/$(basedir)
EXTRA_DIST = Modules.am
BUILT_SOURCES =
CLEANFILES = $(BUILT_SOURCES)
...
...
src/Makefile.am
View file @
4ac9513c
...
...
@@ -190,7 +190,7 @@ libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlccore` \
-DDATA_PATH
=
\"
$(vlcdatadir)
\"
\
-DLIBDIR
=
\"
$(libdir)
\"
\
-DPKGLIBDIR
=
\"
$(vlclibdir)
\"
\
-DPLUGIN_PATH
=
PKGLIBDIR
\"
/
module
s
\"
-DPLUGIN_PATH
=
PKGLIBDIR
\"
/
plugin
s
\"
libvlccore_la_LDFLAGS
=
`
$(VLC_CONFIG)
--ldflags
libvlccore
`
$(AM_LDFLAGS)
\
-no-undefined
\
-export-symbols
$(srcdir)
/libvlccore.sym
\
...
...
src/modules/modules.c
View file @
4ac9513c
...
...
@@ -819,10 +819,8 @@ static void AllocateAllPlugins( vlc_object_t *p_this, module_bank_t *p_bank )
const
bool
b_reset
=
var_InheritBool
(
p_this
,
"reset-plugins-cache"
);
/* Contruct the special search path for system that have a relocatable
* executable. Set it to <vlc path>/
modules and <vlc path>/
plugins. */
* executable. Set it to <vlc path>/plugins. */
if
(
vlcpath
&&
asprintf
(
&
path
,
"%s"
DIR_SEP
"modules"
,
vlcpath
)
!=
-
1
)
vlc_array_append
(
arraypaths
,
path
);
if
(
vlcpath
&&
asprintf
(
&
path
,
"%s"
DIR_SEP
"plugins"
,
vlcpath
)
!=
-
1
)
vlc_array_append
(
arraypaths
,
path
);
#ifndef WIN32
...
...
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