Hello all, A build for Solaris on the present trunk fails with the error shown below, the problem being that an include is missing for the declaration of struct params.
The attached one-liner makes it better. Best, Geoff mgt/mgt_sandbox_solaris.c: In function `mgt_sandbox_solaris_privsep': mgt/mgt_sandbox_solaris.c:161: error: invalid use of undefined type `struct params' mgt/mgt_sandbox_solaris.c:162: error: invalid use of undefined type `struct params' mgt/mgt_sandbox_solaris.c:163: error: invalid use of undefined type `struct params' mgt/mgt_sandbox_solaris.c:164: error: invalid use of undefined type `struct params' -- ** * * UPLEX - Nils Goroll Systemoptimierung Schwanenwik 24 22087 Hamburg Tel +49 40 2880 5731 Mob +49 176 636 90917 Fax +49 40 42949753 http://uplex.de
diff --git bin/varnishd/mgt/mgt_sandbox_solaris.c bin/varnishd/mgt/mgt_sandbox_solaris.c index 79f6650..114d6a4 100644 --- bin/varnishd/mgt/mgt_sandbox_solaris.c +++ bin/varnishd/mgt/mgt_sandbox_solaris.c @@ -45,6 +45,7 @@ #include "mgt/mgt.h" #include "common/heritage.h" +#include "common/params.h" /*-------------------------------------------------------------------- * SOLARIS PRIVILEGES: Note on use of symbolic PRIV_* constants
signature.asc
Description: OpenPGP digital signature
_______________________________________________ varnish-dev mailing list [email protected] https://www.varnish-cache.org/lists/mailman/listinfo/varnish-dev
