Commit d8493985 authored by Jérome Decoodt's avatar Jérome Decoodt

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*)
parent ce98868f
...@@ -1423,6 +1423,17 @@ then ...@@ -1423,6 +1423,17 @@ then
AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support) AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support)
fi fi
dnl
dnl Growl notification plugin
dnl
AC_ARG_ENABLE(growl,
[ --enable-growl growl notification plugin (default enabled)])
AS_IF([test "${enable_growl}" != "no"], [
VLC_ADD_PLUGINS([growl])
]
)
dnl dnl
dnl TLS/SSL dnl TLS/SSL
dnl dnl
......
...@@ -11,3 +11,4 @@ SOURCES_vod_rtsp = rtsp.c ...@@ -11,3 +11,4 @@ SOURCES_vod_rtsp = rtsp.c
SOURCES_gnutls = gnutls.c SOURCES_gnutls = gnutls.c
SOURCES_svg = svg.c SOURCES_svg = svg.c
SOURCES_msn = msn.c SOURCES_msn = msn.c
SOURCES_growl = growl.c
This diff is collapsed.
...@@ -196,6 +196,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -196,6 +196,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
free( psz_album ); free( psz_album );
SendToMSN( psz_tmp ); SendToMSN( psz_tmp );
vlc_object_release( p_input );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment