~ubuntu-branches/debian/squeeze/tasks/squeeze

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Ross Burton, Ross Burton, Loïc Minier, Emilio Pozuelo Monfort
  • Date: 2009-08-10 10:08:52 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810100852-6gp4pydhwflg4vnb
Tags: 0.16-1
[ Ross Burton ]
* New upstream release (Closes: #539510)
* Fix debug package section and depends
* Bump Standards

[ Loïc Minier ]
* Set LDFLAGS directly; bump cdbs bdep to >= 0.4.41.
* Create tasks.pot during build: Add a common-build-arch:: snippet to call
  langpack.mk's langpack-mk-update-pot target with
  DEB_BUILDDIR=$(DEB_SRCDIR); intltool-update can't be called in builddir as
  it needs POTFILES.in and even with it wont lookup files listed there in
  srcdir; add a clean:: snippet to remove the pot file; LP: #188690.

[ Emilio Pozuelo Monfort ]
* Wrap build-deps and deps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.52)
2
 
AC_INIT(tasks, 0.15, http://o-hand.com)
 
2
AC_INIT(tasks, 0.16, http://o-hand.com)
3
3
AC_CONFIG_SRCDIR(libkoto/koto-task-store.c)
4
4
AC_CONFIG_HEADERS([libkoto/config.h])
5
5
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
24
24
 
25
25
AC_DEFINE(HANDLE_LIBICAL_MEMORY, 1, [we free libical memory])
26
26
 
27
 
# Check for libsexy 0.1.12. Older versions don't support icon-names in the
28
 
# entries, so don't work.
29
 
PKG_CHECK_MODULES(SEXY, libsexy >= 0.1.12, sexy=yes, sexy=no)
30
 
if test $sexy = yes; then
31
 
        AC_DEFINE(HAVE_SEXY, 1, [libsexy present])
32
 
fi
33
 
 
34
 
 
35
27
AC_ARG_ENABLE(gtk,
36
28
        AS_HELP_STRING([--enable-gtk],[Build the GTK frontend]),
37
29
        ,enable_gtk=yes)
98
90
AC_CHECK_DECLS([GDK_WINDOW_TYPE_HINT_COMBO, gtk_style_lookup_color],
99
91
               [], [], [#include <gtk/gtk.h>])
100
92
 
 
93
# This was introduced in GTK+ 2.12
 
94
AC_CHECK_DECLS([gtk_widget_set_has_tooltip],
 
95
               [], [], [#include <gtk/gtk.h>])
 
96
 
101
97
# This was introduced in GTK+ 2.14
102
98
AC_CHECK_DECLS([gtk_show_uri],
103
99
               [], [], [#include <gtk/gtk.h>])
104
100
 
 
101
# This was introduced in GTK+ 2.16
 
102
AC_CHECK_DECLS([gtk_entry_set_icon_from_icon_name],
 
103
               [], [], [#include <gtk/gtk.h>])
 
104
 
105
105
# This was introduced in newer libecal
106
106
CFLAGS=$ECAL_CFLAGS
107
107
AC_CHECK_TYPES(ECalComponentId, [], [], [#include <libecal/e-cal.h>])