diff 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
line wrap: on
line diff
--- a/src/http.sml	Sun Dec 27 10:37:24 2009 -0500
+++ b/src/http.sml	Sun Dec 27 13:18:32 2009 -0500
@@ -30,7 +30,8 @@
 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"