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-06-22 10:34:11 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-06-22 10:34:11 +0300
commitb77aea69ec2ce3c2d54445808b1c09a9dd2142ba (patch)
tree48515d6abf7bb26ee16a24b018a5baf7025263cc /build
parent7ea3aa11a52ddbb7a9e65fdb5384fe999af5df51 (diff)
.......... [DEV-2113] fixed sender build
Diffstat (limited to 'build')
-rw-r--r--build/mingw/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/build/mingw/Makefile b/build/mingw/Makefile
index 1a5167375a8..6988e29ad7d 100644
--- a/build/mingw/Makefile
+++ b/build/mingw/Makefile
@@ -14,6 +14,7 @@ WINDRES = windres.exe
OBJS = \
$(OUTPUTDIR)\threads.o \
+ $(OUTPUTDIR)\interval.o \
$(OUTPUTDIR)\num.o \
$(OUTPUTDIR)\str.o \
$(OUTPUTDIR)\temp_str.o \
@@ -110,6 +111,9 @@ $(OUTPUTDIR)\misc.o: $(TOPDIR)\src\libs\zbxcommon\misc.c
$(OUTPUTDIR)\iprange.o: $(TOPDIR)\src\libs\zbxcommon\iprange.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+$(OUTPUTDIR)\interval.o: $(TOPDIR)\src\libs\zbxexpr\interval.c
+ $(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+
$(OUTPUTDIR)\num.o: $(TOPDIR)\src\libs\zbxnum\num.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@