From: Bernhard Reutner-Fischer Date: Fri, 26 May 2006 13:34:25 +0000 (-0000) Subject: - add workaround for tar being broken since it uses a non-portable constant. X-Git-Tag: 1_2_0~301 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4ed1f1d99d35720047a3f525eb1c1ede45734012;p=oweals%2Fbusybox.git - add workaround for tar being broken since it uses a non-portable constant. --- 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.. */