diff options
author | joerg <joerg> | 2012-07-03 17:28:30 +0000 |
---|---|---|
committer | joerg <joerg> | 2012-07-03 17:28:30 +0000 |
commit | 5dfac995efeb34133c9b04d4bd0d80b9a5180a49 (patch) | |
tree | be5c44793fefb9c1e8cff41c9c4f5bba593094a0 /wm | |
parent | f4b2ee0bfa5189509161da49f5f9ae3a4fbba8f9 (diff) | |
download | pkgsrc-5dfac995efeb34133c9b04d4bd0d80b9a5180a49.tar.gz |
Fix build with C99 compiler
Diffstat (limited to 'wm')
-rw-r--r-- | wm/bbrun/distinfo | 3 | ||||
-rw-r--r-- | wm/bbrun/patches/patch-.._wmgeneral_list.h | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/wm/bbrun/distinfo b/wm/bbrun/distinfo index a9358913700..d14a0409ee8 100644 --- a/wm/bbrun/distinfo +++ b/wm/bbrun/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2005/02/23 18:43:53 wiz Exp $ +$NetBSD: distinfo,v 1.5 2012/07/03 17:28:30 joerg Exp $ SHA1 (bbrun-1.3.tar.gz) = 719af622334f6c3186f07da7c9246a8b05381f6c RMD160 (bbrun-1.3.tar.gz) = 7a26b279e5fce1e3476978bd4f4764272a065bb1 Size (bbrun-1.3.tar.gz) = 19423 bytes +SHA1 (patch-.._wmgeneral_list.h) = 8c9d1e5e1b2fd18d6afcdc3740077c72f0e033b0 diff --git a/wm/bbrun/patches/patch-.._wmgeneral_list.h b/wm/bbrun/patches/patch-.._wmgeneral_list.h new file mode 100644 index 00000000000..badc8bde38c --- /dev/null +++ b/wm/bbrun/patches/patch-.._wmgeneral_list.h @@ -0,0 +1,17 @@ +$NetBSD: patch-.._wmgeneral_list.h,v 1.1 2012/07/03 17:28:31 joerg Exp $ + +--- ../wmgeneral/list.h.orig 2012-07-03 11:42:25.000000000 +0000 ++++ ../wmgeneral/list.h +@@ -29,11 +29,7 @@ Boston, MA 02111-1307, USA. */ + #ifndef __LIST_H_ + #define __LIST_H_ + +-#if defined(__GNUC__) && !defined(__STRICT_ANSI__) +-# define INLINE inline +-#else +-# define INLINE +-#endif ++#define INLINE + + typedef struct LinkedList { + void *head; |