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-03-14 16:06:24 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-03-14 16:06:24 +0300
commit126a7ab03c389bb8e458aea5868d512dc3b71bc7 (patch)
tree70840f2e3a8fe1b51854cfa66e47fbf7db65cc31 /build
parentdfe39c5861d94f544753ee670021384ef96a6be8 (diff)
.......... [DEV-2113] fixed go build 2
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 12564980369..0945aef5f74 100644
--- a/build/mingw/Makefile
+++ b/build/mingw/Makefile
@@ -20,6 +20,7 @@ OBJS = \
$(OUTPUTDIR)\fatal.o \
$(OUTPUTDIR)\disk.o \
$(OUTPUTDIR)\iprange.o \
+ $(OUTPUTDIR)\zbxhash.o \
$(OUTPUTDIR)\md5.o \
$(OUTPUTDIR)\sysinfo.o \
$(OUTPUTDIR)\vector.o \
@@ -129,6 +130,9 @@ $(OUTPUTDIR)\disk.o: $(TOPDIR)\src\libs\zbxwin32\disk.c
$(OUTPUTDIR)\threads.o: $(TOPDIR)\src\libs\zbxsys\threads.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+$(OUTPUTDIR)\zbxhash.o: $(TOPDIR)\src\libs\zbxhash\zbxhash.c
+ $(CC) $(CFLAGS) -DUNICODE -c $^ -o $@
+
$(OUTPUTDIR)\md5.o: $(TOPDIR)\src\libs\zbxhash\md5.c
$(CC) $(CFLAGS) -DUNICODE -c $^ -o $@