Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
a37a2e5e
Commit
a37a2e5e
authored
Jan 22, 2003
by
Loïc Minier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* added --with-slp
* now works under win32
parent
2891094d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
configure.ac.in
configure.ac.in
+23
-4
No files found.
configure.ac.in
View file @
a37a2e5e
...
@@ -2507,12 +2507,31 @@ AC_ARG_ENABLE(slp,
...
@@ -2507,12 +2507,31 @@ AC_ARG_ENABLE(slp,
[ --enable-slp SLP service discovery support (default enabled)])
[ --enable-slp SLP service discovery support (default enabled)])
if test "x${enable_slp}" != "xno"
if test "x${enable_slp}" != "xno"
then
then
AC_ARG_WITH(slp,
[ --with-slp=PATH libslp headers and libraries])
if test "x${with_slp}" = x
then
AC_CHECK_HEADER(slp.h, have_slp="true", have_slp="false")
AC_CHECK_HEADER(slp.h, have_slp="true", have_slp="false")
if test "x${have_slp}" = "xtrue"
if test "x${have_slp}" = "xtrue"
then
then
PLUGINS="${PLUGINS} slp"
PLUGINS="${PLUGINS} slp"
LDFLAGS_slp="${LDFLAGS_slp} -lslp"
LDFLAGS_slp="${LDFLAGS_slp} -lslp"
fi
fi
else
AC_MSG_CHECKING(for slp headers in ${with_slp})
if test -f ${with_slp}/slp.h
then
dnl Use ${with_slp}/libslp/slp.h
AC_MSG_RESULT(yes)
PLUGINS="${PLUGINS} slp"
LDFLAGS_slp="${LDFLAGS_slp} -L${with_slp} -lslp"
CPPFLAGS_slp="${CPPFLAGS_slp} -I${with_slp}"
else
dnl No libslp could be found, sorry
AC_MSG_RESULT(no)
AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
fi
fi
fi
fi
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