Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-05-25 19:06:01 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-05-25 19:06:01 +0300
commitf3f16c034678e8ff550abb2352f515340e9796bc (patch)
tree35a6f6808a5f372a627ed404184d3f953777f632 /build
parent1cb02e858a846c9dd5f51b5a8fc989bc92efbc08 (diff)
.......... [DEV-2113] fixed windows build
Diffstat (limited to 'build')
-rw-r--r--build/mingw/Makefile12
-rw-r--r--build/win32/project/Makefile_agent3
-rw-r--r--build/win32/project/Makefile_get3
-rw-r--r--build/win32/project/Makefile_sender3
-rw-r--r--build/win32/project/Makefile_sender_dll3
5 files changed, 24 insertions, 0 deletions
diff --git a/build/mingw/Makefile b/build/mingw/Makefile
index 6ea7ec29f63..f4f2d9982f0 100644
--- a/build/mingw/Makefile
+++ b/build/mingw/Makefile
@@ -15,8 +15,11 @@ WINDRES = windres.exe
OBJS = \
$(OUTPUTDIR)\threads.o \
$(OUTPUTDIR)\str.o \
+ $(OUTPUTDIR)\temp_str.o \
$(OUTPUTDIR)\misc.o \
$(OUTPUTDIR)\time.o \
+ $(OUTPUTDIR)\token.o \
+ $(OUTPUTDIR)\components_strings_representations.o \
$(OUTPUTDIR)\fatal.o \
$(OUTPUTDIR)\disk.o \
$(OUTPUTDIR)\iprange.o \
@@ -109,12 +112,21 @@ $(OUTPUTDIR)\iprange.o: $(TOPDIR)\src\libs\zbxcommon\iprange.c
$(OUTPUTDIR)\str.o: $(TOPDIR)\src\libs\zbxstr\str.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+$(OUTPUTDIR)\temp_str.o: $(TOPDIR)\src\libs\zbxcommon\temp_str.c
+ $(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+
$(OUTPUTDIR)\file.o: $(TOPDIR)\src\libs\zbxcommon\file.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
$(OUTPUTDIR)\time.o: $(TOPDIR)\src\libs\zbxcommon\time.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+$(OUTPUTDIR)\token.o: $(TOPDIR)\src\libs\zbxcommon\token.c
+ $(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+
+$(OUTPUTDIR)\components_strings_representations.o: $(TOPDIR)\src\libs\zbxcommon\components_strings_representations.c
+ $(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+
$(OUTPUTDIR)\tls_version.o: $(TOPDIR)\src\libs\zbxcrypto\tls_version.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
diff --git a/build/win32/project/Makefile_agent b/build/win32/project/Makefile_agent
index 0f3004702ce..4e7e1f14f55 100644
--- a/build/win32/project/Makefile_agent
+++ b/build/win32/project/Makefile_agent
@@ -41,8 +41,11 @@ OBJS = \
..\..\..\src\libs\zbxcommon\iprange.o \
..\..\..\src\libs\zbxcommon\misc.o \
..\..\..\src\libs\zbxstr\str.o \
+ ..\..\..\src\libs\zbxcommon\temp_str.o \
..\..\..\src\libs\zbxcommon\file.o \
..\..\..\src\libs\zbxcommon\time.o \
+ ..\..\..\src\libs\zbxcommon\token.o \
+ ..\..\..\src\libs\zbxcommon\components_strings_representations.o \
..\..\..\src\libs\zbxcommshigh\commshigh.o \
..\..\..\src\libs\zbxcomms\comms.o \
..\..\..\src\libs\zbxcomms\telnet.o \
diff --git a/build/win32/project/Makefile_get b/build/win32/project/Makefile_get
index 64ece79e383..54c9016a5ec 100644
--- a/build/win32/project/Makefile_get
+++ b/build/win32/project/Makefile_get
@@ -33,7 +33,10 @@ OBJS = \
..\..\..\src\libs\zbxcommon\iprange.o \
..\..\..\src\libs\zbxcommon\misc.o \
..\..\..\src\libs\zbxstr\str.o \
+ ..\..\..\src\libs\zbxcommon\temp_str.o \
..\..\..\src\libs\zbxcommon\time.o \
+ ..\..\..\src\libs\zbxcommon\token.o \
+ ..\..\..\src\libs\zbxcommon\components_strings_representations.o \
..\..\..\src\libs\zbxcommshigh\commshigh.o \
..\..\..\src\libs\zbxcomms\comms.o \
..\..\..\src\libs\zbxcompress\compress.o \
diff --git a/build/win32/project/Makefile_sender b/build/win32/project/Makefile_sender
index bdda8f935a2..50461b6f55a 100644
--- a/build/win32/project/Makefile_sender
+++ b/build/win32/project/Makefile_sender
@@ -32,7 +32,10 @@ OBJS = \
..\..\..\src\libs\zbxcommon\iprange.o \
..\..\..\src\libs\zbxcommon\misc.o \
..\..\..\src\libs\zbxstr\str.o \
+ ..\..\..\src\libs\zbxcommon\temp_str.o \
..\..\..\src\libs\zbxcommon\time.o \
+ ..\..\..\src\libs\zbxcommon\token.o \
+ ..\..\..\src\libs\zbxcommon\components_strings_representations.o \
..\..\..\src\libs\zbxcommshigh\commshigh.o \
..\..\..\src\libs\zbxcomms\comms.o \
..\..\..\src\libs\zbxcompress\compress.o \
diff --git a/build/win32/project/Makefile_sender_dll b/build/win32/project/Makefile_sender_dll
index 3dba0749e4f..7e2b692e990 100644
--- a/build/win32/project/Makefile_sender_dll
+++ b/build/win32/project/Makefile_sender_dll
@@ -38,6 +38,9 @@ OBJS = \
..\..\..\src\libs\zbxcommon\iprange.o \
..\..\..\src\libs\zbxcommon\misc.o \
..\..\..\src\libs\zbxstr\str.o \
+ ..\..\..\src\libs\zbxcommon\temp_str.o \
+ ..\..\..\src\libs\zbxcommon\token.o \
+ ..\..\..\src\libs\zbxcommon\components_strings_representations.o \
..\..\..\src\libs\zbxcommon\time.o \
..\..\..\src\libs\zbxcommshigh\commshigh.o \
..\..\..\src\libs\zbxcomms\comms.o \