~ubuntu-branches/debian/jessie/banshee-community-extensions/jessie

« back to all changes in this revision

Viewing changes to build/m4/extensions/albumartwriter.m4

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2011-09-20 18:45:46 UTC
  • mfrom: (1.2.9 upstream) (5.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20110920184546-3ahue2qplydc4t0e
Tags: 2.2.0-1
* [4940fab] Imported Upstream version 2.2.0
  + Notable bug fixes:
    - Karaoke: Fix crash when switching to Now Playing
    - Lyrics: Fix crash when switching to Now Playing

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_DEFUN([BCE_ALBUMARTWRITER],
 
2
[
 
3
        BCE_ARG_DISABLE([AlbumArtWriter], [yes])
 
4
 
 
5
        if test "x$enable_AlbumArtWriter" = "xyes"; then
 
6
                AM_CONDITIONAL(ENABLE_ALBUMARTWRITER, true)
 
7
        else
 
8
                AM_CONDITIONAL(ENABLE_ALBUMARTWRITER, false)
 
9
        fi
 
10
])
 
11