From 0a62147bcd69263520d20350fd08999ded1eaea1 Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Tue, 27 Jun 2017 08:29:49 +0100 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 6c206b8aa0..d910c422bb 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