Changeset d8493985dcff2042fe7b659c9e759faa21253516
- 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
| r13b0306 |
rd849398 |
|
| 1423 | 1423 | AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support) |
|---|
| 1424 | 1424 | fi |
|---|
| | 1425 | |
|---|
| | 1426 | dnl |
|---|
| | 1427 | dnl Growl notification plugin |
|---|
| | 1428 | dnl |
|---|
| | 1429 | AC_ARG_ENABLE(growl, |
|---|
| | 1430 | [ --enable-growl growl notification plugin (default enabled)]) |
|---|
| | 1431 | AS_IF([test "${enable_growl}" != "no"], [ |
|---|
| | 1432 | VLC_ADD_PLUGINS([growl]) |
|---|
| | 1433 | ] |
|---|
| | 1434 | ) |
|---|
| | 1435 | |
|---|
| 1425 | 1436 | |
|---|
| 1426 | 1437 | dnl |
|---|
| rb6d512b |
rd849398 |
|
| 12 | 12 | SOURCES_svg = svg.c |
|---|
| 13 | 13 | SOURCES_msn = msn.c |
|---|
| | 14 | SOURCES_growl = growl.c |
|---|
| r9e17021 |
rd849398 |
|
| 197 | 197 | |
|---|
| 198 | 198 | SendToMSN( psz_tmp ); |
|---|
| | 199 | vlc_object_release( p_input ); |
|---|
| 199 | 200 | |
|---|
| 200 | 201 | return VLC_SUCCESS; |
|---|