From a10fa1414f73cf9a64ca819944d26fdd4545fd2a Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Mon, 13 Mar 2017 10:48:26 +0000 Subject: [PATCH] Define PATH_MAX if it's not already defined =================================================================== Gbp-Pq: Name fix-ftbfs-hurd.patch --- Source/WebCore/platform/text/hyphen/HyphenationLibHyphen.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/WebCore/platform/text/hyphen/HyphenationLibHyphen.cpp b/Source/WebCore/platform/text/hyphen/HyphenationLibHyphen.cpp index 2157db3739..d0130a482b 100644 --- a/Source/WebCore/platform/text/hyphen/HyphenationLibHyphen.cpp +++ b/Source/WebCore/platform/text/hyphen/HyphenationLibHyphen.cpp @@ -45,6 +45,10 @@ #include #endif +#if !defined(PATH_MAX) +#define PATH_MAX 4096 +#endif + namespace WebCore { static const char* const gDictionaryDirectories[] = { -- 2.30.2