From 07726d6558ec5554312514f9490beb73a59f58e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:41:37 +0200 Subject: [PATCH 01/54] =?UTF-8?q?lib/ims:=20Aviod=20=E2=80=9Cmake:=20--lib?= =?UTF-8?q?s:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/ims/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ims/Makefile b/src/lib/ims/Makefile index 482404ca36e..9c9539bc745 100644 --- a/src/lib/ims/Makefile +++ b/src/lib/ims/Makefile @@ -11,9 +11,9 @@ BUGFIX_VER=0 DEFS+=-DSER ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 5fa5cae3da57f75d7f98f3e016e6ffbfa037e6c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:15:51 +0200 Subject: [PATCH 02/54] =?UTF-8?q?auth=5Fidentity:=20Aviod=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ngs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/auth_identity/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/auth_identity/Makefile b/src/modules/auth_identity/Makefile index 80791d7080e..daf9ea4dbb2 100644 --- a/src/modules/auth_identity/Makefile +++ b/src/modules/auth_identity/Makefile @@ -4,13 +4,13 @@ auto_gen= NAME=auth_identity.so ifeq ($(CROSS_COMPILE),) -CURL_BUILDER=$(shell \ +CURL_BUILDER:=$(shell \ if pkg-config --exists libcurl; then \ echo 'pkg-config libcurl'; \ else \ which curl-config; \ fi) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) From 0013eb0af9bad9d2a3b2f5dc77a7bac7a3795da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:16:08 +0200 Subject: [PATCH 03/54] =?UTF-8?q?auth=5Fephemeral:=20Aviod=20=E2=80=9Cmake?= =?UTF-8?q?:=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warn?= =?UTF-8?q?ings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/auth_ephemeral/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/auth_ephemeral/Makefile b/src/modules/auth_ephemeral/Makefile index bdfde40de3a..1eecce8b971 100644 --- a/src/modules/auth_ephemeral/Makefile +++ b/src/modules/auth_ephemeral/Makefile @@ -7,7 +7,7 @@ auto_gen= NAME=auth_ephemeral.so ifeq ($(CROSS_COMPILE),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) From 0c414b44e90959a4f05ab539e70b8b3a7bd5bec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:00:04 +0200 Subject: [PATCH 04/54] =?UTF-8?q?app=5Fpython3:=20Avoid=20=E2=80=9C/bin/sh?= =?UTF-8?q?:=20line=201:=20--ldflags:=20command=20not=20found=E2=80=9D=20w?= =?UTF-8?q?arnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/app_python3/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/app_python3/Makefile b/src/modules/app_python3/Makefile index c357ebc09ee..03c3da142c5 100644 --- a/src/modules/app_python3/Makefile +++ b/src/modules/app_python3/Makefile @@ -12,15 +12,15 @@ ifeq ($(PYTHON3),) PYTHON3=python endif -PYTHON3CONFIG=$(shell which ${PYTHON3}-config) +PYTHON3CONFIG:=$(shell which ${PYTHON3}-config) ifeq ($(PYTHON3CONFIG),) python_version_full := $(wordlist 2,4,$(subst ., ,$(shell ${PYTHON3} --version 2>&1))) python_version_major := $(word 1,${python_version_full}) python_version_minor := $(word 2,${python_version_full}) PYTHON3 = python${python_version_major}.${python_version_minor} -PYTHON3CONFIG=$(shell which ${PYTHON3}-config) +PYTHON3CONFIG:=$(shell which ${PYTHON3}-config) ifeq ($(PYTHON3CONFIG),) -PYTHON3CONFIG=${PYTHON3}-config +PYTHON3CONFIG:=${PYTHON3}-config endif endif From 3536629b31ffc1b3cef2a70f23f492a76ff84a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:01:14 +0200 Subject: [PATCH 05/54] =?UTF-8?q?app=5Fpython3s:=20Avoid=20=E2=80=9C/bin/s?= =?UTF-8?q?h:=20line=201:=20--ldflags:=20command=20not=20found=E2=80=9D=20?= =?UTF-8?q?warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/app_python3s/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/app_python3s/Makefile b/src/modules/app_python3s/Makefile index 8edf4292406..ef50c9aae74 100644 --- a/src/modules/app_python3s/Makefile +++ b/src/modules/app_python3s/Makefile @@ -12,15 +12,15 @@ ifeq ($(PYTHON3),) PYTHON3=python endif -PYTHON3CONFIG=$(shell which ${PYTHON3}-config) +PYTHON3CONFIG:=$(shell which ${PYTHON3}-config) ifeq ($(PYTHON3CONFIG),) python_version_full := $(wordlist 2,4,$(subst ., ,$(shell ${PYTHON3} --version 2>&1))) python_version_major := $(word 1,${python_version_full}) python_version_minor := $(word 2,${python_version_full}) PYTHON3 = python${python_version_major}.${python_version_minor} -PYTHON3CONFIG=$(shell which ${PYTHON3}-config) +PYTHON3CONFIG:=$(shell which ${PYTHON3}-config) ifeq ($(PYTHON3CONFIG),) -PYTHON3CONFIG=${PYTHON3}-config +PYTHON3CONFIG:=${PYTHON3}-config endif endif From 0ba1c1aecf9406568d01e8a11d91c30d93f2769a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:17:11 +0200 Subject: [PATCH 06/54] =?UTF-8?q?cdp:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/cdp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/cdp/Makefile b/src/modules/cdp/Makefile index e2d0211f654..6ba565ab7df 100644 --- a/src/modules/cdp/Makefile +++ b/src/modules/cdp/Makefile @@ -5,9 +5,9 @@ auto_gen= NAME=cdp.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 64f99b5c691515f3268292f017623d8aa05ae883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:05:12 +0200 Subject: [PATCH 07/54] =?UTF-8?q?cnxcc:=20Avoid=20=E2=80=9Cmake:=20--libs-?= =?UTF-8?q?only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/cnxcc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/cnxcc/Makefile b/src/modules/cnxcc/Makefile index 708e9f68842..63730d128d6 100644 --- a/src/modules/cnxcc/Makefile +++ b/src/modules/cnxcc/Makefile @@ -9,7 +9,7 @@ auto_gen= NAME=cnxcc.so ifeq ($(CROSS_COMPILE),) -HIREDIS_BUILDER = $(shell \ +HIREDIS_BUILDER:= $(shell \ if pkg-config --exists hiredis; then \ echo 'pkg-config hiredis'; \ fi) @@ -30,7 +30,7 @@ endif endif ifeq ($(CROSS_COMPILE),) -LEVENT_BUILDER = $(shell \ +LEVENT_BUILDER:= $(shell \ if pkg-config --exists libevent; then \ echo 'pkg-config libevent'; \ fi) From 777b42ef9824e3fe6437268ddd255a87cd9d3920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:05:58 +0200 Subject: [PATCH 08/54] =?UTF-8?q?cplc:=20Avoid=20=E2=80=9Cmake:=20--libs-o?= =?UTF-8?q?nly-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/cplc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/cplc/Makefile b/src/modules/cplc/Makefile index dde31ef5046..0d50957982d 100644 --- a/src/modules/cplc/Makefile +++ b/src/modules/cplc/Makefile @@ -6,9 +6,9 @@ auto_gen= NAME=cplc.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From ed5b90c6acfe1aa7501dc32ddf820343c7c9f7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:18:23 +0200 Subject: [PATCH 09/54] =?UTF-8?q?crypto:=20Aviod=20=E2=80=9Cmake:=20--libs?= =?UTF-8?q?:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/crypto/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/crypto/Makefile b/src/modules/crypto/Makefile index d64875b4c41..9cd2a778042 100644 --- a/src/modules/crypto/Makefile +++ b/src/modules/crypto/Makefile @@ -7,7 +7,7 @@ auto_gen= NAME=crypto.so ifeq ($(CROSS_COMPILE),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) From cbbfe50c38dc3e0dd29f26f172b0d27463d74ce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:07:08 +0200 Subject: [PATCH 10/54] =?UTF-8?q?db=5Fpostgres:=20Avoid=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D?= =?UTF-8?q?=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/db_postgres/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/db_postgres/Makefile b/src/modules/db_postgres/Makefile index dc5ca62b9b4..59c04db7d63 100644 --- a/src/modules/db_postgres/Makefile +++ b/src/modules/db_postgres/Makefile @@ -10,7 +10,7 @@ NAME=db_postgres.so # CROSS_COMPILE=true ifeq ($(CROSS_COMPILE),) -LIBPQ_BUILDER = $(shell \ +LIBPQ_BUILDER:= $(shell \ if pkg-config --exists libpq; then \ echo 'pkg-config libpq'; \ fi) From bbb0e1195bdb6a3fdc39d24758ecd4e0a20aa4e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:07:50 +0200 Subject: [PATCH 11/54] =?UTF-8?q?db=5Fredis:=20Avoid=20=E2=80=9Cmake:=20--?= =?UTF-8?q?libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20war?= =?UTF-8?q?ning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/db_redis/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/db_redis/Makefile b/src/modules/db_redis/Makefile index 179bc6f4068..8dab90ab74e 100644 --- a/src/modules/db_redis/Makefile +++ b/src/modules/db_redis/Makefile @@ -37,7 +37,7 @@ endif endif DEFS+=$(HIREDISDEFS) -LIBS=$(HIREDISLIBS) +LIBS:=$(HIREDISLIBS) ifneq ($(HIREDIS_CLUSTER_BUILDER),) HIREDISCLUSTERDEFS = $(shell $(HIREDIS_CLUSTER_BUILDER) --cflags) From 6a2e1c797545b60b8899ae93a35c10889af4d231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:11:42 +0200 Subject: [PATCH 12/54] =?UTF-8?q?dialplan:=20Avoid=20=E2=80=9Cmake:=20--li?= =?UTF-8?q?bs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/dialplan/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/dialplan/Makefile b/src/modules/dialplan/Makefile index abb4bf8388b..e231a47e2a2 100644 --- a/src/modules/dialplan/Makefile +++ b/src/modules/dialplan/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=dialplan.so ifeq ($(CROSS_COMPILE),) -PCRE_BUILDER = $(shell \ +PCRE_BUILDER:= $(shell \ if pkg-config --exists libcre; then \ echo 'pkg-config libpcre'; \ else \ From b396375ccad8cc1beb24ae92019ffb5d47b760e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:19:22 +0200 Subject: [PATCH 13/54] =?UTF-8?q?gzcompress:=20Aviod=20=E2=80=9Cmake:=20--?= =?UTF-8?q?libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/gzcompress/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/gzcompress/Makefile b/src/modules/gzcompress/Makefile index 5e77a0b7f44..275a0e173e5 100644 --- a/src/modules/gzcompress/Makefile +++ b/src/modules/gzcompress/Makefile @@ -9,7 +9,7 @@ auto_gen= NAME=gzcompress.so ifeq ($(CROSS_COMPILE),) - BUILDER = $(shell which pkg-config) + BUILDER:= $(shell which pkg-config) endif ifneq ($(BUILDER),) From 454d1e06b8dce13a9620b075c3f8a72456fce78c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:21:05 +0200 Subject: [PATCH 14/54] =?UTF-8?q?http=5Fasync=5Fclient:=20Aviod=20?= =?UTF-8?q?=E2=80=9Cmake:=20--libs:=20No=20such=20file=20or=20directory?= =?UTF-8?q?=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/http_async_client/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/http_async_client/Makefile b/src/modules/http_async_client/Makefile index 1af95ac0ff5..35aa36c9641 100644 --- a/src/modules/http_async_client/Makefile +++ b/src/modules/http_async_client/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=http_async_client.so ifeq ($(CROSS_COMPILE),) -CURL_BUILDER=$(shell \ +CURL_BUILDER:=$(shell \ if pkg-config --exists libcurl; then \ echo 'pkg-config libcurl'; \ else \ @@ -32,10 +32,10 @@ endif ifeq ($(LEVENT_BUILDER),) LEVENTDEFS=-I$(LOCALBASE)/include -I$(SYSBASE)/include - LEVENTLIBS=-L$(LOCALBASE)/lib -levent + LEVENTLIBS:=-L$(LOCALBASE)/lib -levent else LEVENTDEFS = $(shell $(LEVENT_BUILDER) --cflags) - LEVENTLIBS = $(shell $(LEVENT_BUILDER) --libs) + LEVENTLIBS:= $(shell $(LEVENT_BUILDER) --libs) endif DEFS+=$(CURLDEFS) $(LEVENTDEFS) From 4e8713840d20a647a0ecff6674583acc35da0674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:21:42 +0200 Subject: [PATCH 15/54] =?UTF-8?q?http=5Fclient:=20Aviod=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/http_client/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/http_client/Makefile b/src/modules/http_client/Makefile index a0b38a9c0de..8160c9a163b 100644 --- a/src/modules/http_client/Makefile +++ b/src/modules/http_client/Makefile @@ -9,7 +9,7 @@ auto_gen= NAME=http_client.so ifeq ($(CROSS_COMPILE),) -CURL_BUILDER=$(shell \ +CURL_BUILDER:=$(shell \ if pkg-config --exists libcurl; then \ echo 'pkg-config libcurl'; \ else \ From a6bfa1c32e957bf4361e217165f978ca7a15bea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:12:55 +0200 Subject: [PATCH 16/54] =?UTF-8?q?ims=5Fauth:=20Avoid=20=E2=80=9Cmake:=20--?= =?UTF-8?q?libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20war?= =?UTF-8?q?ning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ims_auth/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ims_auth/Makefile b/src/modules/ims_auth/Makefile index 628632badb7..02547cc45e0 100644 --- a/src/modules/ims_auth/Makefile +++ b/src/modules/ims_auth/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=ims_auth.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 6be5807285dfd7ab767279b82340ba69f6fb2f07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:43:26 +0200 Subject: [PATCH 17/54] =?UTF-8?q?ims=5Ficscf:=20Aviod=20=E2=80=9Cmake:=20-?= =?UTF-8?q?-libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ims_icscf/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ims_icscf/Makefile b/src/modules/ims_icscf/Makefile index ffc05f295b3..4a84b57123f 100644 --- a/src/modules/ims_icscf/Makefile +++ b/src/modules/ims_icscf/Makefile @@ -8,9 +8,9 @@ auto_gen= NAME=ims_icscf.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From fecd94c17f397d8c2806291878032c55fa0ae4ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:15:53 +0200 Subject: [PATCH 18/54] =?UTF-8?q?ims=5Fregistrar=5Fscscf:=20Avoid=20?= =?UTF-8?q?=E2=80=9Cmake:=20--libs-only-L:=20No=20such=20file=20or=20direc?= =?UTF-8?q?tory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ims_registrar_scscf/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ims_registrar_scscf/Makefile b/src/modules/ims_registrar_scscf/Makefile index 6f66edd7ec7..6d23c714b9a 100644 --- a/src/modules/ims_registrar_scscf/Makefile +++ b/src/modules/ims_registrar_scscf/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=ims_registrar_scscf.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 3126dc9a59a72849250586df19d343c7bd73c56e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:44:31 +0200 Subject: [PATCH 19/54] =?UTF-8?q?ims=5Fregistrar=5Fpcscf:=20Aviod=20?= =?UTF-8?q?=E2=80=9Cmake:=20--libs:=20No=20such=20file=20or=20directory?= =?UTF-8?q?=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ims_registrar_pcscf/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ims_registrar_pcscf/Makefile b/src/modules/ims_registrar_pcscf/Makefile index 8fae1cab1af..19e9a730c52 100644 --- a/src/modules/ims_registrar_pcscf/Makefile +++ b/src/modules/ims_registrar_pcscf/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=ims_registrar_pcscf.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From ad16cabcb972640df42b685c3edf144526008099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:14:43 +0200 Subject: [PATCH 20/54] =?UTF-8?q?ims=5Fisc:=20Avoid=20=E2=80=9Cmake:=20--l?= =?UTF-8?q?ibs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warn?= =?UTF-8?q?ings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ims_isc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ims_isc/Makefile b/src/modules/ims_isc/Makefile index d0244d001cc..6c25a40962f 100644 --- a/src/modules/ims_isc/Makefile +++ b/src/modules/ims_isc/Makefile @@ -8,9 +8,9 @@ auto_gen= NAME=ims_isc.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 65a250615acb86e9c13c4a5ccead72ebb33cca85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:22:39 +0200 Subject: [PATCH 21/54] =?UTF-8?q?jansson:=20Aviod=20=E2=80=9Cmake:=20--lib?= =?UTF-8?q?s:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/jansson/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/jansson/Makefile b/src/modules/jansson/Makefile index 7362ec18071..e45ba72e283 100644 --- a/src/modules/jansson/Makefile +++ b/src/modules/jansson/Makefile @@ -9,7 +9,7 @@ auto_gen= NAME=jansson.so ifeq ($(CROSS_COMPILE),) -JNS_BUILDER=$(shell \ +JNS_BUILDER:=$(shell \ if pkg-config --exists jansson; then \ echo 'pkg-config jansson'; \ fi) From d9694366b148a83af3190e6b9cce35747987d23a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:09:28 +0200 Subject: [PATCH 22/54] =?UTF-8?q?kazoo:=20Avoid=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=99=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/kazoo/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/kazoo/Makefile b/src/modules/kazoo/Makefile index b7b1e1615cd..038a749f52b 100644 --- a/src/modules/kazoo/Makefile +++ b/src/modules/kazoo/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=kazoo.so JLIB=json -BUILDER = $(shell which pkg-config) +BUILDER:= $(shell which pkg-config) ifeq ($(BUILDER),) JSONC=$(shell ls $(SYSBASE)/include/lib/libjson*.so $(LOCALBASE)/lib/libjson*.so 2>/dev/null | grep json-c) else From 17580648d8443f2d3178841e8218ce24bd1e1722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:23:34 +0200 Subject: [PATCH 23/54] =?UTF-8?q?lcr:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/lcr/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/lcr/Makefile b/src/modules/lcr/Makefile index 56be2e3a741..c31688aa3c0 100644 --- a/src/modules/lcr/Makefile +++ b/src/modules/lcr/Makefile @@ -9,7 +9,7 @@ auto_gen= NAME=lcr.so ifeq ($(CROSS_COMPILE),) -PCRE_BUILDER = $(shell \ +PCRE_BUILDER:= $(shell \ if pkg-config --exists libcre; then \ echo 'pkg-config libpcre'; \ else \ From 52a8e45e9c46958644570f6f0671f939ad694ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:24:06 +0200 Subject: [PATCH 24/54] =?UTF-8?q?log=5Fsystemd:=20Aviod=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/log_systemd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/log_systemd/Makefile b/src/modules/log_systemd/Makefile index b1ab763c286..cf027bbba8c 100644 --- a/src/modules/log_systemd/Makefile +++ b/src/modules/log_systemd/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=log_systemd.so ifeq ($(CROSS_COMPILE),) -SYSTEMD_BUILDER=$(shell \ +SYSTEMD_BUILDER:=$(shell \ if pkg-config --exists libsystemd; then \ echo 'pkg-config libsystemd'; \ fi) From 82d62a7351e6bb3386dfdaca4f5a82f8698d2bc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:26:06 +0200 Subject: [PATCH 25/54] =?UTF-8?q?lost:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/lost/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/lost/Makefile b/src/modules/lost/Makefile index b847094e1ca..05f2e030c68 100755 --- a/src/modules/lost/Makefile +++ b/src/modules/lost/Makefile @@ -9,14 +9,14 @@ auto_gen= NAME=lost.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) endif -CURL_BUILDER=$(shell \ +CURL_BUILDER:=$(shell \ if pkg-config --exists libcurl; then \ echo 'pkg-config libcurl'; \ else \ From 849d82580bb3ec95a3f2192ab053e392a4755f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:26:48 +0200 Subject: [PATCH 26/54] =?UTF-8?q?lwsc:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/lwsc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/lwsc/Makefile b/src/modules/lwsc/Makefile index 4201bfe42a1..c971e5ec035 100644 --- a/src/modules/lwsc/Makefile +++ b/src/modules/lwsc/Makefile @@ -7,7 +7,7 @@ auto_gen= NAME=lwsc.so ifeq ($(CROSS_COMPILE),) -LWSC_BUILDER=$(shell \ +LWSC_BUILDER:=$(shell \ if pkg-config --exists libwebsockets; then \ echo 'pkg-config libwebsockets'; \ fi) From fe354b9a9e40c276b4372608c0e5cc182da1bc22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:27:27 +0200 Subject: [PATCH 27/54] =?UTF-8?q?ndb=5Fredis:=20Aviod=20=E2=80=9Cmake:=20-?= =?UTF-8?q?-libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/ndb_redis/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ndb_redis/Makefile b/src/modules/ndb_redis/Makefile index 66c34617fd9..9019ccb89b7 100644 --- a/src/modules/ndb_redis/Makefile +++ b/src/modules/ndb_redis/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=ndb_redis.so ifeq ($(CROSS_COMPILE),) -HIREDIS_BUILDER = $(shell \ +HIREDIS_BUILDER:= $(shell \ if pkg-config --exists hiredis; then \ echo 'pkg-config hiredis'; \ fi) From 9befba4e6a339d3a3bff1bd734a1eb34a2f2eed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:11:24 +0200 Subject: [PATCH 28/54] =?UTF-8?q?osp:=20Avoid=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=99=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/osp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/osp/Makefile b/src/modules/osp/Makefile index 06dfc70052c..65072eeede7 100644 --- a/src/modules/osp/Makefile +++ b/src/modules/osp/Makefile @@ -8,7 +8,7 @@ auto_gen= NAME=osp.so ifeq ($(CROSS_COMPILE),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) From 7ff50144cb26811dac49d1f48e91b9cdd7c15339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:28:01 +0200 Subject: [PATCH 29/54] =?UTF-8?q?outbound:=20Aviod=20=E2=80=9Cmake:=20--li?= =?UTF-8?q?bs:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/outbound/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/modules/outbound/Makefile b/src/modules/outbound/Makefile index 70d4102c01b..8a83e47087f 100644 --- a/src/modules/outbound/Makefile +++ b/src/modules/outbound/Makefile @@ -10,18 +10,15 @@ ifeq ($(CROSS_COMPILE),) endif ifneq ($(BUILDER),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) -CRYPTO_BUILDER=$(shell \ +CRYPTO_BUILDER:=$(shell \ if pkg-config --exists libcrypto; then \ echo 'pkg-config libcrypto'; \ fi) -endif - -ifneq ($(BUILDER),) ifneq ($(SSL_BUILDER),) DEFS += $(shell $(SSL_BUILDER) --cflags) From 8769700c53c532b8e53566c01ce30121a0cff06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:16:47 +0200 Subject: [PATCH 30/54] =?UTF-8?q?presence:=20Avoid=20=E2=80=9Cmake:=20--li?= =?UTF-8?q?bs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ngs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/presence/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/presence/Makefile b/src/modules/presence/Makefile index 3065f9d3a23..657f29f26f9 100644 --- a/src/modules/presence/Makefile +++ b/src/modules/presence/Makefile @@ -6,9 +6,9 @@ auto_gen= NAME=presence.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From f2ca139656a14947565774e3b032ddf3eb1d8b64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:45:35 +0200 Subject: [PATCH 31/54] =?UTF-8?q?presence=5Fconference:=20Aviod=20?= =?UTF-8?q?=E2=80=9Cmake:=20--libs:=20No=20such=20file=20or=20directory?= =?UTF-8?q?=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/presence_conference/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/presence_conference/Makefile b/src/modules/presence_conference/Makefile index 7fc0efc9c83..8d563783788 100644 --- a/src/modules/presence_conference/Makefile +++ b/src/modules/presence_conference/Makefile @@ -6,9 +6,9 @@ auto_gen= NAME=presence_conference.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 825183177355ae7cd4b78591e1ee659c103e489d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:28:41 +0200 Subject: [PATCH 32/54] =?UTF-8?q?presence=5Fdialog:=20Aviod=20=E2=80=9Cmak?= =?UTF-8?q?e:=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20war?= =?UTF-8?q?ning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/presence_dialoginfo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/presence_dialoginfo/Makefile b/src/modules/presence_dialoginfo/Makefile index 4674a409fba..1ba5c28e944 100644 --- a/src/modules/presence_dialoginfo/Makefile +++ b/src/modules/presence_dialoginfo/Makefile @@ -6,9 +6,9 @@ auto_gen= NAME=presence_dialoginfo.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 744b80701d59cd39b2572e9fd43527158acc8902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:29:35 +0200 Subject: [PATCH 33/54] =?UTF-8?q?presence=5Freginfo:=20Aviod=20=E2=80=9Cma?= =?UTF-8?q?ke:=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20wa?= =?UTF-8?q?rning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/presence_reginfo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/presence_reginfo/Makefile b/src/modules/presence_reginfo/Makefile index b3bad627bda..262ae87a67b 100644 --- a/src/modules/presence_reginfo/Makefile +++ b/src/modules/presence_reginfo/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=presence_reginfo.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From f2d845c063cf3e4e553a0b5f2cb4e866d512c62c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:17:25 +0200 Subject: [PATCH 34/54] =?UTF-8?q?presence=5Fxml:=20Avoid=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D?= =?UTF-8?q?=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/presence_xml/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/presence_xml/Makefile b/src/modules/presence_xml/Makefile index 8d1fd9a8780..7ac3cba18a6 100644 --- a/src/modules/presence_xml/Makefile +++ b/src/modules/presence_xml/Makefile @@ -7,9 +7,9 @@ NAME=presence_xml.so LIBS= ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From ccb0917c319b2757e03e755ffb6577530d853950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:17:52 +0200 Subject: [PATCH 35/54] =?UTF-8?q?pua:=20Avoid=20=E2=80=9Cmake:=20--libs-on?= =?UTF-8?q?ly-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pua/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua/Makefile b/src/modules/pua/Makefile index cb45cee17e2..780875178d0 100644 --- a/src/modules/pua/Makefile +++ b/src/modules/pua/Makefile @@ -7,9 +7,9 @@ NAME=pua.so LIBS= ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From f014c3d706a93ccc1c5e1579187a1f82379de5e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:30:11 +0200 Subject: [PATCH 36/54] =?UTF-8?q?pua=5Fbla:=20Aviod=20=E2=80=9Cmake:=20--l?= =?UTF-8?q?ibs:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pua_bla/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua_bla/Makefile b/src/modules/pua_bla/Makefile index 75970244aec..9afb91e96c6 100755 --- a/src/modules/pua_bla/Makefile +++ b/src/modules/pua_bla/Makefile @@ -6,9 +6,9 @@ auto_gen= NAME=pua_bla.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From ccfc375ae67a70109d2e25dbf5d21414d201babd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:30:49 +0200 Subject: [PATCH 37/54] =?UTF-8?q?pua=5Fdialoginfo:=20Aviod=20=E2=80=9Cmake?= =?UTF-8?q?:=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warn?= =?UTF-8?q?ing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pua_dialoginfo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua_dialoginfo/Makefile b/src/modules/pua_dialoginfo/Makefile index 18d2e2fc826..69e24729062 100644 --- a/src/modules/pua_dialoginfo/Makefile +++ b/src/modules/pua_dialoginfo/Makefile @@ -7,9 +7,9 @@ NAME=pua_dialoginfo.so LIBS= ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 3b8428f3e3a25b66a735f8c5f196d61fed2cde79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:31:23 +0200 Subject: [PATCH 38/54] =?UTF-8?q?pua=5Freginfo:=20Aviod=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pua_reginfo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua_reginfo/Makefile b/src/modules/pua_reginfo/Makefile index d150c952dc2..7ccaf97b0f9 100644 --- a/src/modules/pua_reginfo/Makefile +++ b/src/modules/pua_reginfo/Makefile @@ -9,9 +9,9 @@ NAME=pua_reginfo.so LIBS= ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From a8a3ca84d84bbf9362bc05ea98f50e40a439ae6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:32:01 +0200 Subject: [PATCH 39/54] =?UTF-8?q?pua=5Fusrloc:=20Aviod=20=E2=80=9Cmake:=20?= =?UTF-8?q?--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pua_usrloc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua_usrloc/Makefile b/src/modules/pua_usrloc/Makefile index bbf9c0bfb4b..d0e5369e780 100644 --- a/src/modules/pua_usrloc/Makefile +++ b/src/modules/pua_usrloc/Makefile @@ -7,9 +7,9 @@ NAME=pua_usrloc.so LIBS= ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 94847efffbd6b62634c37af8c5b2a3ebb2d8bd1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:46:27 +0200 Subject: [PATCH 40/54] =?UTF-8?q?pua=5Fxmpp:=20Aviod=20=E2=80=9Cmake:=20--?= =?UTF-8?q?libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pua_xmpp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pua_xmpp/Makefile b/src/modules/pua_xmpp/Makefile index 8b53b35ebdd..b4e74ec6073 100644 --- a/src/modules/pua_xmpp/Makefile +++ b/src/modules/pua_xmpp/Makefile @@ -7,9 +7,9 @@ NAME= pua_xmpp.so LIBS= ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 8f3974b45b0bdba71bd97103d313d56773847dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:32:42 +0200 Subject: [PATCH 41/54] =?UTF-8?q?regex:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/regex/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/regex/Makefile b/src/modules/regex/Makefile index 3b8758a0392..d5277fa9567 100644 --- a/src/modules/regex/Makefile +++ b/src/modules/regex/Makefile @@ -5,7 +5,7 @@ auto_gen= NAME=regex.so ifeq ($(CROSS_COMPILE),) -PCRE_BUILDER = $(shell \ +PCRE_BUILDER:= $(shell \ if pkg-config --exists libcre; then \ echo 'pkg-config libpcre'; \ else \ From 59afa2a126b1120bb08b691a190b9935406a019d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:18:34 +0200 Subject: [PATCH 42/54] =?UTF-8?q?rls:=20Avoid=20=E2=80=9Cmake:=20--libs-on?= =?UTF-8?q?ly-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/rls/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/rls/Makefile b/src/modules/rls/Makefile index e5c5e6a73b1..7ad0851fb4f 100644 --- a/src/modules/rls/Makefile +++ b/src/modules/rls/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=rls.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From b592d35fc6d1ecb83e8351b34333732d93cf0a84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:33:48 +0200 Subject: [PATCH 43/54] =?UTF-8?q?slack:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/slack/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/slack/Makefile b/src/modules/slack/Makefile index a4f0c1ff814..1fb1e7a0210 100644 --- a/src/modules/slack/Makefile +++ b/src/modules/slack/Makefile @@ -9,7 +9,7 @@ auto_gen= NAME=slack.so ifeq ($(CROSS_COMPILE),) -CURL_BUILDER=$(shell \ +CURL_BUILDER:=$(shell \ if pkg-config --exists libcurl; then \ echo 'pkg-config libcurl'; \ else \ From 6836e93ef97302115c691954699b5a7fd3e056cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:19:30 +0200 Subject: [PATCH 44/54] =?UTF-8?q?systemdops:=20Avoid=20=E2=80=9Cmake:=20--?= =?UTF-8?q?libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20war?= =?UTF-8?q?ning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/systemdops/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/systemdops/Makefile b/src/modules/systemdops/Makefile index 7af1f5efd3a..8bbfdfc2d2f 100644 --- a/src/modules/systemdops/Makefile +++ b/src/modules/systemdops/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=systemdops.so ifeq ($(CROSS_COMPILE),) -SYSTEMD_BUILDER=$(shell \ +SYSTEMD_BUILDER:=$(shell \ if pkg-config --exists libsystemd; then \ echo 'pkg-config libsystemd'; \ fi) From d9f4ecdae0ff4f1f35ea7b0f4e171cc074949bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:34:34 +0200 Subject: [PATCH 45/54] =?UTF-8?q?tls:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/tls/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/tls/Makefile b/src/modules/tls/Makefile index 9112150b8e9..11d3de7d7c8 100644 --- a/src/modules/tls/Makefile +++ b/src/modules/tls/Makefile @@ -16,11 +16,11 @@ LIBSSL_STATIC_SRCLIB ?= no LIBSSL_STATIC_SRCPATH ?= /usr/local/src/openssl ifeq ($(CROSS_COMPILE),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) -CRYPTO_BUILDER=$(shell \ +CRYPTO_BUILDER:=$(shell \ if pkg-config --exists libcrypto; then \ echo 'pkg-config libcrypto'; \ fi) From b92ec52d2ce6d9babaed2b1fd0b3dc447c971878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:01:43 +0200 Subject: [PATCH 46/54] =?UTF-8?q?tlsa:=20Avoid=20=E2=80=9Cmake:=20--libs-o?= =?UTF-8?q?nly-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/tlsa/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/tlsa/Makefile b/src/modules/tlsa/Makefile index 28b5c2692d3..9999d68e15b 100644 --- a/src/modules/tlsa/Makefile +++ b/src/modules/tlsa/Makefile @@ -18,11 +18,11 @@ LIBSSL_STATIC_SRCPATH ?= /usr/local/src/openssl # LIBSSL_STATIC_SRCPATH ?= /usr/lib/x86_64-linux-gnu/ ifeq ($(CROSS_COMPILE),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) -CRYPTO_BUILDER=$(shell \ +CRYPTO_BUILDER:=$(shell \ if pkg-config --exists libcrypto; then \ echo 'pkg-config libcrypto'; \ fi) From 56cdcb025d707e13ecb30fdfb324b18b3113fee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:35:14 +0200 Subject: [PATCH 47/54] =?UTF-8?q?topos=5Fredis:=20Aviod=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs:=20No=20such=20file=20or=20directory=E2=80=9D=20warni?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/topos_redis/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/topos_redis/Makefile b/src/modules/topos_redis/Makefile index 74c5456af1b..c508b4f7354 100644 --- a/src/modules/topos_redis/Makefile +++ b/src/modules/topos_redis/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=topos_redis.so ifeq ($(CROSS_COMPILE),) -HIREDIS_BUILDER = $(shell \ +HIREDIS_BUILDER:= $(shell \ if pkg-config --exists hiredis; then \ echo 'pkg-config hiredis'; \ fi) From 5540d87bcf72fe6b513426001a9ea9771af5d9aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:20:11 +0200 Subject: [PATCH 48/54] =?UTF-8?q?utils:=20Avoid=20=E2=80=9Cmake:=20--libs-?= =?UTF-8?q?only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/utils/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/utils/Makefile b/src/modules/utils/Makefile index add1c86364c..6259d570c9a 100644 --- a/src/modules/utils/Makefile +++ b/src/modules/utils/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=utils.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 4121a178aaa6e843e2c1899385a67c7b0105fb28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:35:46 +0200 Subject: [PATCH 49/54] =?UTF-8?q?uuid:=20Aviod=20=E2=80=9Cmake:=20--libs:?= =?UTF-8?q?=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/uuid/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/uuid/Makefile b/src/modules/uuid/Makefile index 141a350fcb5..5c3f705115b 100644 --- a/src/modules/uuid/Makefile +++ b/src/modules/uuid/Makefile @@ -6,7 +6,7 @@ auto_gen= NAME=uuid.so ifeq ($(CROSS_COMPILE),) -BUILDER = $(shell \ +BUILDER:= $(shell \ if pkg-config --exists uuid; then \ echo 'pkg-config uuid'; \ fi) From 5a7e8a48b70b28430812f6334508f023437cad91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:36:51 +0200 Subject: [PATCH 50/54] =?UTF-8?q?websocket:=20Aviod=20=E2=80=9Cmake:=20--l?= =?UTF-8?q?ibs:=20No=20such=20file=20or=20directory=E2=80=9D=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/websocket/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/websocket/Makefile b/src/modules/websocket/Makefile index 99b1fe1f8c3..9de7fe830e1 100644 --- a/src/modules/websocket/Makefile +++ b/src/modules/websocket/Makefile @@ -9,7 +9,7 @@ NAME=websocket.so EMBEDDED_UTF8_DECODE ?= 0 ifeq ($(CROSS_COMPILE),) -SSL_BUILDER=$(shell \ +SSL_BUILDER:=$(shell \ if pkg-config --exists libssl; then \ echo 'pkg-config libssl'; \ fi) From eea5347131ebbecc4667c25c77ca2977ffc61334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:20:44 +0200 Subject: [PATCH 51/54] =?UTF-8?q?xcap=5Fserver:=20Avoid=20=E2=80=9Cmake:?= =?UTF-8?q?=20--libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D?= =?UTF-8?q?=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/xcap_server/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/xcap_server/Makefile b/src/modules/xcap_server/Makefile index 0afbb2d6436..44a9810d9f3 100644 --- a/src/modules/xcap_server/Makefile +++ b/src/modules/xcap_server/Makefile @@ -9,9 +9,9 @@ auto_gen= NAME=xcap_server.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 6bfcbd6ae41bd142c85909a95df630b848f65899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 22:21:21 +0200 Subject: [PATCH 52/54] =?UTF-8?q?xhttp=5Fpi:=20Avoid=20=E2=80=9Cmake:=20--?= =?UTF-8?q?libs-only-L:=20No=20such=20file=20or=20directory=E2=80=9D=20war?= =?UTF-8?q?nings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/xhttp_pi/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/xhttp_pi/Makefile b/src/modules/xhttp_pi/Makefile index 79654878136..a58988e8c12 100644 --- a/src/modules/xhttp_pi/Makefile +++ b/src/modules/xhttp_pi/Makefile @@ -8,9 +8,9 @@ DEFS += LIBS += ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From 2601810020248407e4839aeb0e6a5eb5b1fcdf12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:37:52 +0200 Subject: [PATCH 53/54] =?UTF-8?q?xmlops:=20Aviod=20=E2=80=9Cmake:=20--libs?= =?UTF-8?q?:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/xmlops/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/xmlops/Makefile b/src/modules/xmlops/Makefile index ec6a4e1fa67..1c54d9b29cf 100644 --- a/src/modules/xmlops/Makefile +++ b/src/modules/xmlops/Makefile @@ -9,9 +9,9 @@ NAME=xmlops.so LIBS= ifeq ($(CROSS_COMPILE),) -PKGCFGTOOL=$(shell which xml2-config) +PKGCFGTOOL:=$(shell which xml2-config) ifeq ($(PKGCFGTOOL),) -PKGCFGTOOL=$(shell \ +PKGCFGTOOL:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi) From aecf9e25ff3e132569b2cc2fd6fca0b9953e4840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Thu, 1 Jun 2023 21:38:32 +0200 Subject: [PATCH 54/54] =?UTF-8?q?xmlrpc:=20Aviod=20=E2=80=9Cmake:=20--libs?= =?UTF-8?q?:=20No=20such=20file=20or=20directory=E2=80=9D=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/xmlrpc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/xmlrpc/Makefile b/src/modules/xmlrpc/Makefile index 7a61d1025d0..e38e4cfcef4 100644 --- a/src/modules/xmlrpc/Makefile +++ b/src/modules/xmlrpc/Makefile @@ -6,9 +6,9 @@ auto_gen= NAME=xmlrpc.so ifeq ($(CROSS_COMPILE),) -XML2CFG=$(shell which xml2-config) +XML2CFG:=$(shell which xml2-config) ifeq ($(XML2CFG),) -XML2CFG=$(shell \ +XML2CFG:=$(shell \ if pkg-config --exists libxml-2.0; then \ echo 'pkg-config libxml-2.0'; \ fi)