~ubuntu-branches/ubuntu/hardy/smb4k/hardy

« back to all changes in this revision

Viewing changes to configure.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2006-12-22 12:27:05 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20061222122705-8t2knjt53m79lmbv
Tags: 0.8.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#MIN_CONFIG(3.2.0)
2
 
#AM_KDE_MIN_VERSION(3.2)
3
 
 
4
 
AM_INIT_AUTOMAKE(smb4k,0.7.5)
 
2
#AM_KDE_MIN_VERSION(3.2.0)
 
3
 
 
4
AM_INIT_AUTOMAKE(smb4k,0.8.0)
 
5
 
 
6
 
 
7
dnl=========================================================================dnl
 
8
dnl  Konqueror plugin                                                       dnl
 
9
dnl=========================================================================dnl
 
10
 
 
11
AC_ARG_WITH(
 
12
        [konqplugin],
 
13
        [AS_HELP_STRING([--with-konqplugin=ARG],
 
14
                [build with Konqueror plugin (default ARG=yes)])],
 
15
        [],
 
16
        [with_konqplugin=yes])
 
17
 
 
18
if test x$with_konqplugin = xyes; then
 
19
        KDE_CHECK_HEADER(
 
20
                [konqsidebarplugin.h],
 
21
                [AC_DEFINE(HAVE_KONQPLUGIN,1,
 
22
                        [define if the Konqueror plugin is compiled])],
 
23
                [AC_MSG_ERROR([
 
24
***
 
25
*** Cannot build Konqueror plugin. Install the development files for KDE base 
 
26
*** or pass the '--with-konqplugin=no' option to the configure script.
 
27
***])],
 
28
                []
 
29
        )
 
30
else
 
31
        DO_NOT_COMPILE="$DO_NOT_COMPILE plugin"
 
32
fi
 
33
 
 
34
AM_CONDITIONAL([compile_konqplugin], [test x$with_konqplugin = xyes])