summaryrefslogtreecommitdiffstats
path: root/libkscan/configure.in.in
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit47d455dd55be855e4cc691c32f687f723d9247ee (patch)
tree52e236aaa2576bdb3840ebede26619692fed6d7d /libkscan/configure.in.in
downloadtdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz
tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkscan/configure.in.in')
-rw-r--r--libkscan/configure.in.in22
1 files changed, 22 insertions, 0 deletions
diff --git a/libkscan/configure.in.in b/libkscan/configure.in.in
new file mode 100644
index 00000000..09929e92
--- /dev/null
+++ b/libkscan/configure.in.in
@@ -0,0 +1,22 @@
+
+KDE_FIND_PATH( sane-config, SANE_CONFIG, [ ${prefix}/bin, ${exec_prefix}/bin,
+ /usr/local/bin, /opt/local/bin,
+ /usr/bin ] )
+if test -n "$SANE_CONFIG"; then
+ dnl ### version check. Klaas, which version is minimum?
+
+ LIBSANE_LIBS="`$SANE_CONFIG --libs`"
+ LIBSANE_LDFLAGS="`$SANE_CONFIG --ldflags`"
+ dnl Bah, --cflags is -I lines only (according to the sane-config.in source
+ dnl and _INCLUDES looks nicer :)
+ LIBSANE_INCLUDES="`$SANE_CONFIG --cflags`"
+
+ AC_DEFINE_UNQUOTED(HAVE_SANE, 1, [Defines if your system has the sane libraries])
+else
+ DO_NOT_COMPILE="$DO_NOT_COMPILE libkscan kooka"
+fi
+
+AM_CONDITIONAL(include_kooka, test -n "$SANE_CONFIG")
+AC_SUBST(LIBSANE_LIBS)
+AC_SUBST(LIBSANE_LDFLAGS)
+AC_SUBST(LIBSANE_INCLUDES)