Changeset d8493985dcff2042fe7b659c9e759faa21253516

Show
Ignore:
Timestamp:
15/02/06 00:59:50 (3 years ago)
Author:
Jérome Decoodt <djc@videolan.org>
git-committer:
Jérome Decoodt <djc@videolan.org> 1139961590 +0000
git-parent:

[ce98868f94d5df54bc382bd5e55236a162a4492a]

git-author:
Jérome Decoodt <djc@videolan.org> 1139961590 +0000
Message:

Add a growl (http://growl.info/) notification plugin (most of code from msn.c)
It is built by default since it sends notifications to network (perhaps
we should only build it on macos).

msn.c: should fix a refcount issue (*not tested*)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    r13b0306 rd849398  
    14231423  AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support) 
    14241424fi 
     1425 
     1426dnl 
     1427dnl Growl notification plugin 
     1428dnl 
     1429AC_ARG_ENABLE(growl, 
     1430  [  --enable-growl         growl notification plugin (default enabled)]) 
     1431AS_IF([test "${enable_growl}" != "no"], [ 
     1432    VLC_ADD_PLUGINS([growl]) 
     1433  ] 
     1434) 
     1435 
    14251436 
    14261437dnl 
  • modules/misc/Modules.am

    rb6d512b rd849398  
    1212SOURCES_svg = svg.c 
    1313SOURCES_msn = msn.c 
     14SOURCES_growl = growl.c 
  • modules/misc/msn.c

    r9e17021 rd849398  
    197197 
    198198    SendToMSN( psz_tmp ); 
     199    vlc_object_release( p_input ); 
    199200 
    200201    return VLC_SUCCESS;