[Glibc-bsd-commits] r3671 - in trunk/kfreebsd-9/debian: . patches

Robert Millan rmh at alioth.debian.org
Wed Aug 3 12:07:48 UTC 2011


Author: rmh
Date: 2011-08-03 12:07:48 +0000 (Wed, 03 Aug 2011)
New Revision: 3671

Modified:
   trunk/kfreebsd-9/debian/changelog
   trunk/kfreebsd-9/debian/patches/002_maxpathlen.diff
Log:
002_maxpathlen.diff: Fix another FTBFS on hurd-i386.

Modified: trunk/kfreebsd-9/debian/changelog
===================================================================
--- trunk/kfreebsd-9/debian/changelog	2011-08-03 00:38:49 UTC (rev 3670)
+++ trunk/kfreebsd-9/debian/changelog	2011-08-03 12:07:48 UTC (rev 3671)
@@ -1,3 +1,9 @@
+kfreebsd-9 (9.0~svn224609-2) UNRELEASED; urgency=low
+
+  * 002_maxpathlen.diff: Fix another FTBFS on hurd-i386.
+
+ -- Robert Millan <rmh at debian.org>  Wed, 03 Aug 2011 14:06:48 +0200
+
 kfreebsd-9 (9.0~svn224609-1) experimental; urgency=low
 
   * New upstream snapshot.

Modified: trunk/kfreebsd-9/debian/patches/002_maxpathlen.diff
===================================================================
--- trunk/kfreebsd-9/debian/patches/002_maxpathlen.diff	2011-08-03 00:38:49 UTC (rev 3670)
+++ trunk/kfreebsd-9/debian/patches/002_maxpathlen.diff	2011-08-03 12:07:48 UTC (rev 3671)
@@ -1,6 +1,3 @@
-
-Sent to freebsd-hackers (2011-07-07)
-
 --- a/usr.sbin/config/main.c
 +++ b/usr.sbin/config/main.c
 @@ -60,6 +60,10 @@
@@ -40,3 +37,16 @@
  static	struct users {
  	int	u_default;
  	int	u_min;
+--- a/sys/dev/aic7xxx/aicasm/aicasm_scan.l
++++ b/sys/dev/aic7xxx/aicasm/aicasm_scan.l
+@@ -57,6 +57,10 @@
+ #include "aicasm_symbol.h"
+ #include "aicasm_gram.h"
+ 
++#ifndef PATH_MAX
++#define PATH_MAX 4096
++#endif
++
+ /* This is used for macro body capture too, so err on the large size. */
+ #define MAX_STR_CONST 4096
+ static char string_buf[MAX_STR_CONST];




More information about the Glibc-bsd-commits mailing list