You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/mtree/files/mtree-2007.4+glibc-2.8.patch

26 lines
727 B

Index: pkgsrc/pkgtools/libnbcompat/files/nbcompat/limits.h
===================================================================
--- pkgsrc.orig/pkgtools/libnbcompat/files/nbcompat/limits.h
+++ pkgsrc/pkgtools/libnbcompat/files/nbcompat/limits.h
@@ -43,6 +43,11 @@
# include <limits.h>
#endif
+/* Needed for glibc 2.8 */
+#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+#endif
+
/*
* Declare functions and macros that may be missing in <limits.h>.
*/
@@ -77,4 +82,8 @@
# define UID_MAX 2147483647U /* max value for a uid_t (2^31-2) */
#endif
+#if !defined(ARG_MAX) && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8) )
+# define ARG_MAX sysconf(_SC_ARG_MAX)
+#endif
+
#endif /* !_NBCOMPAT_LIMITS_H_ */