diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-26 13:34:25 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-26 13:34:25 +0000 |
commit | 4ed1f1d99d35720047a3f525eb1c1ede45734012 (patch) | |
tree | 5c229f04c9bdc053a041c29f9bd6e4238f713d88 | |
parent | 7fca7e3378715ab17b93984b90f6780bf44ea28e (diff) | |
download | busybox-4ed1f1d99d35720047a3f525eb1c1ede45734012.tar.gz |
- add workaround for tar being broken since it uses a non-portable constant.
-rw-r--r-- | include/platform.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index 68cd2cc8e..23adc7b47 100644 --- a/include/platform.h +++ b/include/platform.h @@ -197,6 +197,12 @@ typedef unsigned long long int uintmax_t; /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */ #define fdprintf dprintf +/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */ +/* FIXME: fix tar.c! */ +#ifndef FNM_LEADING_DIR +#define FNM_LEADING_DIR 0 +#endif + /* move to platform.c */ #if (defined __digital__ && defined __unix__) /* use legacy setpgrp(pidt_,pid_t) for now.. */ |