Per subject, attachment.

Glibc-2.8 no longer defines ARG_MAX so we have to do it instead.

Please CC me on all replies.
-- 
/PA
diff -NrU5 fish-1.23.0.orig/exec.c fish-1.23.0/exec.c
--- fish-1.23.0.orig/exec.c	2008-06-16 00:16:10.000000000 +0200
+++ fish-1.23.0/exec.c	2008-06-16 00:21:02.000000000 +0200
@@ -11,10 +11,18 @@
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <termios.h>
 #include <unistd.h>
+
+#if defined(_SC_ARG_MAX) 
+# if defined(ARG_MAX) 
+#    undef ARG_MAX 
+# endif 
+# define ARG_MAX sysconf (_SC_ARG_MAX) 
+#endif 
+
 #include <fcntl.h>
 #include <errno.h>
 #include <wchar.h>
 #include <string.h>
 #include <limits.h>

Attachment: signature.asc
Description: This is a digitally signed message part.

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to