Source/JavaScriptCore/jsc.cpp uses PATH_MAX on non-Windows platforms to get the current working directory, but that macro doesn't need to be defined if the system does not have that limit. This breaks the build in the Hurd, and possibly other systems.
Created attachment 275392 [details] Patch
Comment on attachment 275392 [details] Patch adhoc way, but I think it's ok for jsc.cpp since it's just a harness.
(In reply to comment #2) > adhoc way, but I think it's ok for jsc.cpp since it's just a > harness. Right, I chose to do it like this because of that. Thanks!
Committed r198945: <http://trac.webkit.org/changeset/198945>