27 lines
896 B
Diff
27 lines
896 B
Diff
From 0d4ab03c720bdcd5a8966d38d98672a81e914614 Mon Sep 17 00:00:00 2001
|
|
From: Alexpux <alexey.pawlow@gmail.com>
|
|
Date: Sun, 23 Nov 2014 00:13:24 +0300
|
|
Subject: [PATCH 16/27] smtp_server: Add win32 platform files.
|
|
|
|
---
|
|
builds/posix/Makefile.in.inet_server | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/builds/posix/Makefile.in.inet_server b/builds/posix/Makefile.in.inet_server
|
|
index d59b07a39e..ad471fda12 100644
|
|
--- a/builds/posix/Makefile.in.inet_server
|
|
+++ b/builds/posix/Makefile.in.inet_server
|
|
@@ -40,6 +40,9 @@ include $(ROOT)/gen/make.shared.variables
|
|
|
|
SERVER_Files = server_stub.cpp
|
|
SERVER_Sources = $(addprefix remote/, $(SERVER_Files))
|
|
+ifeq ($(PLATFORM),win32)
|
|
+SERVER_Sources += utilities/nbackup/nbkMain.cpp common/UtilSvc.cpp
|
|
+endif
|
|
SERVER_Objects = $(addprefix $(OBJ)/, $(addsuffix .o, $(basename $(SERVER_Sources))))
|
|
|
|
AllObjects = $(SERVER_Objects)
|
|
--
|
|
2.13.0
|
|
|