commit | d627667b3111798947b13f4288c2e47ba5bd5e7b | [log] [tgz] |
---|---|---|
author | Adam Tkac <atkac@redhat.com> | Fri Oct 29 12:57:35 2010 +0000 |
committer | Adam Tkac <atkac@redhat.com> | Fri Oct 29 12:57:35 2010 +0000 |
tree | 338d068bd27201e85a54045958ee9e92585e414d | |
parent | 21779fd5e79ceeb5de91665552d7f0cec49c5e79 [diff] [blame] |
[Bugfix] Don't compile gethomedir function on WIN32 git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4178 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/os/os.cxx b/common/os/os.cxx index 8d24875..5d41055 100644 --- a/common/os/os.cxx +++ b/common/os/os.cxx
@@ -20,6 +20,7 @@ #include <config.h> #endif +#ifndef WIN32 #include <os/os.h> #include <assert.h> @@ -62,3 +63,5 @@ return 0; } +#endif +