File: maxpathlen-hurd-0.8.3

package info (click to toggle)
sigscheme 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,860 kB
  • sloc: lisp: 37,498; ansic: 31,021; sh: 4,368; makefile: 737; asm: 333; ruby: 290
file content (19 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Upstream changes by gniibe to workaround building GNU/Hurd
Author: NIIBE Yutaka <gniibe@fsij.org>
Last-Update: 2011-02-15

Index: sigscheme-0.8.5/src/main.c
===================================================================
--- sigscheme-0.8.5.orig/src/main.c	2011-02-15 16:55:01.000000000 +0900
+++ sigscheme-0.8.5/src/main.c	2011-02-15 16:55:02.000000000 +0900
@@ -65,6 +65,10 @@
 #define FEATURE_ID_SIOD "siod"
 #endif
 
+#if !defined(MAXPATHLEN)
+#define MAXPATHLEN 1024 /* GNU Hurd doesn't have MAXPATHLEN */
+#endif
+
 /*=======================================
   File Local Type Definitions
 =======================================*/