[poppler] 2 commits - configure.ac
Albert Astals Cid
aacid at kemper.freedesktop.org
Fri Jun 13 16:25:30 PDT 2008
configure.ac | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
New commits:
commit 2affed0fc97b958ae46f531c471a3cf0b04c0f55
Author: Albert Astals Cid <aacid at kde.org>
Date: Sat Jun 14 01:24:49 2008 +0200
Give warnings if the build configuration for stream decoders is different from default one
diff --git a/configure.ac b/configure.ac
index 05dfdb0..aa3b932 100644
--- a/configure.ac
+++ b/configure.ac
@@ -446,9 +446,6 @@ echo ""
echo "Building poppler with support for:"
echo " splash output: $enable_splash_output"
echo " cairo output: $enable_cairo_output"
-if test x$enable_splash_output = xno -a x$enable_cairo_output = xno; then
- echo " Warning: There is no rendering backend enabled"
-fi
echo " abiword output: $enable_abiword_output"
echo " qt wrapper: $enable_poppler_qt"
echo " qt4 wrapper: $enable_poppler_qt4"
@@ -459,3 +456,20 @@ echo " use libjpeg: $enable_libjpeg"
echo " use zlib: $enable_zlib"
echo " use libopenjpeg: $enable_libopenjpeg"
echo " command line utils: $enable_utils"
+echo ""
+
+if test x$enable_splash_output = xno -a x$enable_cairo_output = xno; then
+ echo " Warning: There is no rendering backend enabled"
+fi
+
+if test x$enable_libjpeg != xyes; then
+ echo " Warning: Using libjpeg is recommended"
+fi
+
+if test x$enable_zlib != xno; then
+ echo " Warning: Using zlib is not totally safe"
+fi
+
+if test x$enable_libopenjpeg != xyes; then
+ echo " Warning: Using libopenjpeg is recommended"
+fi
commit 8e74bc612cb4102891324ffdbfcdb47293ecb95e
Author: Albert Astals Cid <aacid at kde.org>
Date: Sat Jun 14 01:13:53 2008 +0200
Warn the user if he does not have any enabled rendering backend
diff --git a/configure.ac b/configure.ac
index 43572e4..05dfdb0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -446,6 +446,9 @@ echo ""
echo "Building poppler with support for:"
echo " splash output: $enable_splash_output"
echo " cairo output: $enable_cairo_output"
+if test x$enable_splash_output = xno -a x$enable_cairo_output = xno; then
+ echo " Warning: There is no rendering backend enabled"
+fi
echo " abiword output: $enable_abiword_output"
echo " qt wrapper: $enable_poppler_qt"
echo " qt4 wrapper: $enable_poppler_qt4"
More information about the poppler
mailing list