Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 2 | /* |
| 3 | Copyright 2006, Bernhard Fischer |
| 4 | |
| 5 | Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
| 6 | */ |
| 7 | #ifndef __PLATFORM_H |
| 8 | #define __PLATFORM_H 1 |
| 9 | |
| 10 | /* Convenience macros to test the version of gcc. */ |
| 11 | #undef __GNUC_PREREQ |
| 12 | #if defined __GNUC__ && defined __GNUC_MINOR__ |
| 13 | # define __GNUC_PREREQ(maj, min) \ |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 14 | ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 15 | #else |
| 16 | # define __GNUC_PREREQ(maj, min) 0 |
| 17 | #endif |
| 18 | |
| 19 | /* __restrict is known in EGCS 1.2 and above. */ |
| 20 | #if !__GNUC_PREREQ (2,92) |
| 21 | # ifndef __restrict |
| 22 | # define __restrict /* Ignore */ |
| 23 | # endif |
| 24 | #endif |
| 25 | |
| 26 | /* Define macros for some gcc attributes. This permits us to use the |
| 27 | macros freely, and know that they will come into play for the |
| 28 | version of gcc in which they are supported. */ |
| 29 | |
| 30 | #if !__GNUC_PREREQ (2,7) |
| 31 | # ifndef __attribute__ |
| 32 | # define __attribute__(x) |
| 33 | # endif |
| 34 | #endif |
| 35 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 36 | #undef inline |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 37 | #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 38 | /* it's a keyword */ |
| 39 | #else |
| 40 | # if __GNUC_PREREQ (2,7) |
| 41 | # define inline __inline__ |
| 42 | # else |
| 43 | # define inline |
| 44 | # endif |
| 45 | #endif |
| 46 | |
| 47 | #ifndef __const |
| 48 | # define __const const |
| 49 | #endif |
| 50 | |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 51 | # define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 52 | # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__)) |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 53 | # define ATTRIBUTE_PACKED __attribute__ ((__packed__)) |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 54 | # define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 55 | # if __GNUC_PREREQ (3,0) |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 56 | # define ALWAYS_INLINE __attribute__ ((always_inline)) inline |
Denis Vlasenko | 77f1ec1 | 2007-10-13 03:36:03 +0000 | [diff] [blame] | 57 | /* I've seen a toolchain where I needed __noinline__ instead of noinline */ |
| 58 | # define NOINLINE __attribute__((__noinline__)) |
Denis Vlasenko | 734e5eb | 2007-05-04 21:38:14 +0000 | [diff] [blame] | 59 | # if !ENABLE_WERROR |
| 60 | # define ATTRIBUTE_DEPRECATED __attribute__ ((__deprecated__)) |
Bernhard Reutner-Fischer | 9a33780 | 2007-06-21 10:39:20 +0000 | [diff] [blame] | 61 | # define ATTRIBUTE_UNUSED_RESULT __attribute__ ((warn_unused_result)) |
Denis Vlasenko | 734e5eb | 2007-05-04 21:38:14 +0000 | [diff] [blame] | 62 | # else |
| 63 | # define ATTRIBUTE_DEPRECATED /* n/a */ |
Bernhard Reutner-Fischer | 9a33780 | 2007-06-21 10:39:20 +0000 | [diff] [blame] | 64 | # define ATTRIBUTE_UNUSED_RESULT /* n/a */ |
Denis Vlasenko | 734e5eb | 2007-05-04 21:38:14 +0000 | [diff] [blame] | 65 | # endif |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 66 | # else |
Denis Vlasenko | 77f1ec1 | 2007-10-13 03:36:03 +0000 | [diff] [blame] | 67 | # define ALWAYS_INLINE inline /* n/a */ |
| 68 | # define NOINLINE /* n/a */ |
Bernhard Reutner-Fischer | 51f7ab6 | 2007-04-10 18:40:05 +0000 | [diff] [blame] | 69 | # define ATTRIBUTE_DEPRECATED /* n/a */ |
Bernhard Reutner-Fischer | 9a33780 | 2007-06-21 10:39:20 +0000 | [diff] [blame] | 70 | # define ATTRIBUTE_UNUSED_RESULT /* n/a */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 71 | # endif |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 72 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 73 | /* -fwhole-program makes all symbols local. The attribute externally_visible |
| 74 | forces a symbol global. */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 75 | # if __GNUC_PREREQ (4,1) |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 76 | # define EXTERNALLY_VISIBLE __attribute__(( visibility("default") )); |
| 77 | //__attribute__ ((__externally_visible__)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 78 | # else |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 79 | # define EXTERNALLY_VISIBLE |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 80 | # endif /* GNUC >= 4.1 */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 81 | |
| 82 | /* We use __extension__ in some places to suppress -pedantic warnings |
| 83 | about GCC extensions. This feature didn't work properly before |
| 84 | gcc 2.8. */ |
| 85 | #if !__GNUC_PREREQ (2,8) |
| 86 | # ifndef __extension__ |
| 87 | # define __extension__ |
| 88 | # endif |
| 89 | #endif |
| 90 | |
Bernhard Reutner-Fischer | b5f50ea | 2006-09-12 13:27:55 +0000 | [diff] [blame] | 91 | /* gcc-2.95 had no va_copy but only __va_copy. */ |
| 92 | #if !__GNUC_PREREQ (3,0) |
| 93 | # include <stdarg.h> |
| 94 | # if !defined va_copy && defined __va_copy |
| 95 | # define va_copy(d,s) __va_copy((d),(s)) |
| 96 | # endif |
| 97 | #endif |
| 98 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 99 | /* ---- Endian Detection ------------------------------------ */ |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 100 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 101 | #if (defined __digital__ && defined __unix__) |
| 102 | # include <sex.h> |
| 103 | # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN) |
| 104 | # define __BYTE_ORDER BYTE_ORDER |
Rob Landley | 15d20a0 | 2006-05-29 05:00:44 +0000 | [diff] [blame] | 105 | #elif !defined __APPLE__ |
| 106 | # include <byteswap.h> |
| 107 | # include <endian.h> |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 108 | #endif |
| 109 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 110 | #ifdef __BIG_ENDIAN__ |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 111 | # define BB_BIG_ENDIAN 1 |
| 112 | # define BB_LITTLE_ENDIAN 0 |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 113 | #elif __BYTE_ORDER == __BIG_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 114 | # define BB_BIG_ENDIAN 1 |
| 115 | # define BB_LITTLE_ENDIAN 0 |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 116 | #else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 117 | # define BB_BIG_ENDIAN 0 |
| 118 | # define BB_LITTLE_ENDIAN 1 |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 119 | #endif |
| 120 | |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 121 | #if BB_BIG_ENDIAN |
Rob Landley | 752f0a6 | 2006-05-30 06:28:03 +0000 | [diff] [blame] | 122 | #define SWAP_BE16(x) (x) |
| 123 | #define SWAP_BE32(x) (x) |
| 124 | #define SWAP_BE64(x) (x) |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 125 | #define SWAP_LE16(x) bswap_16(x) |
| 126 | #define SWAP_LE32(x) bswap_32(x) |
| 127 | #define SWAP_LE64(x) bswap_64(x) |
| 128 | #else |
| 129 | #define SWAP_BE16(x) bswap_16(x) |
| 130 | #define SWAP_BE32(x) bswap_32(x) |
| 131 | #define SWAP_BE64(x) bswap_64(x) |
Rob Landley | 752f0a6 | 2006-05-30 06:28:03 +0000 | [diff] [blame] | 132 | #define SWAP_LE16(x) (x) |
| 133 | #define SWAP_LE32(x) (x) |
| 134 | #define SWAP_LE64(x) (x) |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 135 | #endif |
| 136 | |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 137 | /* ---- Networking ------------------------------------------ */ |
| 138 | #ifndef __APPLE__ |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 139 | # include <arpa/inet.h> |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 140 | #else |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 141 | # include <netinet/in.h> |
Rob Landley | dae6aa2 | 2006-03-09 22:39:08 +0000 | [diff] [blame] | 142 | #endif |
| 143 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 144 | #ifndef __socklen_t_defined |
| 145 | typedef int socklen_t; |
| 146 | #endif |
| 147 | |
| 148 | /* ---- Compiler dependent settings ------------------------- */ |
Mike Frysinger | 22876c7 | 2008-02-07 22:10:07 +0000 | [diff] [blame^] | 149 | #if (defined __digital__ && defined __unix__) || defined __APPLE__ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 150 | # undef HAVE_MNTENT_H |
| 151 | #else |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 152 | # define HAVE_MNTENT_H 1 |
| 153 | #endif /* ___digital__ && __unix__ */ |
| 154 | |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 155 | /* linux/loop.h relies on __u64. Make sure we have that as a proper type |
| 156 | * until userspace is widely fixed. */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 157 | #if (defined __INTEL_COMPILER && !defined __GNUC__) || \ |
| 158 | (defined __GNUC__ && defined __STRICT_ANSI__) |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 159 | __extension__ typedef __signed__ long long __s64; |
| 160 | __extension__ typedef unsigned long long __u64; |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 161 | #endif |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 162 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 163 | /*----- Kernel versioning ------------------------------------*/ |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 164 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 165 | |
Bernhard Reutner-Fischer | ed7bb62 | 2006-02-23 14:25:15 +0000 | [diff] [blame] | 166 | /* ---- miscellaneous --------------------------------------- */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 167 | |
Mike Frysinger | b16b5bb | 2006-06-06 06:00:20 +0000 | [diff] [blame] | 168 | #if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 169 | !defined(__dietlibc__) && \ |
| 170 | !defined(_NEWLIB_VERSION) && \ |
| 171 | !(defined __digital__ && defined __unix__) |
Mike Frysinger | b16b5bb | 2006-06-06 06:00:20 +0000 | [diff] [blame] | 172 | # error "Sorry, this libc version is not supported :(" |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 173 | #endif |
| 174 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 175 | /* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */ |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 176 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 177 | #if defined __GLIBC__ || defined __UCLIBC__ \ |
| 178 | || defined __dietlibc__ || defined _NEWLIB_VERSION |
| 179 | #include <features.h> |
| 180 | #define HAVE_FEATURES_H |
| 181 | #include <stdint.h> |
| 182 | #define HAVE_STDINT_H |
| 183 | #else |
| 184 | /* Largest integral types. */ |
| 185 | #if __BIG_ENDIAN__ |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 186 | typedef long intmax_t; |
| 187 | typedef unsigned long uintmax_t; |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 188 | #else |
| 189 | __extension__ |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 190 | typedef long long intmax_t; |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 191 | __extension__ |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 192 | typedef unsigned long long uintmax_t; |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 193 | #endif |
| 194 | #endif |
| 195 | |
Bernhard Reutner-Fischer | c966ba4 | 2007-01-18 10:32:09 +0000 | [diff] [blame] | 196 | /* Size-saving "small" ints (arch-dependent) */ |
| 197 | #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) |
| 198 | /* add other arches which benefit from this... */ |
| 199 | typedef signed char smallint; |
| 200 | typedef unsigned char smalluint; |
| 201 | #else |
| 202 | /* for arches where byte accesses generate larger code: */ |
| 203 | typedef int smallint; |
| 204 | typedef unsigned smalluint; |
| 205 | #endif |
| 206 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 207 | /* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */ |
| 208 | #if (defined __digital__ && defined __unix__) |
| 209 | /* old system without (proper) C99 support */ |
| 210 | #define bool smalluint |
| 211 | #else |
| 212 | /* modern system, so use it */ |
| 213 | #include <stdbool.h> |
| 214 | #endif |
| 215 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 216 | /* Try to defeat gcc's alignment of "char message[]"-like data */ |
| 217 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ |
| 218 | #define ALIGN1 __attribute__((aligned(1))) |
| 219 | #define ALIGN2 __attribute__((aligned(2))) |
| 220 | #else |
| 221 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ |
| 222 | #define ALIGN1 |
| 223 | #define ALIGN2 |
| 224 | #endif |
| 225 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 226 | |
Mike Frysinger | 8840759 | 2006-07-20 19:31:07 +0000 | [diff] [blame] | 227 | /* uclibc does not implement daemon() for no-mmu systems. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 228 | * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably. |
| 229 | * For earlier versions there is no reliable way to check if we are building |
Denis Vlasenko | 9e58921 | 2008-01-24 01:33:42 +0000 | [diff] [blame] | 230 | * for a mmu-less system. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 231 | */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 232 | #if ENABLE_NOMMU || \ |
| 233 | (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \ |
| 234 | __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__) |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 235 | #define BB_MMU 0 |
| 236 | #define BB_NOMMU 1 |
| 237 | #define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 238 | #define USE_FOR_MMU(...) |
| 239 | #else |
| 240 | #define BB_MMU 1 |
| 241 | /* BB_NOMMU is not defined in this case! */ |
| 242 | #define USE_FOR_NOMMU(...) |
| 243 | #define USE_FOR_MMU(...) __VA_ARGS__ |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 244 | #endif |
| 245 | |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 246 | /* Platforms that haven't got dprintf need to implement fdprintf() in |
| 247 | * libbb. This would require a platform.c. It's not going to be cleaned |
| 248 | * out of the tree, so stop saying it should be. */ |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 249 | #if !defined(__dietlibc__) |
| 250 | /* Needed for: glibc */ |
| 251 | /* Not needed for: dietlibc */ |
| 252 | /* Others: ?? (add as needed) */ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 253 | #define fdprintf dprintf |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 254 | #endif |
| 255 | |
| 256 | #if defined(__dietlibc__) |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 257 | static ALWAYS_INLINE char* strchrnul(const char *s, char c) |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 258 | { |
Denis Vlasenko | 7cfecc4 | 2006-12-18 22:32:45 +0000 | [diff] [blame] | 259 | while (*s && *s != c) ++s; |
| 260 | return (char*)s; |
| 261 | } |
Denis Vlasenko | c8e6e35 | 2006-12-18 22:10:24 +0000 | [diff] [blame] | 262 | #endif |
Rob Landley | c020f5f | 2006-05-21 18:28:13 +0000 | [diff] [blame] | 263 | |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 264 | /* Don't use lchown with glibc older than 2.1.x ... uClibc lacks it */ |
Mike Frysinger | 8840759 | 2006-07-20 19:31:07 +0000 | [diff] [blame] | 265 | #if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \ |
| 266 | defined __UC_LIBC__ |
| 267 | # define lchown chown |
| 268 | #endif |
| 269 | |
Bernhard Reutner-Fischer | 4ed1f1d | 2006-05-26 13:34:25 +0000 | [diff] [blame] | 270 | /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */ |
| 271 | /* FIXME: fix tar.c! */ |
| 272 | #ifndef FNM_LEADING_DIR |
| 273 | #define FNM_LEADING_DIR 0 |
| 274 | #endif |
| 275 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 276 | #if (defined __digital__ && defined __unix__) |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 277 | #include <standards.h> |
| 278 | #define HAVE_STANDARDS_H |
| 279 | #include <inttypes.h> |
| 280 | #define HAVE_INTTYPES_H |
| 281 | #define PRIu32 "u" |
Rob Landley | 8fba99f | 2006-05-27 22:08:01 +0000 | [diff] [blame] | 282 | |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 283 | /* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */ |
| 284 | #define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0) |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 285 | |
Rob Landley | 8fba99f | 2006-05-27 22:08:01 +0000 | [diff] [blame] | 286 | #if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET |
| 287 | #define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET) |
| 288 | #endif |
| 289 | #if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY |
| 290 | #define ADJ_FREQUENCY MOD_FREQUENCY |
| 291 | #endif |
| 292 | #if !defined ADJ_TIMECONST && defined MOD_TIMECONST |
| 293 | #define ADJ_TIMECONST MOD_TIMECONST |
| 294 | #endif |
| 295 | #if !defined ADJ_TICK && defined MOD_CLKB |
| 296 | #define ADJ_TICK MOD_CLKB |
| 297 | #endif |
| 298 | |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 299 | #else |
Denis Vlasenko | 0de3c55 | 2007-04-12 12:31:02 +0000 | [diff] [blame] | 300 | #define bb_setpgrp() setpgrp() |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 301 | #endif |
| 302 | |
Rob Landley | 22d26fc | 2006-06-15 15:49:36 +0000 | [diff] [blame] | 303 | #if defined(__linux__) |
| 304 | #include <sys/mount.h> |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 305 | /* Make sure we have all the new mount flags we actually try to use. */ |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 306 | #ifndef MS_BIND |
| 307 | #define MS_BIND (1<<12) |
| 308 | #endif |
| 309 | #ifndef MS_MOVE |
| 310 | #define MS_MOVE (1<<13) |
| 311 | #endif |
| 312 | #ifndef MS_RECURSIVE |
| 313 | #define MS_RECURSIVE (1<<14) |
| 314 | #endif |
| 315 | #ifndef MS_SILENT |
| 316 | #define MS_SILENT (1<<15) |
| 317 | #endif |
| 318 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 319 | /* The shared subtree stuff, which went in around 2.6.15. */ |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 320 | #ifndef MS_UNBINDABLE |
| 321 | #define MS_UNBINDABLE (1<<17) |
| 322 | #endif |
| 323 | #ifndef MS_PRIVATE |
| 324 | #define MS_PRIVATE (1<<18) |
| 325 | #endif |
| 326 | #ifndef MS_SLAVE |
| 327 | #define MS_SLAVE (1<<19) |
| 328 | #endif |
| 329 | #ifndef MS_SHARED |
| 330 | #define MS_SHARED (1<<20) |
| 331 | #endif |
| 332 | |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 333 | |
Rob Landley | 7077ea3 | 2006-06-29 19:00:12 +0000 | [diff] [blame] | 334 | #if !defined(BLKSSZGET) |
| 335 | #define BLKSSZGET _IO(0x12, 104) |
| 336 | #endif |
Rob Landley | 22d26fc | 2006-06-15 15:49:36 +0000 | [diff] [blame] | 337 | #if !defined(BLKGETSIZE64) |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 338 | #define BLKGETSIZE64 _IOR(0x12,114,size_t) |
| 339 | #endif |
Rob Landley | 22d26fc | 2006-06-15 15:49:36 +0000 | [diff] [blame] | 340 | #endif |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 341 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 342 | #endif /* platform.h */ |