Changeset 15e5136b5ad57c990a3f98945ef26b13c1cac354
- Timestamp:
- 09/17/07 20:36:37
(10 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1190054197 +0000
- git-parent:
[6a604066e435c727e04726050e2e76c0eebb1797]
- git-author:
- Rafaël Carré <funman@videolan.org> 1190054197 +0000
- Message:
New Telepathy plugin, to customize user Presence with MissionControl?
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r191a84f |
r15e5136 |
|
| 124 | 124 | * Ncurses interface now uses ncursesw to correctly display wide characters |
|---|
| 125 | 125 | when using an UTF-8 locale. |
|---|
| | 126 | * Plugin to set Telepathy presence message using MissionControl |
|---|
| 126 | 127 | |
|---|
| 127 | 128 | Linux Port: |
|---|
| r948e474 |
r15e5136 |
|
| 891 | 891 | VLC_ADD_LDFLAGS([dbus],[$DBUS_LIBS]) |
|---|
| 892 | 892 | VLC_ADD_CFLAGS([dbus],[$DBUS_CFLAGS]) |
|---|
| | 893 | fi |
|---|
| | 894 | dnl Check for Telepathy |
|---|
| | 895 | AC_ARG_ENABLE(telepathy, |
|---|
| | 896 | [ --enable-telepathy Telepathy Presence plugin through DBus(default enabled)]) |
|---|
| | 897 | if test "${enable_telepathy}" != "no"; then |
|---|
| | 898 | VLC_ADD_PLUGINS([telepathy]) |
|---|
| | 899 | VLC_ADD_LDFLAGS([telepathy],[$DBUS_LIBS]) |
|---|
| | 900 | VLC_ADD_CFLAGS([telepathy],[$DBUS_CFLAGS]) |
|---|
| 893 | 901 | fi], |
|---|
| 894 | 902 | |
|---|
| r1fa9ce8 |
r15e5136 |
|
| 3 | 3 | SOURCES_notify = notify.c |
|---|
| 4 | 4 | SOURCES_xosd = xosd.c |
|---|
| | 5 | SOURCES_telepathy = telepathy.c |
|---|