svn commit: trunk/busybox/libbb

vapier at busybox.net vapier at busybox.net
Wed Jun 7 21:47:35 UTC 2006


Author: vapier
Date: 2006-06-07 14:47:34 -0700 (Wed, 07 Jun 2006)
New Revision: 15332

Log:
bb_xdaemon() isnt available on no-mmu systems

Modified:
   trunk/busybox/libbb/bb_xdaemon.c


Changeset:
Modified: trunk/busybox/libbb/bb_xdaemon.c
===================================================================
--- trunk/busybox/libbb/bb_xdaemon.c	2006-06-07 21:37:59 UTC (rev 15331)
+++ trunk/busybox/libbb/bb_xdaemon.c	2006-06-07 21:47:34 UTC (rev 15332)
@@ -6,12 +6,14 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
+
 #include <unistd.h>
 #include "libbb.h"
 
+#ifndef BB_NOMMU
 void bb_xdaemon(int nochdir, int noclose)
 {
 	if (daemon(nochdir, noclose))
 		bb_perror_msg_and_die("daemon");
 }
-
+#endif




More information about the busybox-cvs mailing list