~ubuntu-branches/ubuntu/quantal/rhythmbox/quantal-proposed

« back to all changes in this revision

Viewing changes to .pc/01_lpi.patch/configure.ac

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2012-01-17 16:56:40 UTC
  • mfrom: (1.1.62)
  • Revision ID: package-import@ubuntu.com-20120117165640-pr034mkhmti3efh6
Tags: 2.95-0ubuntu1
* New upstream release:
  - wrong shortcut for Show / Hide the Queue Sidebar (LP: #461279)
* debian/watch:
  - update to latest url    
* debian/patches/00_fix_for_glib_2.32.patch:
  - was taken upstream, removed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.53)
2
2
AC_INIT([rhythmbox],
3
 
        [2.90.1],
 
3
        [2.95],
4
4
        [https://bugzilla.gnome.org/enter_bug.cgi?product=rhythmbox])
5
5
AC_CONFIG_SRCDIR(rhythmbox.pc.in)
6
6
AC_CONFIG_MACRO_DIR(macros)
16
16
# Increment on interface addition, reset on removal
17
17
RHYTHMBOX_CORE_AGE=0
18
18
# Increment on interface add, remove, or change
19
 
RHYTHMBOX_CORE_CURRENT=4
 
19
RHYTHMBOX_CORE_CURRENT=5
20
20
# Increment on source change, reset when CURRENT changes.
21
21
RHYTHMBOX_CORE_REVISION=0
22
22
 
82
82
        AC_MSG_RESULT([no])
83
83
fi
84
84
 
85
 
mkdtemp_missing=false
86
 
AC_CHECK_FUNC(mkdtemp,
87
 
    [AC_DEFINE([HAVE_MKDTEMP], 1, [Have GlibC function to make temp dirs])],
88
 
    mkdtemp_missing=true)
89
 
AM_CONDITIONAL(MKDTEMP_MISSING, test x$mkdtemp_missing = xtrue)
90
 
 
91
85
PKG_PROG_PKG_CONFIG
92
86
 
93
87
PKG_CHECK_MODULES(RB_CLIENT, glib-2.0 >= $GLIB_REQS gio-2.0 >= $GLIB_REQS gio-unix-2.0 >= $GLIB_REQS)