comparison src/cgi.sml @ 1132:d4cd54a4ea06

First attempt to switch to Automake, to get shared libraries built in OSX
author Adam Chlipala <adamc@hcoop.net>
date Thu, 28 Jan 2010 09:56:08 -0500
parents 324c9ffe8ff9
children 8679ba87cf3c
comparison
equal deleted inserted replaced
1131:94e83c5533d2 1132:d4cd54a4ea06
1 (* Copyright (c) 2008-2009, Adam Chlipala 1 (* Copyright (c) 2008-2010, Adam Chlipala
2 * All rights reserved. 2 * All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met: 5 * modification, are permitted provided that the following conditions are met:
6 * 6 *
29 29
30 open Settings 30 open Settings
31 31
32 val () = addProtocol {name = "cgi", 32 val () = addProtocol {name = "cgi",
33 compile = "", 33 compile = "",
34 linkStatic = clibFile "cgi.o", 34 linkStatic = Config.lib ^ "/../liburweb_cgi.a",
35 linkDynamic = "-lurweb_cgi", 35 linkDynamic = "-lurweb_cgi",
36 persistent = false} 36 persistent = false}
37 37
38 end 38 end