~ubuntu-branches/ubuntu/trusty/banshee/trusty

« back to all changes in this revision

Viewing changes to build/m4/banshee/notify-sharp.m4

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-02-09 23:06:03 UTC
  • mfrom: (1.2.26) (150.1.2 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20140209230603-7dhbveo058j96ea0
Tags: 2.9.0+really2.6.1-0ubuntu1
* [fbf05ca] Imported Upstream version 2.9.0+really2.6.1:
  Downgrade to 2.6.1 -- 2.9.x is unstable and 3.0 won't arrive in time for
  release
* [22de440] Revert packaging to 2.6.1-2ubuntu1
* [7357b73] Merge changes from 2.6.1-5
* [a7156c0] Filter out libgpod-cil-dev versions built against gtk#3
* [e7c634d] Update dversionmangle for extracting +really version out

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_DEFUN([BANSHEE_CHECK_NOTIFY_SHARP],
2
2
[
3
 
        AC_ARG_WITH([system-notify-sharp],
4
 
                AC_HELP_STRING([--with-system-notify-sharp], [Use the notify-sharp library installed on the system]),
5
 
                use_system_notifysharp="yes", use_system_notifysharp="no")
6
 
 
7
 
        if test "x$use_system_notifysharp" = "xyes"; then
8
 
                PKG_CHECK_MODULES(NOTIFY_SHARP, notify-sharp-3.0)
 
3
        PKG_CHECK_MODULES(NOTIFY_SHARP, notify-sharp, have_notify_sharp=yes, have_notify_sharp=no)
 
4
        if test "x$have_notify_sharp" = "xyes"; then
9
5
                AC_SUBST(NOTIFY_SHARP_LIBS)
10
6
                AM_CONDITIONAL(EXTERNAL_NOTIFY_SHARP, true)
11
7
        else
12
8
                AM_CONDITIONAL(EXTERNAL_NOTIFY_SHARP, false)
13
 
                AC_MSG_NOTICE([Using internal copy of notify-sharp])
 
9
                AC_MSG_RESULT([no])
14
10
        fi
15
11
])
16
12