diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-04-25 13:28:41 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-04-25 13:28:41 -0700 |
commit | f1158a215b6756f679a8646c66126cf0ef944366 (patch) | |
tree | a39cda1e94c0b426cef49f256dd6860c33d02da1 | |
parent | 822fc8b141dad767ef9ec5a6bfec2682deaa8d0a (diff) | |
parent | 575d56ee680e19a4bd235f549a5a047b517adce0 (diff) | |
download | crosstool-ng-f1158a215b6756f679a8646c66126cf0ef944366.tar.gz crosstool-ng-f1158a215b6756f679a8646c66126cf0ef944366.tar.bz2 crosstool-ng-f1158a215b6756f679a8646c66126cf0ef944366.zip |
Merge pull request #65 from smoofra/gperf
build compat fix for mac os: define offsetof if it's missing
-rw-r--r-- | kconfig/zconf.gperf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kconfig/zconf.gperf b/kconfig/zconf.gperf index c9e690eb..d758a2ad 100644 --- a/kconfig/zconf.gperf +++ b/kconfig/zconf.gperf @@ -7,6 +7,15 @@ %pic %struct-type +%{ +# ifndef offsetof +# include <stddef.h> +# ifndef offsetof +# define offsetof(st, m) ((size_t)(&((st *)0)->m)) +# endif +# endif +%} + struct kconf_id; static struct kconf_id *kconf_id_lookup(register const char *str, register unsigned int len); |