Mercurial > urweb
comparison src/fastcgi.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 | 60240acd15b9 |
children | 324c9ffe8ff9 |
comparison
equal
deleted
inserted
replaced
1094:db52c32dbe42 | 1095:bed675db3aff |
---|---|
28 structure Fastcgi :> FASTCGI = struct | 28 structure Fastcgi :> FASTCGI = struct |
29 | 29 |
30 open Settings | 30 open Settings |
31 | 31 |
32 val () = addProtocol {name = "fastcgi", | 32 val () = addProtocol {name = "fastcgi", |
33 link = clibFile "request.o" ^ " " ^ clibFile "queue.o" ^ " " ^ clibFile "fastcgi.o", | 33 linkStatic = clibFile "fastcgi.o", |
34 linkDynamic = "-lurweb_fastcgi", | |
34 persistent = true} | 35 persistent = true} |
35 | 36 |
36 end | 37 end |