Merge pull request #607 from proski/pkgconfig

Exit with error message if pkg-config is not found
master
jsorg71 8 years ago committed by GitHub
commit c3a38984d3

@ -8,7 +8,11 @@ AC_CONFIG_MACRO_DIR([m4])
AC_PROG_CC
AC_C_CONST
AC_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG
if test "x$PKG_CONFIG" = "x"; then
AC_MSG_ERROR([please install pkg-config])
fi
AC_CONFIG_SUBDIRS([libpainter librfxcodec])

Loading…
Cancel
Save