Changeset 8e2036e4e1cc5e158a9d8c209684f63bf774a8f0

Show
Ignore:
Timestamp:
06/04/06 02:13:40 (2 years ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1149380020 +0000
git-parent:

[ddd1fc5e3a1ebd8b2db3268f3ed438cf039f9515]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1149380020 +0000
Message:

New libnotify plugin.
TODO: - get rid of the harcoded path for the icon

  • make the meta printed an option.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    r61acca8 r8e2036e  
    15091509  ] 
    15101510) 
     1511 
     1512dnl 
     1513dnl Libnotify notification plugin 
     1514dnl 
     1515 
     1516AC_ARG_ENABLE(notify, 
     1517  [  --enable-notify          libnotify notification plugin (default enabled)]) 
     1518AS_IF([test "${enable_notify}" != "no"], [ 
     1519    PKG_CHECK_MODULES(NOTIFY, libnotify, 
     1520      [ 
     1521        VLC_ADD_PLUGINS([notify]) 
     1522        VLC_ADD_CFLAGS(notify, [$NOTIFY_CFLAGS]) 
     1523    VLC_ADD_LDFLAGS(notify, [$NOTIFY_LIBS]) 
     1524      ],[ 
     1525    AS_IF([test "${enable_notify}" = "yes"],[ 
     1526           AC_MSG_WARN( libnotify not found) ]) 
     1527      ]) 
     1528  ]) 
     1529 
     1530 
    15111531 
    15121532