~ubuntu-branches/ubuntu/oneiric/seahorse/oneiric-proposed-201111150713

« back to all changes in this revision

Viewing changes to .pc/08_force_ssh.patch/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-25 18:42:19 UTC
  • mfrom: (1.2.60 upstream)
  • Revision ID: james.westby@ubuntu.com-20110525184219-jqkhdzh1z8z6c1w6
Tags: 3.0.2-0ubuntu1
* New upstream version
* debian/control.in: clean old replaces
* debian/control.in, debian/rules: use libnotify again in ubuntu
* debian/seahorse.preinst: clean old preinst

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
dnl ****************************************************************************
6
6
dnl MAIN SEAHORSE VERSION (update after release)
7
7
 
8
 
AC_INIT(seahorse, 3.0.0)
 
8
AC_INIT(seahorse, 3.0.2)
9
9
 
10
10
dnl ****************************************************************************
11
11
dnl LIBCRYPTUI libtool versioning
47
47
 
48
48
AC_MSG_CHECKING([which GTK+ version to compile against])
49
49
AC_ARG_WITH([gtk],
50
 
        [AS_HELP_STRING([--with-gtk=2.0|3.0],[which GTK+ version to compile against (default: 2.0)])],
 
50
        [AS_HELP_STRING([--with-gtk=2|3],[which GTK+ version to compile against (default: 3)])],
51
51
        [case "$with_gtk" in
52
 
                2.0|3.0) ;;
 
52
                2*|3*) ;;
53
53
                *) AC_MSG_ERROR([invalid GTK+ version specified]) ;;
54
54
        esac],
55
 
        [with_gtk=2.0])
 
55
        [with_gtk=3])
56
56
AC_MSG_RESULT([$with_gtk])
57
57
 
58
58
case "$with_gtk" in
59
 
        2.0)
 
59
        2*)
60
60
                GCR_LIBRARY=gcr-0
61
61
                GTK_API_VERSION=2.0
62
62
                GTK_REQUIRED=2.20.0
 
63
                with_gtk=2.0
63
64
        ;;
64
 
        3.0)
 
65
        3*)
65
66
                GCR_LIBRARY=gcr-3
66
67
                GTK_API_VERSION=3.0
67
68
                GTK_REQUIRED=2.90.0
 
69
                with_gtk=3.0
68
70
        ;;
69
71
esac
70
72