summaryrefslogtreecommitdiffstats
path: root/keximdb/src/keximdb/configure.in.bot
blob: c79858b07c490397b8bea1df9daf08a087dbf909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if test -z "$KEXIDB_INC" -o -z "$KEXIDB_LIB"; then

  if test -z "$KEXIDB_INC"; then
    echo "  + The KexiDB headers were not found"
  fi

  if test -z "$KEXIDB_LIB"; then
    echo "  + The KexiDB libraries were not found"
  fi

  echo "     Required KexiDB development files were not found."
  echo "     If these are installed, you can use the --with-kexidb-includes"
  echo "     and --with-kexidb-libraries configure options."
  echo "     If not, these may be available as a package for your"
  echo "     distribution, or you can install them by installing Kexi"
  echo "     from source"

  all_tests=bad
else
  echo "KexiDB includes: $KEXIDB_INC"
  echo "KexiDB libraries: $KEXIDB_LIB"
fi