ast_pkgconfig.m4 481 B

12345678910111213141516
  1. # Check for pkg-config component $2:
  2. # AST_PKG_CONFIG_CHECK([package], [component])
  3. AC_DEFUN([AST_PKG_CONFIG_CHECK],
  4. [
  5. if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
  6. PKG_CHECK_MODULES($1, $2, [
  7. PBX_$1=1
  8. $1_INCLUDE=$(echo ${$1_CFLAGS} | $SED -e "s|-std=c99||g")
  9. $1_LIB="$$1_LIBS"
  10. AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 libraries.])
  11. ], [
  12. PBX_$1=0
  13. ]
  14. )
  15. fi
  16. ])