Ver Fonte

dont try to build fork if the arch doesnt support it (like ia64)

Mike Frysinger há 18 anos atrás
pai
commit
5aa97ad5d1
1 ficheiros alterados com 2 adições e 0 exclusões
  1. 2 0
      libc/sysdeps/linux/common/fork.c

+ 2 - 0
libc/sysdeps/linux/common/fork.c

@@ -11,7 +11,9 @@
 #include <unistd.h>
 
 #ifdef __ARCH_HAS_MMU__
+#ifdef __NR_fork
 #define __NR___libc_fork __NR_fork
 _syscall0(pid_t, __libc_fork);
 weak_alias(__libc_fork, fork);
 #endif
+#endif