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
acd7c21d
Commit
acd7c21d
authored
Mar 04, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of PLUGIN_PATH
parent
5cc597e7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
src/Makefile.am
src/Makefile.am
+1
-2
src/modules/modules.c
src/modules/modules.c
+2
-4
No files found.
src/Makefile.am
View file @
acd7c21d
...
...
@@ -188,8 +188,7 @@ libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlccore` \
-DLOCALEDIR
=
\"
$(localedir)
\"
\
-DSYSCONFDIR
=
\"
$(sysconfdir)
\"
\
-DDATA_PATH
=
\"
$(vlcdatadir)
\"
\
-DPKGLIBDIR
=
\"
$(vlclibdir)
\"
\
-DPLUGIN_PATH
=
PKGLIBDIR
\"
/plugins
\"
-DPKGLIBDIR
=
\"
$(vlclibdir)
\"
libvlccore_la_LDFLAGS
=
`
$(VLC_CONFIG)
--ldflags
libvlccore
`
$(AM_LDFLAGS)
\
-no-undefined
\
-export-symbols
$(srcdir)
/libvlccore.sym
\
...
...
src/modules/modules.c
View file @
acd7c21d
...
...
@@ -820,12 +820,10 @@ static void AllocateAllPlugins( vlc_object_t *p_this, module_bank_t *p_bank )
/* Contruct the special search path for system that have a relocatable
* executable. Set it to <vlc path>/plugins. */
assert
(
vlcpath
);
if
(
vlcpath
&&
asprintf
(
&
path
,
"%s"
DIR_SEP
"plugins"
,
vlcpath
)
!=
-
1
)
if
(
asprintf
(
&
path
,
"%s"
DIR_SEP
"plugins"
,
vlcpath
)
!=
-
1
)
vlc_array_append
(
arraypaths
,
path
);
#if !defined(WIN32) && !defined(__APPLE__)
vlc_array_append
(
arraypaths
,
strdup
(
PLUGIN_PATH
)
);
#endif
/* If the user provided a plugin path, we add it to the list */
char
*
userpaths
=
var_InheritString
(
p_this
,
"plugin-path"
);
...
...
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