Changeset b4ac748f7d5421e77068a62d562692c9153e6a5d

Show
Ignore:
Timestamp:
04/23/07 14:37:13 (1 year ago)
Author:
Damien Fouilleul <damienf@videolan.org>
git-committer:
Damien Fouilleul <damienf@videolan.org> 1177331833 +0000
git-parent:

[cea447d3cb6c588fa36b49e4f5b269d7f6ddd250]

git-author:
Damien Fouilleul <damienf@videolan.org> 1177331833 +0000
Message:

- the long awaited Windows BDA driver support for DVB/ATSC capture cards, courtesy of Ken Self.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    rbe8ab37 rb4ac748  
    19681968        VLC_ADD_LDFLAGS([dshow],[-lole32 -loleaut32 -luuid]) ]) 
    19691969    AC_LANG_POP(C++) 
     1970  fi 
     1971fi 
     1972 
     1973dnl 
     1974dnl  Windows DirectShow BDA access module 
     1975dnl 
     1976AC_ARG_ENABLE(bda, 
     1977  [  --enable-bda          Win32 DirectShow BDA support (default enabled on Win32)]) 
     1978if test "${enable_bda}" != "no" 
     1979then 
     1980  if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin" 
     1981  then 
     1982      AC_CHECK_HEADERS(dshow.h, 
     1983      [ VLC_ADD_PLUGINS([bda]) 
     1984        VLC_ADD_CXXFLAGS([bda],[]) 
     1985        VLC_ADD_LDFLAGS([bda],[-lole32 -loleaut32 -luuid]) ]) 
    19701986  fi 
    19711987fi 
     
    57955811AC_CONFIG_FILES([ 
    57965812  modules/access/Makefile 
     5813  modules/access/bda/Makefile 
    57975814  modules/access/dshow/Makefile 
    57985815  modules/access/dvb/Makefile