Changeset 7133

Show
Ignore:
Timestamp:
02/02/10 23:19:49 (7 months ago)
Author:
metamorph68
Message:

Disable extproto in Win32: too hard to port..

Location:
trunk/liquidsoap/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/liquidsoap/src/Makefile

    r7127 r7133  
    5050protocols = \ 
    5151        protocols/say.ml protocols/annotate.ml \ 
    52         protocols/mpd.ml protocols/extproto.ml \ 
     52        protocols/mpd.ml \ 
     53        $(ifneq ($(OS_TYPE),Win32), protocols/extproto.ml) \ 
    5354        $(if $(W_LAST),protocols/lastfm_req.ml) 
    5455 
  • trunk/liquidsoap/src/protocols/extproto.ml

    r7113 r7133  
    6262      end 
    6363 
    64 let exec_suffix = if Sys.os_type = "Unix" then "" else ".exe" 
    65  
    6664let extproto = [ 
    67   "ufetch" ^ exec_suffix, 
     65  "ufetch", 
    6866  [ "smb"; "http"; "file" ], 
    6967  (fun prog src dst -> 
    7068     [|prog;"--quiet";src;"file://"^dst|]) ; 
    7169 
    72   "wget" ^ exec_suffix, 
     70  "wget", 
    7371  [ "http";"https";"ftp" ], 
    7472  (fun prog src dst ->