comparison src/http.sml @ 1095:bed675db3aff

Dynamic linking of the runtime system
author Adam Chlipala <adamc@hcoop.net>
date Sun, 27 Dec 2009 13:18:32 -0500
parents ebefb0609ac3
children 324c9ffe8ff9
comparison
equal deleted inserted replaced
1094:db52c32dbe42 1095:bed675db3aff
28 structure Http :> HTTP = struct 28 structure Http :> HTTP = struct
29 29
30 open Settings 30 open Settings
31 31
32 val () = addProtocol {name = "http", 32 val () = addProtocol {name = "http",
33 link = clibFile "request.o" ^ " " ^ clibFile "queue.o" ^ " " ^ clibFile "http.o", 33 linkStatic = clibFile "http.o",
34 linkDynamic = "-lurweb_http",
34 persistent = true} 35 persistent = true}
35 val () = setProtocol "http" 36 val () = setProtocol "http"
36 37
37 end 38 end