Update to 6.6

This commit is contained in:
giovanni 2017-12-01 17:10:48 +00:00
parent 3b507ba968
commit b25affa4ad
3 changed files with 6 additions and 18 deletions

View File

@ -1,9 +1,8 @@
# $OpenBSD: Makefile,v 1.35 2017/08/08 06:36:03 jca Exp $
# $OpenBSD: Makefile,v 1.36 2017/12/01 17:10:48 giovanni Exp $
COMMENT= control and monitor storage systems using SMART
DISTNAME= smartmontools-6.5
REVISION = 2
DISTNAME= smartmontools-6.6
CATEGORIES= sysutils
HOMEPAGE= https://www.smartmontools.org/
@ -21,5 +20,6 @@ CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --docdir=${PREFIX}/share/doc/smartmontools \
--with-exampledir=${PREFIX}/share/examples/smartmontools \
--with-libcap-ng=no \
--without-drivedbdir
--without-drivedbdir \
--without-gnupg
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (smartmontools-6.5.tar.gz) = iei7CAEwvGzhSFc7pbuRv+MCNrZLG1u8omUV1LXJRbw=
SIZE (smartmontools-6.5.tar.gz) = 855642
SHA256 (smartmontools-6.6.tar.gz) = UfQ9D7Bk/Mr4I7vmjPDTF9CJX/iVqjU7MzmjsxalMFQ=
SIZE (smartmontools-6.6.tar.gz) = 903847

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-os_openbsd_cpp,v 1.3 2016/07/01 16:51:16 giovanni Exp $
--- os_openbsd.cpp.orig Wed Jun 29 23:52:24 2016
+++ os_openbsd.cpp Wed Jun 29 23:53:37 2016
@@ -132,7 +132,7 @@ get_dev_names(char ***names, const char *prefix)
n++;
}
- void * tmp = (char **)realloc(mp, n * (sizeof(char *)));
+ char ** tmp = (char **)realloc(mp, n * (sizeof(char *)));
if (NULL == tmp) {
pout("Out of memory constructing scan device list\n");
free(mp);