Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
022983ea
Commit
022983ea
authored
Mar 21, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Miscellaneous fixes for the OS X port.
parent
c6f900e1
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
378 additions
and
268 deletions
+378
-268
configure
configure
+365
-267
configure.in
configure.in
+13
-1
No files found.
configure
View file @
022983ea
This diff is collapsed.
Click to expand it.
configure.in
View file @
022983ea
...
@@ -101,7 +101,10 @@ AC_CHECK_FUNC(nanosleep,,[
...
@@ -101,7 +101,10 @@ AC_CHECK_FUNC(nanosleep,,[
])
])
AC_CHECK_FUNCS(usleep)
AC_CHECK_FUNCS(usleep)
AC_CHECK_FUNC(inet_aton,,[
AC_CHECK_FUNC(inet_aton,,[
AC_CHECK_LIB(resolv,inet_aton,LIB_VLC="${LIB_VLC} -lresolv")
AC_CHECK_LIB(resolv,inet_aton,LIB_VLC="${LIB_IPV4} -lresolv")
])
AC_CHECK_FUNC(textdomain,,[
AC_CHECK_LIB(intl,textdomain,LIB_VLC="${LIB_VLC} -lintl")
])
])
AC_CHECK_FUNCS(vasprintf)
AC_CHECK_FUNCS(vasprintf)
AC_CHECK_FUNCS(swab)
AC_CHECK_FUNCS(swab)
...
@@ -1528,6 +1531,15 @@ AC_ARG_ENABLE(plugins,
...
@@ -1528,6 +1531,15 @@ AC_ARG_ENABLE(plugins,
PLUGINS=
PLUGINS=
fi])
fi])
dnl Automagically disable plug-ins if there is no system support for .so files
if test x$ac_cv_header_dlfcn_h = xno -a x$ac_cv_header_image_h = xno
then
echo "*** Your system doesn't have plug-in support. All plug-ins will be compiled"
echo "as built-in"
BUILTINS="${BUILTINS} ${PLUGINS}"
PLUGINS=
fi
dnl
dnl
dnl Stuff used by the program
dnl Stuff used by the program
dnl
dnl
...
...
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