diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-06-18 01:04:06 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-06-18 01:04:06 +0200 |
commit | a8a58d1c98cfc5ca4918a577acc461bc0588c19b (patch) | |
tree | 53638932fc037e4f652c2ccf2a1f3750417e8717 /src/lib | |
parent | python2 can be used (diff) | |
download | libgamma-a8a58d1c98cfc5ca4918a577acc461bc0588c19b.tar.gz libgamma-a8a58d1c98cfc5ca4918a577acc461bc0588c19b.tar.bz2 libgamma-a8a58d1c98cfc5ca4918a577acc461bc0588c19b.tar.xz |
remove __attribute__ if not using gcc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/fake-quartz-cg.h | 5 | ||||
-rw-r--r-- | src/lib/fake-w32-gdi.h | 4 | ||||
-rw-r--r-- | src/lib/libgamma-error.h | 5 | ||||
-rw-r--r-- | src/lib/libgamma-method.h | 4 |
4 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/fake-quartz-cg.h b/src/lib/fake-quartz-cg.h index 177bcd9..2a4630c 100644 --- a/src/lib/fake-quartz-cg.h +++ b/src/lib/fake-quartz-cg.h @@ -23,6 +23,11 @@ #endif +#ifndef __GNUC__ +# define __attribute__ +#endif + + /* This header file contains some capabilities of * <CoreGraphics/CGDirectDisplay.h> and <CoreGraphics/CGError.h>, * and can be used modify gamma ramps without Mac OS X and Quartz diff --git a/src/lib/fake-w32-gdi.h b/src/lib/fake-w32-gdi.h index a5ce365..8af440e 100644 --- a/src/lib/fake-w32-gdi.h +++ b/src/lib/fake-w32-gdi.h @@ -23,6 +23,10 @@ #endif +#ifndef __GNUC__ +# define __attribute__ +#endif + #include <stdint.h> diff --git a/src/lib/libgamma-error.h b/src/lib/libgamma-error.h index 3549a3d..5d6e300 100644 --- a/src/lib/libgamma-error.h +++ b/src/lib/libgamma-error.h @@ -22,6 +22,11 @@ # error libgamma-error.h should not be included directly, include libgamma.h instead #endif + +#ifndef __GNUC__ +# define __attribute__ +#endif + #include <sys/types.h> diff --git a/src/lib/libgamma-method.h b/src/lib/libgamma-method.h index 43dee35..13eb9d9 100644 --- a/src/lib/libgamma-method.h +++ b/src/lib/libgamma-method.h @@ -23,6 +23,10 @@ #endif +#ifndef __GNUC__ +# define __attribute__ +#endif + #include <stddef.h> #include <stdint.h> |