From b8f7612eca10322c01b016ba05813d7112c288e5 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Tue, 17 May 2011 23:21:00 +0000 Subject: [PATCH] Correct Win64 Servername Identification PR: 47418 Submitted by: [Jorge Schrauwen ] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1104624 13f79535-47bb-0310-9956-ffa450edef68 --- os/win32/os.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/os/win32/os.h b/os/win32/os.h index a01a22213ed..7baa010a4bb 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -38,7 +38,11 @@ #include #include +#ifdef _WIN64 +#define PLATFORM "Win64" +#else #define PLATFORM "Win32" +#endif /* Define command-line rewriting for this platform, handled by core. * For Windows, this is currently handled inside the WinNT MPM. -- 2.47.2