Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
400e3ea6
Commit
400e3ea6
authored
Mar 20, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: support libsystemd (instead of the older libsystemd-daemon)
parent
622d8715
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
NEWS
NEWS
+1
-0
configure.ac
configure.ac
+10
-3
No files found.
NEWS
View file @
400e3ea6
...
...
@@ -26,6 +26,7 @@ ver 0.20 (not yet released)
* reset song priority on playback
* write database and state file atomically
* remove dependency on GLib
* support libsystemd (instead of the older libsystemd-daemon)
* database
- proxy: add TCP keepalive option
...
...
configure.ac
View file @
400e3ea6
...
...
@@ -542,9 +542,16 @@ if
AC_MSG_ERROR([No client interfaces configured!])
fi
MPD_ENABLE_AUTO_PKG(systemd_daemon, SYSTEMD_DAEMON, libsystemd-daemon,
[systemd socket activation], [libsystemd-daemon not found],
[$linux_auto])
MPD_ENABLE_AUTO(systemd_daemon, SYSTEMD_DAEMON, [systemd socket activation],
[libsystemd not found], [$linux_auto], [
dnl Check for libsystemd and fall back to (the older)
dnl libsystemd-daemon
PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd],
[found_systemd_daemon=yes],
[PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd-daemon],
[found_systemd_daemon=yes],
[found_systemd_daemon=no])])
])
dnl ---------------------------------------------------------------------------
dnl LIBC Features
...
...
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