Changeset 23561f61564fab1141717adeee7d32e2249fa121
- Timestamp:
- 04/28/08 21:34:29
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209411269 +0300
- git-parent:
[32fcb07923a563d3edbdc72220dddebb6f565eaa]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209411269 +0300
- Message:
Avoid vlc-config for access plugins that are always built
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rdd8c12f |
r23561f6 |
|
| 1286 | 1286 | dnl Video codecs: |
|---|
| 1287 | 1287 | VLC_ADD_PLUGINS([rawvideo]) |
|---|
| 1288 | | dnl Accesses: |
|---|
| 1289 | | VLC_ADD_PLUGINS([access_directory]) |
|---|
| 1290 | | VLC_ADD_PLUGINS([access_file]) |
|---|
| 1291 | | VLC_ADD_PLUGINS([access_udp]) |
|---|
| 1292 | | VLC_ADD_PLUGINS([access_tcp]) |
|---|
| 1293 | | VLC_ADD_PLUGINS([access_http]) |
|---|
| 1294 | | VLC_ADD_PLUGINS([access_mms]) |
|---|
| 1295 | | VLC_ADD_PLUGINS([access_ftp]) |
|---|
| 1296 | | VLC_ADD_PLUGINS([access_rtmp]) |
|---|
| 1297 | | VLC_ADD_PLUGINS([access_fake]) |
|---|
| 1298 | 1288 | dnl Access filters: |
|---|
| 1299 | 1289 | VLC_ADD_PLUGINS([access_filter_timeshift]) |
|---|
| r56b98fd |
r23561f6 |
|
| 28 | 28 | $(NULL) |
|---|
| 29 | 29 | SOURCES_access_jack = jack.c |
|---|
| | 30 | |
|---|
| | 31 | libvlc_LTLIBRARIES += \ |
|---|
| | 32 | libaccess_file_plugin.la \ |
|---|
| | 33 | libaccess_directory_plugin.la \ |
|---|
| | 34 | libaccess_udp_plugin.la \ |
|---|
| | 35 | libaccess_tcp_plugin.la \ |
|---|
| | 36 | libaccess_http_plugin.la \ |
|---|
| | 37 | libaccess_ftp_plugin.la \ |
|---|
| | 38 | libaccess_fake_plugin.la \ |
|---|
| | 39 | $(NULL) |
|---|
| rfe17002 |
r23561f6 |
|
| 11 | 11 | asf.c \ |
|---|
| 12 | 12 | $(NULL) |
|---|
| | 13 | |
|---|
| | 14 | libvlc_LTLIBRARIES += libaccess_mms_plugin.la |
|---|
| r5b2c271 |
r23561f6 |
|
| 4 | 4 | rtmp_amf_flv.h \ |
|---|
| 5 | 5 | $(NULL) |
|---|
| | 6 | libvlc_LTLIBRARIES += libaccess_rtmp_plugin.la |
|---|