# HG changeset patch # User Sascha Wilde # Date 1395746739 -3600 # Node ID d47de01d6ad7445fe29d3a8b7f33aed8b8284ea4 # Parent 6d64d7e9fa322e476c3392518e746c10cbc52086 Implemented port_realpath for windows. diff -r 6d64d7e9fa32 -r d47de01d6ad7 common/portpath.c --- a/common/portpath.c Tue Mar 25 12:01:26 2014 +0100 +++ b/common/portpath.c Tue Mar 25 12:25:39 2014 +0100 @@ -28,7 +28,6 @@ #ifndef _WIN32 return realpath(path, NULL); #else - fprintf(stderr, "Windows Suport missing!"); - abort(); + return _fullpath(NULL, path, 0); #endif }