diff options
author | martin <martin@pkgsrc.org> | 2005-07-15 07:49:49 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2005-07-15 07:49:49 +0000 |
commit | a2b64a3291500befbf4cbd88520118277a0d7548 (patch) | |
tree | 6043e4af1e6fdaad4bd10205eca17dbd08af5335 /sysutils | |
parent | b8901e9f089937a4373822b7ac58aa1a37c69e9a (diff) | |
download | pkgsrc-a2b64a3291500befbf4cbd88520118277a0d7548.tar.gz |
Avoid functions w/o prototype
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/smartmontools/distinfo | 4 | ||||
-rw-r--r-- | sysutils/smartmontools/patches/patch-ab | 14 |
2 files changed, 13 insertions, 5 deletions
diff --git a/sysutils/smartmontools/distinfo b/sysutils/smartmontools/distinfo index 7ae477a37c3..26b65aeea3d 100644 --- a/sysutils/smartmontools/distinfo +++ b/sysutils/smartmontools/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2005/03/17 16:33:23 wiz Exp $ +$NetBSD: distinfo,v 1.5 2005/07/15 07:49:49 martin Exp $ SHA1 (smartmontools-5.32.tar.gz) = 2af09136578ea59565ad00b3638afe9700ed26a2 RMD160 (smartmontools-5.32.tar.gz) = 6692df8996bc3f6a1b52b10286d92b116874e1cd Size (smartmontools-5.32.tar.gz) = 408224 bytes SHA1 (patch-aa) = 2f22d9bd911ce825c1ca888cceb4535bba606671 -SHA1 (patch-ab) = c82137592289bedbed7b1980de9dd8a3aa6c4d85 +SHA1 (patch-ab) = e719007fdcfb41db8c150a31eeaf1fb91d9bdced diff --git a/sysutils/smartmontools/patches/patch-ab b/sysutils/smartmontools/patches/patch-ab index edcb4c1de13..912a39b6a23 100644 --- a/sysutils/smartmontools/patches/patch-ab +++ b/sysutils/smartmontools/patches/patch-ab @@ -1,8 +1,16 @@ -$NetBSD: patch-ab,v 1.1 2005/03/17 16:33:23 wiz Exp $ +$NetBSD: patch-ab,v 1.2 2005/07/15 07:49:50 martin Exp $ --- os_netbsd.c.orig 2004-04-20 06:53:26.000000000 +0200 -+++ os_netbsd.c -@@ -381,7 +381,7 @@ do_scsi_cmnd_io(int fd, struct scsi_cmnd ++++ os_netbsd.c 2005-07-15 09:37:42.000000000 +0200 +@@ -21,6 +21,7 @@ + #include "scsicmds.h" + #include "utility.h" + #include "os_netbsd.h" ++#include <unistd.h> + + const char *os_XXXX_c_cvsid = "$Id: patch-ab,v 1.2 2005/07/15 07:49:50 martin Exp $" \ + ATACMDS_H_CVSID OS_NETBSD_H_CVSID SCSICMDS_H_CVSID UTILITY_H_CVSID; +@@ -381,7 +382,7 @@ sc.databuf = iop->dxferp; sc.datalen = iop->dxfer_len; sc.senselen = iop->max_sense_len; |