You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/10/21 16:35:39 UTC

svn commit: r1534181 - /subversion/trunk/subversion/libsvn_subr/sysinfo.c

Author: rhuijben
Date: Mon Oct 21 14:35:39 2013
New Revision: 1534181

URL: http://svn.apache.org/r1534181
Log:
Following up on r1534102, remove special include for psapi function
definitions.

* subversion/libsvn_subr/sysinfo.c
  (includes): Remove several windows specific includes and rely on apr.h
    to do the right thing.

Suggested by: ivan

Modified:
    subversion/trunk/subversion/libsvn_subr/sysinfo.c

Modified: subversion/trunk/subversion/libsvn_subr/sysinfo.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/sysinfo.c?rev=1534181&r1=1534180&r2=1534181&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/sysinfo.c (original)
+++ subversion/trunk/subversion/libsvn_subr/sysinfo.c Mon Oct 21 14:35:39 2013
@@ -23,14 +23,6 @@
 
 
 
-#ifdef WIN32
-#define WIN32_LEAN_AND_MEAN
-#define PSAPI_VERSION 1
-#include <windows.h>
-#include <psapi.h>
-#include <Ws2tcpip.h>
-#endif
-
 #define APR_WANT_STRFUNC
 #include <apr_want.h>