From: Wayne Davison Date: Wed, 28 Apr 2004 17:35:08 +0000 (+0000) Subject: Undefined __attribute__ in some circumstances. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/20bf7f847fdc79d4b823a3da1285809f711776c0 Undefined __attribute__ in some circumstances. --- diff --git a/popt/system.h b/popt/system.h index eac5fb1a..02f05c18 100644 --- a/popt/system.h +++ b/popt/system.h @@ -19,6 +19,14 @@ #include #endif +#if !defined(__GNUC__) || defined(APPLE) +/* Apparently the OS X port of gcc gags on __attribute__. + * + * */ +#define __attribute__(x) + +#endif + #ifdef __NeXT /* access macros are not declared in non posix mode in unistd.h - don't try to use posix on NeXTstep 3.3 ! */