Changeset 72fac693ab6fad548d4da79cf590744cc6908c67

Show
Ignore:
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
  • AUTHORS

    r5361fc7 r72fac69  
    350350D: Gtk/gnome enhancements 
    351351D: xosd interface plug-in 
     352D: SLP 
    352353S: France 
    353354 
  • STATUS

    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 $ 
    22# 
    33#                              VLC STATUS 
     
    6666    - ALSA Audio output module (S/PDIF support) 
    6767      ETA : soon 
     68 
     69Lo�Minier <lool@videolan.org> : 
     70    - SLP integration 
     71    - FAQ 
     72 
  • configure.ac.in

    rdb34eae r72fac69  
    736736PLUGINS="${PLUGINS} id3 m3u" 
    737737PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm" 
    738 PLUGINS="${PLUGINS} access_udp access_http ipv4 access_mms access_ftp sap" 
     738PLUGINS="${PLUGINS} access_udp access_http ipv4 access_mms access_ftp" 
     739PLUGINS="${PLUGINS} sap" 
    739740 
    740741dnl 
     
    24922493    PLUGINS="${PLUGINS} xosd" 
    24932494    LDFLAGS_xosd="${LDFLAGS_xosd} -lxosd" 
     2495  fi 
     2496fi 
     2497 
     2498dnl 
     2499dnl  SLP access plugin 
     2500dnl 
     2501AC_ARG_ENABLE(slp, 
     2502  [  --enable-slp            SLP service discovery support (default disabled)]) 
     2503if test "x${enable_slp}" = "xyes" 
     2504then 
     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" 
    24942510  fi 
    24952511fi