Mercurial > urweb
comparison src/http.sml @ 1096:324c9ffe8ff9
Protocol-specific compiler options
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 27 Dec 2009 14:25:22 -0500 |
parents | bed675db3aff |
children | d4cd54a4ea06 |
comparison
equal
deleted
inserted
replaced
1095:bed675db3aff | 1096:324c9ffe8ff9 |
---|---|
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 compile = "", | |
33 linkStatic = clibFile "http.o", | 34 linkStatic = clibFile "http.o", |
34 linkDynamic = "-lurweb_http", | 35 linkDynamic = "-lurweb_http", |
35 persistent = true} | 36 persistent = true} |
36 val () = setProtocol "http" | 37 val () = setProtocol "http" |
37 | 38 |