diff options
author | Wayne Davison <wayned@samba.org> | 2004-04-28 17:35:08 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2004-04-28 17:35:08 +0000 |
commit | 20bf7f847fdc79d4b823a3da1285809f711776c0 (patch) | |
tree | 866a55756f799393a5492bddc2e80093be3daf54 /popt | |
parent | b66d00853b71bf852a2dcdecb97348a9ec1818ad (diff) | |
download | rsync-20bf7f847fdc79d4b823a3da1285809f711776c0.tar.gz rsync-20bf7f847fdc79d4b823a3da1285809f711776c0.tar.bz2 rsync-20bf7f847fdc79d4b823a3da1285809f711776c0.zip |
Undefined __attribute__ in some circumstances.
Diffstat (limited to 'popt')
-rw-r--r-- | popt/system.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 <unistd.h> #endif +#if !defined(__GNUC__) || defined(APPLE) +/* Apparently the OS X port of gcc gags on __attribute__. + * + * <http://www.opensource.apple.com/bugs/X/gcc/2512150.html> */ +#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 ! */ |