~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-11-16 21:24:14 UTC
  • mfrom: (1.1.7 upstream) (3 etch)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061116212414-i9mqu3nnn90ulo7m
Tags: 0.5.0-0ubuntu1
* New upstream release
* debian/patches/52_applet-crash.patch:
  + Dropped, merged upstream
* debian/control,
  debian/patches/52_external-dbus-sharp.patch:
  + Build depend on libdbus-1-cil and build against it instead of the
    bundled version
* debian/rules:
  + Install DBus service file into the correct directory
* debian/patches/53_tomboy-tray-icon.patch:
  + Correctly set the icon for the trayicon

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_INIT(Tomboy/Tomboy.cs)
2
 
AM_INIT_AUTOMAKE(tomboy, 0.4.1)
 
2
AM_INIT_AUTOMAKE(tomboy, 0.5.0)
3
3
AM_MAINTAINER_MODE
4
4
 
5
5
GNOME_COMMON_INIT
81
81
AC_SUBST(PANELAPPLET_SERVER_DIR)
82
82
 
83
83
#
84
 
# Check for GtkSpell here, as we call into it from C#.
 
84
# Check for recent GtkSpell here.  Prior versions require bug workarounds.
85
85
# http://gtkspell.sourceforge.net/
86
86
#
87
 
PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.9, ENABLE_GTKSPELL="yes", ENABLE_GTKSPELL="no")
88
 
AM_CONDITIONAL(ENABLE_GTKSPELL, test "$ENABLE_GTKSPELL" = "yes")
89
87
PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.9, FIXED_GTKSPELL="yes", FIXED_GTKSPELL="no")
90
88
AM_CONDITIONAL(FIXED_GTKSPELL, test "$FIXED_GTKSPELL" = "yes")
91
89