~ubuntu-branches/ubuntu/raring/almanah/raring

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Angel Abad
  • Date: 2012-01-04 16:17:37 UTC
  • mfrom: (11.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20120104161737-9vyplryf7yamsv76
Tags: 0.8.0-5
* Update my email address -> angel@debian.org
* debian/control: Remove DM-Upload-Allowed
* Re-enable spell checking support
  - debian/control: Build-Depends on libgtkspell-3-dev
  - debian/rules: Add --enable-spell-checking
  - debian/patches/02_gtkspell-3.0.patch: Add support for gtkspell-3.0
    in configure.ac
* debian/copyright: Update debian/* years
* debian/rules: Remove CFLAGS += -D_FILE_OFFSET_BITS=64

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
                *) AC_MSG_ERROR([bad value ${enableval} for --enable-spell-checking]) ;;
71
71
        esac],[spell_checking=false])
72
72
 
73
 
if test $spell_checking = "true"; then
74
 
        AC_ERROR([Building with spell checking enabled is not possible, as gtkspell-2.0 does not support GTK+ 3. Use --disable-spell-checking])
75
 
        AC_DEFINE([ENABLE_SPELL_CHECKING],[1],[Define if you want spell checking support])
76
 
fi
77
 
 
78
73
AM_CONDITIONAL([SPELL_CHECKING], [test x$spell_checking = xtrue])
79
74
 
80
75
dnl ***************************************************************************
99
94
 
100
95
dnl Spell checking
101
96
if test $spell_checking = "true"; then
102
 
        PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell-2.0)
 
97
        PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell-3.0)
103
98
        AC_SUBST(SPELL_CHECKING_CFLAGS)
104
99
        AC_SUBST(SPELL_CHECKING_LIBS)
105
100
fi