From 49f31dbacf561fcce3b40733b809f07e06a382cc Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 6 Mar 2010 14:45:49 +0000 Subject: [PATCH] - Fixed bug #50358 (Compile failure compiling ext/phar/util.lo) --- ext/phar/tar.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/phar/tar.h b/ext/phar/tar.h index 6a38faa0b76..2532c61984a 100644 --- a/ext/phar/tar.h +++ b/ext/phar/tar.h @@ -24,8 +24,10 @@ # define PHAR_TAR_PACK #elif defined(__sgi) # define PHAR_TAR_PACK -#else +#elif defined(__GNUC__) # define PHAR_TAR_PACK __attribute__((__packed__)) +#else +# define PHAR_TAR_PACK #endif #if defined(__sgi)