]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Correct Win64 Servername Identification
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 17 May 2011 23:21:00 +0000 (23:21 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 17 May 2011 23:21:00 +0000 (23:21 +0000)
PR: 47418
Submitted by: [Jorge Schrauwen <jorge.schrauwen gmail.com>]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1104624 13f79535-47bb-0310-9956-ffa450edef68

os/win32/os.h

index a01a22213ed6e20771773ae6d7b22700fbf526df..7baa010a4bbcc72fe051a2ee30d86802586a3aa5 100644 (file)
 #include <io.h>
 #include <fcntl.h>
 
+#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.