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
762686af
Commit
762686af
authored
Sep 03, 2011
by
Rafaël Carré
Committed by
Felix Paul Kühne
Sep 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: fixed compilation for darwin
parent
5e98d6da
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
configure.ac
configure.ac
+5
-2
No files found.
configure.ac
View file @
762686af
...
@@ -691,21 +691,24 @@ AC_CHECK_LIB(m,lrintf, [
...
@@ -691,21 +691,24 @@ AC_CHECK_LIB(m,lrintf, [
])
])
dnl Check for dynamic plugins
dnl Check for dynamic plugins
LIBDL="no"
LIBDL=""
have_dynamic_objects="no"
LIBS_save="$LIBS"
LIBS_save="$LIBS"
AC_SEARCH_LIBS(dlopen, [dl svld], [
AC_SEARCH_LIBS(dlopen, [dl svld], [
AS_IF([test "$ac_cv_search_dlopen" != "none required"], [
AS_IF([test "$ac_cv_search_dlopen" != "none required"], [
LIBDL="$ac_cv_search_dlopen"
LIBDL="$ac_cv_search_dlopen"
])
])
have_dynamic_objects="yes"
])
])
LIBS="$LIBS_save"
LIBS="$LIBS_save"
# Windows
# Windows
AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
LIBDL=""
LIBDL=""
have_dynamic_objects="yes" #assume we can use shared objects
])
])
AS_IF([test "$
LIBDL
" != "no"], [
AS_IF([test "$
have_dynamic_objects
" != "no"], [
AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1,
AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1,
[Define to 1 if dynamic plugins are supported.])
[Define to 1 if dynamic plugins are supported.])
], [
], [
...
...
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