X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/8b2869c0d248af7658d90d79aea3ce81b3ccdf62..4fd4b3d667c47599e187ee9b6d452392d4cc1ac4:/popt/system.h diff --git a/popt/system.h b/popt/system.h index b147af71..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 ! */ @@ -69,10 +77,6 @@ char *alloca (); #define xstrdup(_str) strdup(_str) #endif /* HAVE_MCHECK_H && defined(__GNUC__) */ -#if defined(__GNUC__) || !(defined(__hpux) || defined(_hpux) || defined (hpux)) #define UNUSED(x) x __attribute__((__unused__)) -#else -#define UNUSED(x) x -#endif #include "popt.h"