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
e1da4a02
Commit
e1da4a02
authored
Sep 21, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configure.ac: cleanup
Removal of tabs and trailing spaces Fixing configuration with autoconf 2.67
parent
8e0d48c8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
44 deletions
+49
-44
configure.ac
configure.ac
+49
-44
No files found.
configure.ac
View file @
e1da4a02
...
@@ -2164,7 +2164,10 @@ AS_IF([test "${enable_gme}" != "no"], [
...
@@ -2164,7 +2164,10 @@ AS_IF([test "${enable_gme}" != "no"], [
dnl
dnl
dnl SIDPlay plugin
dnl SIDPlay plugin
dnl
dnl
PKG_WITH_MODULES([SID], [libsidplay2],
AC_ARG_ENABLE(sid,
[AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
AS_IF([test "${enable_sid}" != "no"], [
PKG_CHECK_MODULES(sid, [libsidplay2], [
AC_LANG_PUSH(C++)
AC_LANG_PUSH(C++)
oldCPPFLAGS="$CPPFLAGS"
oldCPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
...
@@ -2179,12 +2182,14 @@ PKG_WITH_MODULES([SID], [libsidplay2],
...
@@ -2179,12 +2182,14 @@ PKG_WITH_MODULES([SID], [libsidplay2],
)
)
])
])
CPPFLAGS="$oldCPPFLAGS"
CPPFLAGS="$oldCPPFLAGS"
AC_LANG_POP(C++),
AC_LANG_POP(C++)
], [
AS_IF([test "x${enable_sid}" = "xyes"],
AS_IF([test "x${enable_sid}" = "xyes"],
[AC_MSG_ERROR(Library libsidplay2 needed for sid was not found)],
[AC_MSG_ERROR(Library libsidplay2 needed for sid was not found)],
[AC_MSG_WARN(Library libsidplay2 needed for sid was not found)]
[AC_MSG_WARN(Library libsidplay2 needed for sid was not found)]
),
)
[C64 sid demux support], [auto])
])
])
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