1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Index: popplerkit.framework-0.0.20051227svn/config.sh
===================================================================
--- popplerkit.framework-0.0.20051227svn.orig/config.sh
+++ popplerkit.framework-0.0.20051227svn/config.sh
@@ -24,13 +24,13 @@ fi
FONTCONFIG_LIBS=`${PKG_CONFIG} --libs fontconfig`
# poppler splash device
-${PKG_CONFIG} --exists poppler-splash
+${PKG_CONFIG} --exists poppler
if [ $? -ne 0 ]; then
- echo "poppler-splash required not found!"
+ echo "poppler required not found!"
exit 1
fi
-POPPLER_CFLAGS="${POPPLER_CFLAGS} `${PKG_CONFIG} --cflags poppler-splash`"
-POPPLER_LIBS="${POPPLER_LDFLAGS} `${PKG_CONFIG} --libs poppler-splash`"
+POPPLER_CFLAGS="${POPPLER_CFLAGS} `${PKG_CONFIG} --cflags poppler`"
+POPPLER_LIBS="${POPPLER_LDFLAGS} `${PKG_CONFIG} --libs poppler`"
# poppler cairo device
${PKG_CONFIG} --exists poppler-cairo
|