summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2010-10-19 22:13:12 +0200
committerAlexander Barton <alex@barton.de>2010-10-19 22:13:48 +0200
commit5f2bc55d36810499a4533589acb45839f4721c84 (patch)
tree13fe8e70e1dc3b75e0a6b011f19677b50dedf44e /src
parent1fa5b119950780b8ad2c052d737b8b8f89e0ef2d (diff)
downloadngircd-5f2bc55d36810499a4533589acb45839f4721c84.tar.gz
ngircd-5f2bc55d36810499a4533589acb45839f4721c84.zip
Only use "__attribute__ ((unused))" if GCC >=2.8 is used
At least GCC 2.7.2 doesn't support this attribute.
Diffstat (limited to 'src')
-rw-r--r--src/portab/portab.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/portab/portab.h b/src/portab/portab.h
index 56d4249b..d2f769f1 100644
--- a/src/portab/portab.h
+++ b/src/portab/portab.h
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001-2005 Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -8,8 +8,6 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: portab.h,v 1.22 2005/07/31 20:13:11 alex Exp $
- *
  * Portability functions and declarations (header for libngbportab).
  */
 
@@ -48,7 +46,7 @@
 
 /* compiler features */
 
-#if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
+#if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 7))
 # define PUNUSED(x) __attribute__ ((unused)) x
 # define UNUSED     __attribute__ ((unused))
 #else