From: William A. Rowe Jr Date: Tue, 17 May 2011 23:21:00 +0000 (+0000) Subject: Correct Win64 Servername Identification X-Git-Tag: 2.3.13~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8f7612eca10322c01b016ba05813d7112c288e5;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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.