[uClibc-cvs] uClibc/libc/unistd Makefile, 1.37, 1.38 daemon.c, 1.7, 1.8 exec.c, 1.1, 1.2

Erik Andersen andersen at uclibc.org
Fri Jan 16 13:43:27 UTC 2004


Update of /var/cvs/uClibc/libc/unistd
In directory nail:/home/andersen/CVS/uClibc/libc/unistd

Modified Files:
	Makefile daemon.c exec.c 
Log Message:
s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/g


Index: exec.c
===================================================================
RCS file: /var/cvs/uClibc/libc/unistd/exec.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- exec.c	2 Jan 2004 08:44:58 -0000	1.1
+++ exec.c	16 Jan 2004 13:43:23 -0000	1.2
@@ -41,7 +41,7 @@
 extern char *__strchrnul(const char *s, int c);
 
 /**********************************************************************/
-#ifdef __UCLIBC_HAS_MMU__
+#ifdef __ARCH_HAS_MMU__
 
 /* We have an MMU, so use alloca() to grab space for buffers and
  * arg lists. */
@@ -69,7 +69,7 @@
 /**********************************************************************/
 #ifdef L___exec_alloc
 
-#ifndef __UCLIBC_HAS_MMU__
+#ifndef __ARCH_HAS_MMU__
 
 void *__exec_alloc(size_t size)
 {

Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/libc/unistd/Makefile,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- Makefile	12 Jan 2004 11:07:02 -0000	1.37
+++ Makefile	16 Jan 2004 13:43:23 -0000	1.38
@@ -27,7 +27,7 @@
 	fpathconf.c confstr.c pathconf.c swab.c usershell.c \
 	getsubopt.c
 
-ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
+ifeq ($(strip $(ARCH_HAS_MMU)),y)
 	CSRC += daemon.c
 else
 	MOBJ1 += __exec_alloc.o

Index: daemon.c
===================================================================
RCS file: /var/cvs/uClibc/libc/unistd/daemon.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- daemon.c	31 Oct 2002 18:20:09 -0000	1.7
+++ daemon.c	16 Jan 2004 13:43:23 -0000	1.8
@@ -30,7 +30,7 @@
 #include <unistd.h>
 
 /* Note that this file should not be compiled in 
- * unless __UCLIBC_HAS_MMU__ is defined */
+ * unless __ARCH_HAS_MMU__ is defined */
 
 int daemon( int nochdir, int noclose )
 {




More information about the uClibc-cvs mailing list