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
a110441d
Commit
a110441d
authored
May 04, 2005
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* do not use a dynamic linker if no plugin support was detected/requested.
parent
9e3dfd25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
configure.ac
configure.ac
+1
-0
src/misc/modules.c
src/misc/modules.c
+3
-4
No files found.
configure.ac
View file @
a110441d
...
...
@@ -4257,6 +4257,7 @@ fi
dnl Export automake variables
if ${plugin_support}
then
AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, Define if we have support for dynamic plugins)
for plugin in `echo ${PLUGINS}`
do
eval "${plugin}_p=yes"
...
...
src/misc/modules.c
View file @
a110441d
...
...
@@ -51,8 +51,9 @@
# include <unistd.h>
#endif
#define HAVE_DYNAMIC_PLUGINS
#if defined(HAVE_DL_DYLD)
#if !defined(HAVE_DYNAMIC_PLUGINS)
/* no support for plugins */
#elif defined(HAVE_DL_DYLD)
# if defined(HAVE_MACH_O_DYLD_H)
# include <mach-o/dyld.h>
# endif
...
...
@@ -73,8 +74,6 @@
# if defined(HAVE_DL_H)
# include <dl.h>
# endif
#else
# undef HAVE_DYNAMIC_PLUGINS
#endif
#include "vlc_error.h"
...
...
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