Commit 3750fe22 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add compiler command for Solaris.

Closes ticket #239


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2636 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 16386286
......@@ -616,7 +616,9 @@ static const struct parspec parspec[] = {
MUST_RELOAD,
#ifdef __APPLE__
"exec cc -dynamiclib -Wl,-undefined,dynamic_lookup -o %o %s"
#else
#elseif defined(__SOLARIS__)
"exec cc -shared -fpic -c %o %s"
#else /* default: GCC on Linux & FreeBSD */
"exec cc -fpic -shared -Wl,-x -o %o %s"
#endif
, NULL },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment