diff options
author | joerg <joerg@pkgsrc.org> | 2012-06-15 18:47:45 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-06-15 18:47:45 +0000 |
commit | c888f17a2a135d4b84684fb08cef85a154656868 (patch) | |
tree | fb0075c901b6ed0d06243241ff5b3d78164ce8fb /databases/yap2lc | |
parent | 40c301b33f1ad1ada712ad0ae62cb40fa2cf697e (diff) | |
download | pkgsrc-c888f17a2a135d4b84684fb08cef85a154656868.tar.gz |
Fix build with C99 compilers.
Diffstat (limited to 'databases/yap2lc')
-rw-r--r-- | databases/yap2lc/distinfo | 3 | ||||
-rw-r--r-- | databases/yap2lc/patches/patch-yap2lc.h | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/databases/yap2lc/distinfo b/databases/yap2lc/distinfo index dae771442c6..7e4876430a9 100644 --- a/databases/yap2lc/distinfo +++ b/databases/yap2lc/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2010/06/02 12:23:47 adam Exp $ +$NetBSD: distinfo,v 1.3 2012/06/15 18:47:45 joerg Exp $ SHA1 (yap2lc-0.5.9.tar.gz) = c63b36ec5068793b53c0a84db207209fc30be277 RMD160 (yap2lc-0.5.9.tar.gz) = c5538663917bd46dbda1e71834a8ccf145bbb4af Size (yap2lc-0.5.9.tar.gz) = 58651 bytes +SHA1 (patch-yap2lc.h) = 9921b174788d4da7d359d9dbc8e744e6e2e319ef diff --git a/databases/yap2lc/patches/patch-yap2lc.h b/databases/yap2lc/patches/patch-yap2lc.h new file mode 100644 index 00000000000..d9647b8f9f7 --- /dev/null +++ b/databases/yap2lc/patches/patch-yap2lc.h @@ -0,0 +1,17 @@ +$NetBSD: patch-yap2lc.h,v 1.1 2012/06/15 18:47:45 joerg Exp $ + +--- yap2lc.h.orig 2012-06-15 14:41:48.000000000 +0000 ++++ yap2lc.h +@@ -161,10 +161,10 @@ sanity_check(struct passwd *pwd); + #endif + + #if HAVE_SHADOW_H == 1 +-inline void ++void + fillvar(u_long pos, struct passwd *pwd, struct spwd *shadow); + #else +-inline void ++void + fillvar(u_long pos, struct passwd *pwd); + #endif + |