diff options
author | jlam <jlam> | 2001-12-05 04:56:20 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-12-05 04:56:20 +0000 |
commit | cd8db0233fc45c618cf66c2f95c8e19c1690ebca (patch) | |
tree | e336ae3ee99379f535138adbb4984712df6d2d88 /graphics/clanlib | |
parent | ce23b3b33b66c0ec92053bf02427b6e4666def22 (diff) | |
download | pkgsrc-cd8db0233fc45c618cf66c2f95c8e19c1690ebca.tar.gz |
Function prototypes should name a return type. Problem noted in pkg/14838
by Robert Elz <kre@munnari.OZ.AU>.
Diffstat (limited to 'graphics/clanlib')
-rw-r--r-- | graphics/clanlib/distinfo | 4 | ||||
-rw-r--r-- | graphics/clanlib/patches/patch-af | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/clanlib/distinfo b/graphics/clanlib/distinfo index 8b76dc101ca..a2c53f7a30f 100644 --- a/graphics/clanlib/distinfo +++ b/graphics/clanlib/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2001/08/29 22:41:15 jlam Exp $ +$NetBSD: distinfo,v 1.7 2001/12/05 04:56:20 jlam Exp $ SHA1 (ClanLib-0.4.4.tar.gz) = 326fb3812bd3c26cd8ecf60d8975c662674ae9a8 Size (ClanLib-0.4.4.tar.gz) = 642836 bytes @@ -7,7 +7,7 @@ SHA1 (patch-ab) = 38acc42d60694482b61853fb14e0460a437a1653 SHA1 (patch-ac) = 383a03b0ecca44a6d3397184d6022a0bb91882da SHA1 (patch-ad) = ea6da825d77090177c2c5c73362fc5caa80181f3 SHA1 (patch-ae) = 2fb537e21cb8e670b492d80a8864b26b44db2ad1 -SHA1 (patch-af) = 0ccbcce72e2a64805fcbccb678e36aefe81cf7fa +SHA1 (patch-af) = 9e34098b5641c9f386b8bcf7da04b43f8b50de39 SHA1 (patch-ag) = d1681ff5d11c06ad4829b91109c6356870a3bfbc SHA1 (patch-ah) = 6947c12c5ea10333d30376a6754791a13fb1746b SHA1 (patch-ai) = 502f2f050ec81618a0fb9b7b5c450adf04f476fa diff --git a/graphics/clanlib/patches/patch-af b/graphics/clanlib/patches/patch-af index 42eddf9e68f..92a8563e600 100644 --- a/graphics/clanlib/patches/patch-af +++ b/graphics/clanlib/patches/patch-af @@ -1,4 +1,4 @@ -$NetBSD: patch-af,v 1.4 2000/12/15 03:24:18 garbled Exp $ +$NetBSD: patch-af,v 1.5 2001/12/05 04:56:21 jlam Exp $ --- Sources/Core/System/Unix/mutex_pthread.cpp.orig Thu Dec 14 18:45:06 2000 +++ Sources/Core/System/Unix/mutex_pthread.cpp Thu Dec 14 18:45:11 2000 @@ -21,7 +21,11 @@ @@ -8,7 +8,7 @@ $NetBSD: patch-af,v 1.4 2000/12/15 03:24:18 garbled Exp $ +#ifndef _PTH_PTHREAD_H_ int pthread_mutexattr_setkind_np(pthread_mutexattr_t *attr, int kind); +#else -+ pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind); ++ int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind); +#endif } |