aboutsummaryrefslogtreecommitdiff
path: root/m4/mpd_auto.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/mpd_auto.m4')
-rw-r--r--m4/mpd_auto.m410
1 files changed, 10 insertions, 0 deletions
diff --git a/m4/mpd_auto.m4 b/m4/mpd_auto.m4
index 635f4156..58ea6379 100644
--- a/m4/mpd_auto.m4
+++ b/m4/mpd_auto.m4
@@ -38,3 +38,13 @@ AC_DEFUN([MPD_AUTO_RESULT], [
MPD_AUTO_DISABLED([$name], [$feature], [$msg])
fi
])
+
+AC_DEFUN([MPD_AUTO_PKG], [
+ if eval "test x`echo '$'enable_$1` != xno"; then
+ PKG_CHECK_MODULES([$2], [$3],
+ [eval "found_$1=yes"],
+ [eval "found_$1=no"])
+ fi
+
+ MPD_AUTO_RESULT([$1], [$4], [$5])
+])