aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/http.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-12-27 13:18:32 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-12-27 13:18:32 -0500
commitc5a46fa63373c129e9595373d4c126030266d957 (patch)
tree4a63c8e1de989b220775c95117ae849c20f76f1c /src/http.sml
parent129b1c431efebc77a7a0046c725380ba29b814cf (diff)
Dynamic linking of the runtime system
Diffstat (limited to 'src/http.sml')
-rw-r--r--src/http.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http.sml b/src/http.sml
index b835a4ac..3f6fc2df 100644
--- a/src/http.sml
+++ b/src/http.sml
@@ -30,7 +30,8 @@ structure Http :> HTTP = struct
open Settings
val () = addProtocol {name = "http",
- link = clibFile "request.o" ^ " " ^ clibFile "queue.o" ^ " " ^ clibFile "http.o",
+ linkStatic = clibFile "http.o",
+ linkDynamic = "-lurweb_http",
persistent = true}
val () = setProtocol "http"