Skip to content

Commit

Permalink
www/nginx-full: fix package build
Browse files Browse the repository at this point in the history
nginx-full requires either to enable GSSAPI_MIT or GSSAPI_HEIMDAL but
none is enabled. As a result, fails to build bibary package on package
build cluster.

PR:		275262
Approved by:	maintainer timeout
  • Loading branch information
metalefty committed Dec 3, 2023
1 parent 0df2012 commit aa8f939
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions www/nginx-full/Makefile
Expand Up @@ -35,4 +35,10 @@ OPTIONS_DEFAULT=DSO DEBUG DEBUGLOG FILE_AIO GOOGLE_PERFTOOLS \
RTMP SET_MISC SFLOW SHIBBOLETH SLOWFS_CACHE SMALL_LIGHT \
SRCACHE STATSD VOD VTS UDPLOG X11 XSS WEBSOCKIFY

.if defined(PACKAGE_BUILDING) || defined(BATCH)
# Either GSSAPI_MIT or GSSAPI_HEIMDAL must be enabled to build binary package.
# There's no chance to choose GSSAPI_RADIO via dialog while package building.
OPTIONS_DEFAULT+= GSSAPI_MIT
.endif

.include "${MASTERDIR}/Makefile"

0 comments on commit aa8f939

Please sign in to comment.