You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2019/09/30 11:45:08 UTC

[commons-daemon] 04/04: Enable building for x64 on command line with VS 2017

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git

commit ee33e801b4e63059110eb019d468ef6f1da5c70c
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Sep 30 12:43:11 2019 +0100

    Enable building for x64 on command line with VS 2017
---
 src/native/windows/include/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/native/windows/include/Makefile.inc b/src/native/windows/include/Makefile.inc
index 4b6b7dc..4ed852c 100644
--- a/src/native/windows/include/Makefile.inc
+++ b/src/native/windows/include/Makefile.inc
@@ -108,7 +108,7 @@ BUILD_CPU=$(PROCESSOR_ARCHITECTURE)
 !IF "$(BUILD_CPU)" == "i386" || "$(BUILD_CPU)" == "x86" || "$(BUILD_CPU)" == "i686"
 CPU=X86
 !ENDIF
-!IF "$(BUILD_CPU)" == "amd64" || "$(BUILD_CPU)" == "x86_64" || "$(BUILD_CPU)" == "x64"
+!IF "$(BUILD_CPU)" == "AMD64" || "$(BUILD_CPU)" == "amd64" || "$(BUILD_CPU)" == "x86_64" || "$(BUILD_CPU)" == "x64"
 CPU=X64
 !ENDIF
 # did we manage to set CPU?