Author: tfheen
Date: 2005-04-12 17:06:32 GMT
2005-04-12 Tollef Fog Heen <tfheen@err.no>
* pkg.m4: Apply patch from James Henstridge to have AC_RUN_LOG in
the right place. (Freedesktop #2992)
2005-04-12 Tollef Fog Heen <tfheen@err.no>
+ * pkg.m4: Apply patch from James Henstridge to have AC_RUN_LOG in
+ the right place. (Freedesktop #2992)
+
* pkg.m4: Add note that PKG_PROG_PKG_CONFIG must be called
explicitly if the first call to PKG_CHECK_MODULES might not
happen. (Debian #303211)
[if test "x$ac_cv_env_[]$1[]_set" = "xset"; then
pkg_cv_[]$1=$ac_cv_env_[]$1[]_value
elif test -n "$PKG_CONFIG"; then
- AC_RUN_LOG([
- if $PKG_CONFIG --exists "$3" >/dev/null 2>&1; then
+ if AC_RUN_LOG([$PKG_CONFIG --exists "$3" >/dev/null 2>&1]); then
pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
else
pkg_failed=yes
fi
- ])
else
pkg_failed=untried
fi[]dnl