Changeset 4c5ad8e3f364ff605509a95f26d4653a7bf96b00
- Timestamp:
- 09/25/06 14:09:13
(2 years ago)
- Author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr>
- git-committer:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1159186153 +0000
- git-parent:
[bdfdc2005c867a9e0eeb8cb3ee78b43d91215a16]
- git-author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1159186153 +0000
- Message:
Remove CORBA module, which I is not used anymore (not even by me...)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r989ceff |
r4c5ad8e |
|
| 36 | 36 | N: Olivier Aubert |
|---|
| 37 | 37 | E: oaubert at lisi dot univ-lyon1 dot fr |
|---|
| 38 | | D: CORBA interface |
|---|
| | 38 | D: Mediacontrol API, Python bindings, svg module |
|---|
| 39 | 39 | S: France |
|---|
| 40 | 40 | |
|---|
| r4785ff4 |
r4c5ad8e |
|
| 44 | 44 | - macosx : [thedj] [bigben] [fkuehne] |
|---|
| 45 | 45 | - lirc, dummy, rc, ncurses : [sam] |
|---|
| 46 | | - corba : [oaubert] |
|---|
| 47 | 46 | - familiar : [jpsaman] |
|---|
| 48 | 47 | - http : [meuuh] |
|---|
| r4074989 |
r4c5ad8e |
|
| 15 | 15 | LIRC lirc |
|---|
| 16 | 16 | JOYSTICK joystick |
|---|
| 17 | | CORBA corba |
|---|
| 18 | 17 | LIVEDOTCOM livedotcom |
|---|
| 19 | 18 | DVDREAD dvdread |
|---|
| r4074989 |
r4c5ad8e |
|
| 39 | 39 | bool 'GaLaktos visualization plugin' CONFIG_GALAKTOS |
|---|
| 40 | 40 | bool 'IR remote control support' CONFIG_LIRC |
|---|
| 41 | | bool 'Corba interface support' CONFIG_CORBA |
|---|
| 42 | 41 | endmenu |
|---|
| 43 | 42 | |
|---|
| rb45afc2 |
r4c5ad8e |
|
| 5096 | 5096 | |
|---|
| 5097 | 5097 | |
|---|
| 5098 | | dnl |
|---|
| 5099 | | dnl corba (ORBit) plugin |
|---|
| 5100 | | dnl |
|---|
| 5101 | | dnl Default: do not enable corba |
|---|
| 5102 | | enablecorba=false |
|---|
| 5103 | | AC_ARG_ENABLE(corba, |
|---|
| 5104 | | [ --enable-corba corba interface support (default disabled)]) |
|---|
| 5105 | | if test "${enable_corba}" = "yes"; then |
|---|
| 5106 | | GLIB_VERSION=2.3.2 |
|---|
| 5107 | | PKG_CHECK_MODULES(CORBA, |
|---|
| 5108 | | ORBit-2.0 >= 2.8.0 \ |
|---|
| 5109 | | glib-2.0 >= $GLIB_VERSION \ |
|---|
| 5110 | | gobject-2.0 >= $GLIB_VERSION \ |
|---|
| 5111 | | gthread-2.0 >= $GLIB_VERSION, |
|---|
| 5112 | | [ |
|---|
| 5113 | | enablecorba=true |
|---|
| 5114 | | VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS]) |
|---|
| 5115 | | VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS]) |
|---|
| 5116 | | VLC_ADD_PLUGINS([corba snapshot]) ], |
|---|
| 5117 | | [ enablecorba=false |
|---|
| 5118 | | AC_MSG_WARN(corba library not found) ]) |
|---|
| 5119 | | fi |
|---|
| 5120 | | AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true") |
|---|
| 5121 | | |
|---|
| 5122 | 5098 | AC_ARG_WITH(,[Misc options:]) |
|---|
| 5123 | 5099 | |
|---|
| … | … | |
| 5656 | 5632 | modules/control/Makefile |
|---|
| 5657 | 5633 | modules/control/http/Makefile |
|---|
| 5658 | | modules/control/corba/Makefile |
|---|
| 5659 | 5634 | modules/demux/Makefile |
|---|
| 5660 | 5635 | modules/demux/asf/Makefile |
|---|
| rbfb18bb |
r4c5ad8e |
|
| 24 | 24 | # CONFIG_LIRC is not set |
|---|
| 25 | 25 | CONFIG_JOYSTICK=y |
|---|
| 26 | | # CONFIG_CORBA is not set |
|---|
| 27 | 26 | |
|---|
| 28 | 27 | # |
|---|
| r5ca8805 |
r4c5ad8e |
|
| 49 | 49 | * clone: Clone video filter |
|---|
| 50 | 50 | * cmml: Continuous Media Markup Language annotations/hyperlinks decoder |
|---|
| 51 | | * corba: CORBA control module |
|---|
| 52 | 51 | * crop: Crop video filter |
|---|
| 53 | 52 | * cvdsub: CVD subtitles decoder |
|---|
| r5128a37 |
r4c5ad8e |
|
| 20 | 20 | --disable-qnx \ |
|---|
| 21 | 21 | --disable-ncurses \ |
|---|
| 22 | | --disable-corba \ |
|---|
| 23 | 22 | --disable-mozilla \ |
|---|
| 24 | 23 | --disable-mga \ |
|---|
| … | … | |
| 27 | 26 | --disable-qte --disable-qt_video \ |
|---|
| 28 | 27 | --disable-livedotcom \ |
|---|
| 29 | | --disable-corba \ |
|---|
| 30 | 28 | --disable-v4l \ |
|---|
| 31 | 29 | --disable-pvr \ |
|---|