Changeset 7133
- Timestamp:
- 02/02/10 23:19:49 (7 months ago)
- Location:
- trunk/liquidsoap/src
- Files:
-
- 2 modified
-
Makefile (modified) (1 diff)
-
protocols/extproto.ml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/liquidsoap/src/Makefile
r7127 r7133 50 50 protocols = \ 51 51 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) \ 53 54 $(if $(W_LAST),protocols/lastfm_req.ml) 54 55 -
trunk/liquidsoap/src/protocols/extproto.ml
r7113 r7133 62 62 end 63 63 64 let exec_suffix = if Sys.os_type = "Unix" then "" else ".exe"65 66 64 let extproto = [ 67 "ufetch" ^ exec_suffix,65 "ufetch", 68 66 [ "smb"; "http"; "file" ], 69 67 (fun prog src dst -> 70 68 [|prog;"--quiet";src;"file://"^dst|]) ; 71 69 72 "wget" ^ exec_suffix,70 "wget", 73 71 [ "http";"https";"ftp" ], 74 72 (fun prog src dst ->
