summaryrefslogtreecommitdiffstats
path: root/m4/ax_pkg_check_vars.m4
blob: 4e407f0ccab999b56d35bc738e55b7c1f6cebd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# ax_pkg_check_var.m4 - Macros to locate and utilise variables from pkg-config.            -*- Autoconf -*-

# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
# -------------------------------------------
# Retrieves the value of the pkg-config variable for the given module.

m4_ifndef([PKG_CHECK_VAR],[
AC_DEFUN([PKG_CHECK_VAR],
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl

_PKG_CONFIG([$1], [variable="][$3]["], [$2])
AS_VAR_COPY([$1], [pkg_cv_][$1])

AS_VAR_IF([$1], [""], [$5], [$4])dnl
])# PKG_CHECK_VAR
])