aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-26 13:34:25 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-26 13:34:25 +0000
commit4ed1f1d99d35720047a3f525eb1c1ede45734012 (patch)
tree5c229f04c9bdc053a041c29f9bd6e4238f713d88
parent7fca7e3378715ab17b93984b90f6780bf44ea28e (diff)
downloadbusybox-w32-4ed1f1d99d35720047a3f525eb1c1ede45734012.tar.gz
busybox-w32-4ed1f1d99d35720047a3f525eb1c1ede45734012.tar.bz2
busybox-w32-4ed1f1d99d35720047a3f525eb1c1ede45734012.zip
- add workaround for tar being broken since it uses a non-portable constant.
-rw-r--r--include/platform.h6
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;
197/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */ 197/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
198#define fdprintf dprintf 198#define fdprintf dprintf
199 199
200/* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
201/* FIXME: fix tar.c! */
202#ifndef FNM_LEADING_DIR
203#define FNM_LEADING_DIR 0
204#endif
205
200/* move to platform.c */ 206/* move to platform.c */
201#if (defined __digital__ && defined __unix__) 207#if (defined __digital__ && defined __unix__)
202/* use legacy setpgrp(pidt_,pid_t) for now.. */ 208/* use legacy setpgrp(pidt_,pid_t) for now.. */