comparison src/cgi.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 346cf1908a17
children 324c9ffe8ff9
comparison
equal deleted inserted replaced
1094:db52c32dbe42 1095:bed675db3aff
28 structure Cgi :> CGI = struct 28 structure Cgi :> CGI = struct
29 29
30 open Settings 30 open Settings
31 31
32 val () = addProtocol {name = "cgi", 32 val () = addProtocol {name = "cgi",
33 link = clibFile "request.o" ^ " " ^ clibFile "cgi.o", 33 linkStatic = clibFile "cgi.o",
34 linkDynamic = "-lurweb_cgi",
34 persistent = false} 35 persistent = false}
35 36
36 end 37 end