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
7290a1dc
Commit
7290a1dc
authored
Jun 14, 2008
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix logic and comment
parent
fe8791f0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
configure.ac
configure.ac
+6
-3
No files found.
configure.ac
View file @
7290a1dc
...
@@ -4730,7 +4730,7 @@ dnl
...
@@ -4730,7 +4730,7 @@ dnl
dnl UPnP Plugin (Intel SDK)
dnl UPnP Plugin (Intel SDK)
dnl
dnl
AC_ARG_ENABLE(upnp,
AC_ARG_ENABLE(upnp,
[
--enable-upnp Intel UPnP SDK (default enabled
)])
[
AS_HELP_STRING([--enable-upnp],[Intel UPnP SDK (default enabled)]
)])
VLC_ADD_CXXFLAGS([upnp_intel], [ ])
VLC_ADD_CXXFLAGS([upnp_intel], [ ])
AS_IF([test "x${enable_upnp}" != "xno"], [
AS_IF([test "x${enable_upnp}" != "xno"], [
...
@@ -4766,7 +4766,8 @@ dnl
...
@@ -4766,7 +4766,8 @@ dnl
dnl Skins2 module
dnl Skins2 module
dnl
dnl
AC_ARG_ENABLE(skins2,
AC_ARG_ENABLE(skins2,
[ --enable-skins2 Skins2 interface module (default disabled)])
[AS_HELP_STRING([--enable-skins2],[Skins2 interface module (default
enabled except on MacOSX, BeOS and WinCE)])])
if test "${enable_skins2}" = "yes" ||
if test "${enable_skins2}" = "yes" ||
(test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
(test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
...
@@ -4804,7 +4805,9 @@ if test "${enable_skins2}" = "yes" ||
...
@@ -4804,7 +4805,9 @@ if test "${enable_skins2}" = "yes" ||
VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lX11])
VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lX11])
fi fi fi
fi fi fi
fi
fi
AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes" ||
(test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no")])
dnl
dnl
dnl PDA Gtk+2 module
dnl PDA Gtk+2 module
...
...
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