1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: defining PATH_MAX to fix hurd build
Author: Gianfranco Costamagna <locutusofborg@debian.org>
Last-Update: 2017-09-17
Index: boinc/clientgui/BOINCGUIApp.cpp
===================================================================
--- boinc.orig/clientgui/BOINCGUIApp.cpp
+++ boinc/clientgui/BOINCGUIApp.cpp
@@ -53,6 +53,9 @@
#include "sg_BoincSimpleFrame.h"
#include "DlgGenericMessage.h"
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
bool s_bSkipExitConfirmation = false;
|