diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:03:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:03:13 +0000 |
commit | 942e137679ef3e07036cc32689ea7c802304cd1d (patch) | |
tree | f7761ea63fa04223a893311587cbd7e574dce522 | |
parent | 3d9256225fe96b06f6e895f693c9b17519758b6c (diff) | |
download | busybox-w32-942e137679ef3e07036cc32689ea7c802304cd1d.tar.gz busybox-w32-942e137679ef3e07036cc32689ea7c802304cd1d.tar.bz2 busybox-w32-942e137679ef3e07036cc32689ea7c802304cd1d.zip |
setup the HAVE_* defines
-rw-r--r-- | e2fsprogs/e2fsbb.h | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/e2fsprogs/e2fsbb.h b/e2fsprogs/e2fsbb.h index ea44f7a1e..f728125ad 100644 --- a/e2fsprogs/e2fsbb.h +++ b/e2fsprogs/e2fsbb.h | |||
@@ -25,7 +25,6 @@ | |||
25 | typedef long errcode_t; | 25 | typedef long errcode_t; |
26 | #define ERRCODE_RANGE 8 | 26 | #define ERRCODE_RANGE 8 |
27 | #define error_message(code) strerror((int) (code & ((1<<ERRCODE_RANGE)-1))) | 27 | #define error_message(code) strerror((int) (code & ((1<<ERRCODE_RANGE)-1))) |
28 | #define initialize_ext2_error_table(x) | ||
29 | 28 | ||
30 | /* NLS crap */ | 29 | /* NLS crap */ |
31 | #define _(x) x | 30 | #define _(x) x |
@@ -37,4 +36,25 @@ typedef long errcode_t; | |||
37 | #define usage() bb_show_usage() | 36 | #define usage() bb_show_usage() |
38 | #define perror(msg) bb_perror_msg(msg) | 37 | #define perror(msg) bb_perror_msg(msg) |
39 | 38 | ||
39 | /* header defines */ | ||
40 | #define HAVE_ERRNO_H 1 | ||
41 | #define HAVE_UNISTD_H 1 | ||
42 | #define HAVE_EXT2_IOCTLS 1 | ||
43 | #define HAVE_STDLIB_H 1 | ||
44 | #define HAVE_SYS_STAT_H 1 | ||
45 | #define HAVE_SYS_TYPES_H 1 | ||
46 | #define HAVE_UNISTD_H 1 | ||
47 | #define HAVE_SYS_IOCTL_H 1 | ||
48 | #define HAVE_SYS_QUEUE_H 1 | ||
49 | #define HAVE_SYS_SOCKET_H 1 | ||
50 | #define HAVE_NETINET_IN_H 1 | ||
51 | #define HAVE_INTTYPES_H 1 | ||
52 | #define HAVE_NET_IF_H 1 | ||
53 | #define HAVE_GETOPT_H 1 | ||
54 | #define HAVE_SYS_RESOURCE_H 1 | ||
55 | #define HAVE_SYS_MOUNT_H 1 | ||
56 | #define HAVE_SYS_TIME_H 1 | ||
57 | #define HAVE_LINUX_FD_H 1 | ||
58 | #define HAVE_MNTENT_H 1 | ||
59 | |||
40 | #endif /* __E2FSBB_H__ */ | 60 | #endif /* __E2FSBB_H__ */ |