make configure check for cpp/poppler-version.h
This commit is contained in:
parent
0a56437e9c
commit
0f862a7432
1 changed files with 10 additions and 0 deletions
10
configure.in
10
configure.in
|
@ -7034,6 +7034,16 @@ if test "x$enable_ext_pdfimport" != "xno" -a "x$enable_extension_integration" !=
|
||||||
AC_MSG_RESULT([external])
|
AC_MSG_RESULT([external])
|
||||||
SYSTEM_POPPLER=YES
|
SYSTEM_POPPLER=YES
|
||||||
PKG_CHECK_MODULES( POPPLER, poppler >= 0.8.0 )
|
PKG_CHECK_MODULES( POPPLER, poppler >= 0.8.0 )
|
||||||
|
AC_LANG_PUSH([C++])
|
||||||
|
save_CXXFLAGS=$CXXFLAGS
|
||||||
|
save_CPPFLAGS=$CPPFLAGS
|
||||||
|
CXXFLAGS="$CXXFLAGS $POPPLER_CFLAGS"
|
||||||
|
CPPFLAGS="$CPPFLAGS $POPPLER_CFLAGS"
|
||||||
|
AC_CHECK_HEADER([cpp/poppler-version.h], [],
|
||||||
|
[AC_MSG_ERROR([cpp/poppler-version.h not found. Install poppler])], [])
|
||||||
|
CXXFLAGS=$save_CXXFLAGS
|
||||||
|
CPPFLAGS=$save_CPPFLAGS
|
||||||
|
AC_LANG_POP([C++])
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT([internal])
|
AC_MSG_RESULT([internal])
|
||||||
SYSTEM_POPPLER=NO
|
SYSTEM_POPPLER=NO
|
||||||
|
|
Loading…
Reference in a new issue