~ubuntu-branches/ubuntu/vivid/liferea/vivid-proposed

« back to all changes in this revision

Viewing changes to .pc/libunity.patch/configure.ac

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-04-07 12:29:22 UTC
  • mfrom: (102.2.6 natty)
  • Revision ID: package-import@ubuntu.com-20110407122922-sm0rx39ecbdgaw0o
Rebuild against latest libunity (soname bump)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
 
3
 
AC_INIT([liferea],[1.6.6b],[liferea-devel@lists.sourceforge.net])
 
3
AC_INIT([liferea],[1.6.4],[liferea-devel@lists.sourceforge.net])
4
4
AC_CANONICAL_HOST
5
5
AC_CONFIG_SRCDIR([src/feedlist.c])
6
6
 
70
70
dnl #######################################################################
71
71
 
72
72
if test "x$enable_sm" = "xyes"; then
73
 
  PKG_CHECK_MODULES([SM], [sm ice], [AC_DEFINE(USE_SM, 1, [Define if we're using X Session Management.])],[enable_sm=no])
 
73
  PKG_CHECK_MODULES([SM], [sm], [AC_DEFINE(USE_SM, 1, [Define if we're using X Session Management.])],[enable_sm=no])
74
74
fi
75
75
 
76
76
dnl *********
78
78
dnl *********
79
79
 
80
80
if test "x$enable_libnotify" = "xyes"; then
81
 
   PKG_CHECK_MODULES([LIBNOTIFY], [libnotify >= 0.3.2, libnotify <= 0.5],enable_libnotify=yes,enable_libnotify=no)
 
81
   PKG_CHECK_MODULES([LIBNOTIFY], libnotify >= 0.3.2,enable_libnotify=yes,enable_libnotify=no)
82
82
   AC_SUBST(LIBNOTIFY_CFLAGS)
83
83
   AC_SUBST(LIBNOTIFY_LIBS)
84
84
else
106
106
dnl *********
107
107
 
108
108
if test "x$enable_libindicate" = "xyes"; then
109
 
   PKG_CHECK_MODULES([LIBINDICATE], indicate-0.6 indicate-gtk-0.6,enable_libindicate=yes,enable_libindicate=no)
 
109
   PKG_CHECK_MODULES([LIBINDICATE], indicate-0.5 indicate-gtk-0.5,enable_libindicate=yes,enable_libindicate=no)
110
110
   AC_SUBST(LIBINDICATE_CFLAGS)
111
111
   AC_SUBST(LIBINDICATE_LIBS)
112
112
else
164
164
                gmodule-2.0 >= 2.0.0
165
165
                libglade-2.0 >= 2.0.0
166
166
                libsoup-2.4 >= 2.26.1
167
 
                webkit-1.0 >= 1.1.10
168
 
                x11"
 
167
                webkit-1.0 >= 1.1.10"
169
168
 
170
169
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
171
170