diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-12-27 13:18:32 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-12-27 13:18:32 -0500 |
commit | c5a46fa63373c129e9595373d4c126030266d957 (patch) | |
tree | 4a63c8e1de989b220775c95117ae849c20f76f1c /src/fastcgi.sml | |
parent | 129b1c431efebc77a7a0046c725380ba29b814cf (diff) |
Dynamic linking of the runtime system
Diffstat (limited to 'src/fastcgi.sml')
-rw-r--r-- | src/fastcgi.sml | 3 |
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 |