From 7b6d45f50fa49f4da56cc4ae29758a01ec958792 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 30 Aug 2006 07:56:22 +0000 Subject: gcc.h: make sure __GNUC__ is defined before checking it's value git-svn-id: https://svn.musicpd.org/mpd/trunk@4724 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/gcc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gcc.h') diff --git a/src/gcc.h b/src/gcc.h index bd55f732..c6e53f5b 100644 --- a/src/gcc.h +++ b/src/gcc.h @@ -25,7 +25,7 @@ * example taken from: http://rlove.org/log/2005102601 */ -#if __GNUC__ >= 3 +#if defined(__GNUC__) && (__GNUC__ >= 3) # define mpd_const __attribute__ ((const)) # define mpd_deprecated __attribute__ ((deprecated)) # define mpd_malloc __attribute__ ((malloc)) -- cgit v1.2.3