4bd6fd5a94
NGINX Unit is a polyglot app server, a reverse proxy, and a static file server, available for Unix-like systems. It was built by nginx team members from scratch to be highly efficient and fully configurable at runtime. Vast majority of work done by Sergey A. Osokin <osa@FreeBSD.org> WWW: http://unit.nginx.org/
20 lines
406 B
Makefile
20 lines
406 B
Makefile
# $NetBSD: version.mk,v 1.1 2021/02/14 11:56:57 otis Exp $
|
|
#
|
|
# UNIT_EXTENSION_DIR
|
|
# Relative path to ${PREFIX} for NGINX Unit's modules.
|
|
#
|
|
# Example: libexec/unit/modules
|
|
#
|
|
# Keywords: unit
|
|
#
|
|
|
|
.if !defined(UNITVERSION_MK)
|
|
UNITVERSION_MK= defined
|
|
|
|
# Define NGINX Unit's version.
|
|
UNIT_VERSION= 1.22.0
|
|
|
|
# Define NGINX Unit's modules directory
|
|
UNIT_EXTENSION_DIR= libexec/unit/modules
|
|
|
|
.endif # UNITVERSION_MK
|