From 37555f8c9aa47d9bf67c3ddfecf06c330ef8a054 Mon Sep 17 00:00:00 2001 From: Liviu Chircu Date: Wed, 27 Mar 2024 11:37:00 +0200 Subject: [PATCH] http2d: Skip on Unit Tests build and DEB/RPM builds --- packaging/debian/rules | 2 +- packaging/redhat_fedora/opensips.spec | 2 +- scripts/build/do_build.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/debian/rules b/packaging/debian/rules index db2680c4ecc..60b88b5e281 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -278,7 +278,7 @@ BUILD_MODULE_PATHS = $(foreach pkg,$(BUILD_MODPKG_LIST),$($(pkg)_MOD_PATH)) ## modules not in the "main" package or unstable modules that we never want to build ## Everything we don't specifically exclude here will get built into the primary package -NONCORE_MODULES = $(ALL_MODULES) osp launch_darkly +NONCORE_MODULES = $(ALL_MODULES) osp launch_darkly http2d ifeq (cc, $(CC)) CC = gcc diff --git a/packaging/redhat_fedora/opensips.spec b/packaging/redhat_fedora/opensips.spec index 4d8efe99303..060f502b2f2 100644 --- a/packaging/redhat_fedora/opensips.spec +++ b/packaging/redhat_fedora/opensips.spec @@ -41,7 +41,7 @@ %global _with_wolfssl 1 %endif -%global EXCLUDE_MODULES %{!?_with_auth_jwt:auth_jwt} %{!?_with_cachedb_cassandra:cachedb_cassandra} %{!?_with_cachedb_couchbase:cachedb_couchbase} %{!?_with_cachedb_mongodb:cachedb_mongodb} %{!?_with_cachedb_redis:cachedb_redis} %{!?_with_db_oracle:db_oracle} %{!?_with_osp:osp} %{!?_with_sngtc:sngtc} %{!?_with_aaa_diameter:aaa_diameter} %{?_without_aaa_radius:aaa_radius} %{?_without_db_perlvdb:db_perlvdb} %{?_without_snmpstats:snmpstats} %{!?_with_wolfssl:tls_wolfssl} launch_darkly +%global EXCLUDE_MODULES %{!?_with_auth_jwt:auth_jwt} %{!?_with_cachedb_cassandra:cachedb_cassandra} %{!?_with_cachedb_couchbase:cachedb_couchbase} %{!?_with_cachedb_mongodb:cachedb_mongodb} %{!?_with_cachedb_redis:cachedb_redis} %{!?_with_db_oracle:db_oracle} %{!?_with_osp:osp} %{!?_with_sngtc:sngtc} %{!?_with_aaa_diameter:aaa_diameter} %{?_without_aaa_radius:aaa_radius} %{?_without_db_perlvdb:db_perlvdb} %{?_without_snmpstats:snmpstats} %{!?_with_wolfssl:tls_wolfssl} launch_darkly http2d Summary: Very fast and configurable SIP server Name: opensips diff --git a/scripts/build/do_build.sh b/scripts/build/do_build.sh index acca06c1a69..8e7e4037d72 100755 --- a/scripts/build/do_build.sh +++ b/scripts/build/do_build.sh @@ -7,7 +7,7 @@ set -e . $(dirname $0)/build.conf.sub EXCLUDE_MODULES="db_oracle osp sngtc cachedb_cassandra cachedb_couchbase \ - cachedb_mongodb auth_jwt event_kafka aaa_diameter launch_darkly" + cachedb_mongodb auth_jwt event_kafka aaa_diameter launch_darkly http2d" if [ ! -z "${EXCLUDE_MODULES_ADD}" ] then EXCLUDE_MODULES="${EXCLUDE_MODULES} ${EXCLUDE_MODULES_ADD}"