oops, missing file.

SVN revision: 80401
This commit is contained in:
Gustavo Sverzut Barbieri 2012-12-06 22:22:38 +00:00
parent bc9821c1ff
commit d338bcac63
1 changed files with 11 additions and 0 deletions

11
m4/efl_pkg_config.m4 Normal file
View File

@ -0,0 +1,11 @@
dnl file with extensions to pkg-config module
dnl
dnl EFL_PKG_CHECK_STRICT(MODULE, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
dnl similar to PKG_CHECK_EXISTS() that will AC_MSG_ERROR() if not found
AC_DEFUN([EFL_PKG_CHECK_STRICT],
[
PKG_CHECK_EXISTS([$1],
[m4_if([$2], [$2], [:])],
[m4_if([$3], [$3], [AC_MSG_ERROR([pkg-config missing $1])])]
)
])