diff options
author | Paul Fox <pgf@brightstareng.com> | 2005-07-22 19:58:32 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2005-07-22 19:58:32 +0000 |
commit | 14290179688f7aa2d9c57dc4e9987d72a6e8a3b8 (patch) | |
tree | 4fbccd4b880e676e7ee070a7f979ef69909641f6 | |
parent | 37dd6247ddf358dcebafc4f0d5dad5b835dc9b5f (diff) | |
download | busybox-w32-14290179688f7aa2d9c57dc4e9987d72a6e8a3b8.tar.gz busybox-w32-14290179688f7aa2d9c57dc4e9987d72a6e8a3b8.tar.bz2 busybox-w32-14290179688f7aa2d9c57dc4e9987d72a6e8a3b8.zip |
ifdef all of loop.c with CONFIG_FEATURE_MOUNT_LOOP. won't
compile due to CONFIG_FEATURE_MOUNT_LOOP_MAX otherwise. reported
by Stephane Billiart.
-rw-r--r-- | libbb/loop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/loop.c b/libbb/loop.c index 19bbf3674..a4e1ffba6 100644 --- a/libbb/loop.c +++ b/libbb/loop.c | |||
@@ -19,6 +19,7 @@ | |||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifdef CONFIG_FEATURE_MOUNT_LOOP | ||
22 | #include <features.h> | 23 | #include <features.h> |
23 | #if defined (__GLIBC__) && !defined(__UCLIBC__) | 24 | #if defined (__GLIBC__) && !defined(__UCLIBC__) |
24 | #include <linux/posix_types.h> | 25 | #include <linux/posix_types.h> |
@@ -148,6 +149,7 @@ extern char *find_unused_loop_device(void) | |||
148 | } | 149 | } |
149 | return NULL; | 150 | return NULL; |
150 | } | 151 | } |
152 | #endif | ||
151 | 153 | ||
152 | 154 | ||
153 | /* END CODE */ | 155 | /* END CODE */ |