Changeset 72fac693ab6fad548d4da79cf590744cc6908c67
- Timestamp:
- 01/10/03 05:58:23
(6 years ago)
- Author:
- Loïc Minier <lool@videolan.org>
- git-committer:
- Loïc Minier <lool@videolan.org> 1042174703 +0000
- git-parent:
[f43c76d457555bc8bb59095c910b91a7c054e7fd]
- git-author:
- Loïc Minier <lool@videolan.org> 1042174703 +0000
- Message:
- configure.ac.in, modules/access/slp.c: New SLP access module,
see <http://www.openslp.org/>
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5361fc7 |
r72fac69 |
|
| 350 | 350 | D: Gtk/gnome enhancements |
|---|
| 351 | 351 | D: xosd interface plug-in |
|---|
| | 352 | D: SLP |
|---|
| 352 | 353 | S: France |
|---|
| 353 | 354 | |
|---|
| rbfc4f0f |
r72fac69 |
|
| 1 | | # $Id: STATUS,v 1.5 2002/10/23 23:17:45 gbazin Exp $ |
|---|
| | 1 | # $Id: STATUS,v 1.6 2003/01/10 04:58:23 lool Exp $ |
|---|
| 2 | 2 | # |
|---|
| 3 | 3 | # VLC STATUS |
|---|
| … | … | |
| 66 | 66 | - ALSA Audio output module (S/PDIF support) |
|---|
| 67 | 67 | ETA : soon |
|---|
| | 68 | |
|---|
| | 69 | Lo�Minier <lool@videolan.org> : |
|---|
| | 70 | - SLP integration |
|---|
| | 71 | - FAQ |
|---|
| | 72 | |
|---|
| rdb34eae |
r72fac69 |
|
| 736 | 736 | PLUGINS="${PLUGINS} id3 m3u" |
|---|
| 737 | 737 | PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm" |
|---|
| 738 | | PLUGINS="${PLUGINS} access_udp access_http ipv4 access_mms access_ftp sap" |
|---|
| | 738 | PLUGINS="${PLUGINS} access_udp access_http ipv4 access_mms access_ftp" |
|---|
| | 739 | PLUGINS="${PLUGINS} sap" |
|---|
| 739 | 740 | |
|---|
| 740 | 741 | dnl |
|---|
| … | … | |
| 2492 | 2493 | PLUGINS="${PLUGINS} xosd" |
|---|
| 2493 | 2494 | LDFLAGS_xosd="${LDFLAGS_xosd} -lxosd" |
|---|
| | 2495 | fi |
|---|
| | 2496 | fi |
|---|
| | 2497 | |
|---|
| | 2498 | dnl |
|---|
| | 2499 | dnl SLP access plugin |
|---|
| | 2500 | dnl |
|---|
| | 2501 | AC_ARG_ENABLE(slp, |
|---|
| | 2502 | [ --enable-slp SLP service discovery support (default disabled)]) |
|---|
| | 2503 | if test "x${enable_slp}" = "xyes" |
|---|
| | 2504 | then |
|---|
| | 2505 | AC_CHECK_HEADER(slp.h, have_slp="true", have_slp="false") |
|---|
| | 2506 | if test "x${have_slp}" = "xtrue" |
|---|
| | 2507 | then |
|---|
| | 2508 | PLUGINS="${PLUGINS} access_slp" |
|---|
| | 2509 | LDFLAGS_access_slp="${LDFLAGS_access_slp} -lslp" |
|---|
| 2494 | 2510 | fi |
|---|
| 2495 | 2511 | fi |
|---|