~ubuntu-branches/ubuntu/feisty/digikam/feisty

« back to all changes in this revision

Viewing changes to configure.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2005-03-10 02:39:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050310023902-023nymfst5mg696c
Tags: 0.7.2-2
* debian/TODO: clean
* digikam manpage: better --detect-camera description

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#MIN_CONFIG(3)
2
 
 
3
 
AM_INIT_AUTOMAKE(digikam,0.6.2)
4
 
 
5
 
dnl ------------------------------------------------------------
6
 
dnl libraries needed
7
 
dnl ------------------------------------------------------------
8
 
 
9
 
 
10
 
#---------------------------------------------------------
11
 
# gphoto2 detection
12
 
#---------------------------------------------------------
13
 
 
14
 
dnl Check for gPhoto2 configuration
15
 
 
16
 
AC_PATH_PROG(GPHOTO_CONFIG,gphoto2-config)
17
 
AC_PATH_PROG(GPHOTO_PORT_CONFIG,gphoto2-port-config)
18
 
if test -n "${GPHOTO_CONFIG}"; then
19
 
  GPHOTO_CFLAGS="`$GPHOTO_CONFIG --cflags`"
20
 
  AC_SUBST(GPHOTO_CFLAGS)
21
 
  LIB_GPHOTO="`$GPHOTO_CONFIG --libs` `$GPHOTO_PORT_CONFIG --libs`"
22
 
  AC_SUBST(LIB_GPHOTO)
23
 
else
24
 
  AC_MSG_ERROR([
25
 
***
26
 
*** gPhoto2 is required. Available from gPhoto's Sourceforge CVS.
27
 
*** Check http://www.gphoto.org/download.html for details
28
 
***])
29
 
  exit 1
30
 
fi
31
 
 
32
 
 
33
 
CXXFLAGS="$CXXFLAGS -DQT_CLEAN_NAMESPACE"
 
1
#MIN_CONFIG(3.1)
 
2
 
 
3
KDE_INIT_DOXYGEN([The API Reference], [Version $VERSION])
 
4
KDE_CHECK_HEADERS(mntent.h)
 
5