view sources/patches/squashfs-tools-4.0-uclibc-get_nprocs.patch @ 928:0291e9591d18

Update downloads/binaries/README
author Rob Landley <rob@landley.net>
date Tue, 08 Dec 2009 20:22:53 -0600
parents 4e798d7aa5f9
children
line wrap: on
line source

uclibc does not have get_nprocs() so build of squashfs host tool fails

--- a/squashfs-tools/mksquashfs.c	Wed Dec  2 10:30:31 2009
+++ b/squashfs-tools/mksquashfs.c	Wed Dec  2 10:31:34 2009
@@ -3705,7 +3705,7 @@
 			processors = 1;
 		}
 #else
-		processors = get_nprocs();
+		processors = sysconf(_SC_NPROCESSORS_ONLN);
 #endif
 	}
 
--- a/squashfs-tools/unsquashfs.c	Wed Dec  2 10:30:31 2009
+++ b/squashfs-tools/unsquashfs.c	Wed Dec  2 10:31:34 2009
@@ -1811,7 +1811,7 @@
 			processors = 1;
 		}
 #else
-		processors = get_nprocs();
+		processors = sysconf(_SC_NPROCESSORS_ONLN);
 #endif
 	}