Skip to content

Commit

Permalink
www/nginx-devel: fix OTel module build (+)
Browse files Browse the repository at this point in the history
Special thanks to:	pluknet

Bump PORTREVISION.
  • Loading branch information
osokin committed Sep 17, 2023
1 parent 4ed743e commit c39a8b9
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
5 changes: 4 additions & 1 deletion www/nginx-devel/Makefile
@@ -1,6 +1,6 @@
PORTNAME?= nginx
PORTVERSION= 1.25.2
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= www
MASTER_SITES= https://nginx.org/download/ \
LOCAL/osa
Expand Down Expand Up @@ -324,6 +324,9 @@ pre-configure-SMALL_LIGHT-on:
do-configure-NJS-on:
( cd ${WRKSRC_njs} && ${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${NJS_CONFIGURE_ARGS} )

post-configure-OTEL-on:
${CAT} ${WRKSRC_otel}/src/modules.c >${WRKSRC}/objs/ngx_otel_module_modules.c

.if !target(do-install)
do-install:
${MKDIR} ${STAGEDIR}${ETCDIR}
Expand Down
1 change: 1 addition & 0 deletions www/nginx-devel/Makefile.extmod
Expand Up @@ -258,6 +258,7 @@ OTEL_LIB_DEPENDS= libabsl_base.so:devel/abseil \
libre2.so:devel/re2
OTEL_BUILD_DEPENDS= ${LOCALBASE}/include/opentelemetry/proto/common/v1/common.proto:devel/opentelemetry-proto
OTEL_CONFIGURE_ENV+= NGX_OTEL_PROTO_DIR=${PREFIX}/include
OTEL_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-nginx-otel-config

PASSENGER_NGINX_VER= 6.0.18
PASSENGER_CATEGORIES= ruby
Expand Down
34 changes: 34 additions & 0 deletions www/nginx-devel/files/extra-patch-nginx-otel-config
@@ -0,0 +1,34 @@
--- ../nginx-otel-f58abc0/config.orig 2023-09-16 12:52:34.000000000 -0400
+++ ../nginx-otel-f58abc0/config 2023-09-16 21:19:32.540843000 -0400
@@ -223,7 +223,7 @@
ngx_feature_run=no
ngx_feature_incs="#include <grpc/support/log.h>"
ngx_feature_path="/usr/include"
-ngx_feature_libs="-lgrpc -lgpr"
+ngx_feature_libs="-lgrpc -lgpr -lgrpc++"
ngx_feature_test="gpr_log_verbosity_init();"

autocppfeature
@@ -236,19 +236,18 @@
ngx_feature_path="/usr/local/include"

if [ $NGX_RPATH = YES ]; then
- ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lgrpc -lgpr"
+ ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lgrpc -lgpr -lgrpc++"
else
- ngx_feature_libs="-L/usr/local/lib -lgrpc -lgpr"
+ ngx_feature_libs="-L/usr/local/lib -lgrpc -lgpr -lgrpc++"
fi

autocppfeature
fi

if [ $ngx_found = yes ]; then
- ngx_module_libs="$ngx_module_libs -lgrpc -lgpr"
+ ngx_module_libs="$ngx_module_libs -lgrpc -lgpr -lgrpc++"
fi

-#ngx_module_libs="$ngx_module_libs -lupb -lz -lm -lrt -lssl -lcrypto"
ngx_module_libs="$ngx_module_libs -lz -lm -lrt -lssl -lcrypto"

. auto/module

0 comments on commit c39a8b9

Please sign in to comment.