Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
8fc0329d
Commit
8fc0329d
authored
Mar 29, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid debianutils (which) and kdelibs (kde4-config) build-deps
parent
193e6eac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
11 deletions
+21
-11
configure.ac
configure.ac
+21
-11
No files found.
configure.ac
View file @
8fc0329d
...
@@ -4428,19 +4428,29 @@ AC_SUBST(DEFS_BIGENDIAN)
...
@@ -4428,19 +4428,29 @@ AC_SUBST(DEFS_BIGENDIAN)
dnl
dnl
dnl Where to install KDE solid .desktop
dnl Where to install KDE solid .desktop
dnl
dnl
AC_ARG_VAR([KDE4_CONFIG], [path to kde4-config utility])
AS_IF([test "x$KDE4_CONFIG" = "x"], [
KDE4_CONFIG="kde4-config"
])
AC_ARG_WITH(kde-solid,
AC_ARG_WITH(kde-solid,
AS_HELP_STRING([--with-kde-solid=PATH],[KDE Solid action directory (auto)]))
AS_HELP_STRING([--with-kde-solid=PATH],
AS_IF([test "${with_kde_solid}" != "no"],[
[KDE Solid actions directory (auto)]),, [
AS_IF([test -z "${with_kde_solid}"],[
with_kde_solid="yes"
AS_IF([which kde4-config],[
])
with_kde_solid="`kde4-config --install data`/solid/actions/"
soliddatadir=""
AS_IF([test "${with_kde_solid}" != "no"], [
AS_IF([test "${with_kde_solid}" = "yes"], [
soliddatadir="`${KDE4_CONFIG} --install data`solid/actions"
AS_IF([test "x${soliddatadir}" = "x"], [
soliddatadir='$(datadir)/kde4/apps/solid/actions'
])
])
], [
soliddatadir="${with_kde_solid}"
])
])
],[
with_kde_solid=''
])
])
AC_SUBST(soliddatadir
,[${with_kde_solid}]
)
AC_SUBST(soliddatadir)
AM_CONDITIONAL(KDE_SOLID, [test
-n ${with_kde_solid}
])
AM_CONDITIONAL(KDE_SOLID, [test
"x${soliddatadir}" != "x"
])
dnl
dnl
dnl DLL loader copied from MPlayer copied from somewhere else (WINE ?)
dnl DLL loader copied from MPlayer copied from somewhere else (WINE ?)
...
...
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