summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-09-28 14:40:14 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-09-28 14:40:14 (GMT)
commit9ae8234fe5c1fd3b46bc4c89b09ed6342c18b43c (patch)
tree5faa371b73135b263c96214cb4e4eb52cc14ff96 /Source/cmSystemTools.cxx
parentd9e38b32c3ad47ee47f18b52b4321c37d2143c3e (diff)
downloadCMake-9ae8234fe5c1fd3b46bc4c89b09ed6342c18b43c.zip
CMake-9ae8234fe5c1fd3b46bc4c89b09ed6342c18b43c.tar.gz
CMake-9ae8234fe5c1fd3b46bc4c89b09ed6342c18b43c.tar.bz2
BUG: get correct library name
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index d9a20a9..565e8fe 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1199,10 +1199,14 @@ std::string cmSystemTools::CollapseFullPath(const char* in_name)
# ifdef MAXPATHLEN
char resolved_name[MAXPATHLEN];
# else
+# ifdef PATH_MAX
char resolved_name[PATH_MAX];
+# else
+ char resolved_name[5024];
+# endif
# endif
- realpath(in_name, resolved_name);
- return resolved_name;
+ realpath(in_name, resolved_name);
+ return resolved_name;
#endif
}