aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fastcgi.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/fastcgi.sml')
-rw-r--r--src/fastcgi.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fastcgi.sml b/src/fastcgi.sml
index fbd24b5d..16836f30 100644
--- a/src/fastcgi.sml
+++ b/src/fastcgi.sml
@@ -30,7 +30,8 @@ structure Fastcgi :> FASTCGI = struct
open Settings
val () = addProtocol {name = "fastcgi",
- link = clibFile "request.o" ^ " " ^ clibFile "queue.o" ^ " " ^ clibFile "fastcgi.o",
+ linkStatic = clibFile "fastcgi.o",
+ linkDynamic = "-lurweb_fastcgi",
persistent = true}
end