File: 40-fix-FTBFS-Hurd.patch

package info (click to toggle)
easyh10 1.5-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,444 kB
  • sloc: ansic: 9,046; sh: 8,387; makefile: 77
file content (18 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: define PATH_MAX variable to fix a FTBFS in Hurd.
Author: Allan Dixon Jr. <allandixonjr@gmail.com>
Last-Update: 2016-10-09
Index: easyh10-1.5/include/os.h
===================================================================
--- easyh10-1.5.orig/include/os.h
+++ easyh10-1.5/include/os.h
@@ -3,6 +3,10 @@
 
 #include <stdio.h>
 
+#if defined(__GNU__) && !defined(MAX_PATH)
+#define PATH_MAX 1024
+#endif
+
 #if		defined(WIN32) || defined(OS2)
 typedef unsigned char	uint8_t;
 typedef unsigned int	uint32_t;