9d8284bb09
* NEW: Subversion conflicts support. * BUG: Splitting view in editor correctly updates the procedure combo-box now. [GB.PDF] * BUG: Compiles correctly against poppler 0.8 now. [GB.QT] * BUG: PictureBox is correctly refreshed now when its contents change. git-svn-id: svn://localhost/gambas/trunk@1353 867c0c6c-44f3-4631-809d-bfa615b0a4ec
27 lines
640 B
Text
27 lines
640 B
Text
dnl ---- configure.ac for gb.pdf
|
|
|
|
AC_INIT(configure.ac)
|
|
GB_INIT(gb.pdf)
|
|
AC_PROG_LIBTOOL
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
poppler,
|
|
POPPLER,
|
|
[Poppler PDF library],
|
|
[src],
|
|
poppler ">= 0.5"
|
|
)
|
|
|
|
if test "$have_poppler" = "yes"; then
|
|
pkg-config --atleast-version=0.5 poppler
|
|
AC_DEFINE_UNQUOTED(POPPLER_VERSION_0_5, $((1-$?)), Poppler version >= 0.5)
|
|
pkg-config --atleast-version=0.5.91 poppler
|
|
AC_DEFINE_UNQUOTED(POPPLER_VERSION_0_6, $((1-$?)), Poppler version >= 0.6)
|
|
pkg-config --atleast-version=0.8.0 poppler
|
|
AC_DEFINE_UNQUOTED(POPPLER_VERSION_0_8, $((1-$?)), Poppler version >= 0.8)
|
|
fi
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
)
|