designed to let web developers measure the performance of their code under duress, to see how it will stand up to load on the internet. Siege supports basic authentication, cookies, HTTP and HTTPS protocols. It allows the user hit a web server with a configurable number of concurrent simulated users. Those users place the webserver "under siege."
14 lines
356 B
Makefile
14 lines
356 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2006/03/19 18:46:27 airhead Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.siege
|
|
PKG_SUPPORTED_OPTIONS= ssl
|
|
PKG_SUGGESTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ssl
|
|
.endif
|