From 66d5513bcc307b46e81c2f11cbe8e3ebcd3d46a8 Mon Sep 17 00:00:00 2001 From: Ricardo Mones Date: Mon, 16 Jun 2014 21:31:57 +0200 Subject: [PATCH] =?utf8?q?Fix=20bug=20#3211=20=E2=80=9CFails=20to=20build?= =?utf8?q?=20in=20Debian=20hurd-i386=20architecture=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/common/utils.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/common/utils.h b/src/common/utils.h index 361419d22..d556b0e0a 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -1,6 +1,6 @@ /* - * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team + * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client + * Copyright (C) 1999-2014 Hiroyuki Yamamoto and the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -48,6 +48,11 @@ # include #endif +/* The Hurd doesn't have this limit */ +#ifndef PATH_MAX + #define PATH_MAX 4196 +#endif + #ifdef G_OS_WIN32 #define fsync _commit -- 2.25.1