summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorjoerg <joerg>2012-11-01 19:29:20 +0000
committerjoerg <joerg>2012-11-01 19:29:20 +0000
commitb218361d6bd711ba125c368ed2326fa3bc20b886 (patch)
tree48c36c7547609d285f406d2d36afc47013c50bea /time
parent2eaf2244670621c0dd74d271ea2aa4f922a139d6 (diff)
downloadpkgsrc-b218361d6bd711ba125c368ed2326fa3bc20b886.tar.gz
Fix C99 inline usage.
Diffstat (limited to 'time')
-rw-r--r--time/wmtime/distinfo3
-rw-r--r--time/wmtime/patches/patch-wmgeneral_list.h17
2 files changed, 19 insertions, 1 deletions
diff --git a/time/wmtime/distinfo b/time/wmtime/distinfo
index f2993005f56..d5993f9c366 100644
--- a/time/wmtime/distinfo
+++ b/time/wmtime/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2007/06/12 20:56:55 joerg Exp $
+$NetBSD: distinfo,v 1.7 2012/11/01 19:29:20 joerg Exp $
SHA1 (wmtime-1.0b2.tar.gz) = 2a66762d548b9f91415603e8d6a37cfacb9340ad
RMD160 (wmtime-1.0b2.tar.gz) = f267f75237c111ed336521ca175688a33f1e171a
@@ -6,3 +6,4 @@ Size (wmtime-1.0b2.tar.gz) = 20680 bytes
SHA1 (patch-aa) = 8943b1da225f26110e52c00269e3e0c6a7651404
SHA1 (patch-ab) = e1e4203a219b0a0d539fc4426ec3d5424e9c3962
SHA1 (patch-ac) = 31d864557165692350436e18c1cba61b95027c2c
+SHA1 (patch-wmgeneral_list.h) = d403fc3ff2986c64680f494369dc343c20b6cc20
diff --git a/time/wmtime/patches/patch-wmgeneral_list.h b/time/wmtime/patches/patch-wmgeneral_list.h
new file mode 100644
index 00000000000..92595edaf7e
--- /dev/null
+++ b/time/wmtime/patches/patch-wmgeneral_list.h
@@ -0,0 +1,17 @@
+$NetBSD: patch-wmgeneral_list.h,v 1.1 2012/11/01 19:29:20 joerg Exp $
+
+--- wmgeneral/list.h.orig 2012-10-30 21:09:32.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;