1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00

- Update to 4.1.7

PR:		ports/79984
Submitted by:	David Thiel <lx@redundancy.redundancy.org> (maintainer)
This commit is contained in:
Pav Lucistnik 2005-04-17 14:25:33 +00:00
parent 076af16c25
commit 6073b6fd91
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=133521
3 changed files with 25 additions and 5 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= osiris
PORTVERSION= 4.1.5
PORTVERSION= 4.1.7
CATEGORIES= security
MASTER_SITES= http://osiris.shmoo.com/data/ \
http://darkambient.net/
@ -19,13 +19,16 @@ OPTIONS= OSIRISMD "Enable to build the management daemon" off \
CLI "Enable to build the management CLI" off
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
--enable-fancy-cli
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
USE_LIBTOOL_VER= 15
USE_RC_SUBR= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline
.endif
.if defined(WITH_OSIRISMD)
PLIST_SUB+= OSIRISMD=""
.else

View File

@ -1,2 +1,2 @@
MD5 (osiris-4.1.5.tar.gz) = 12f28beb5b20421e0b94b0ceda434448
SIZE (osiris-4.1.5.tar.gz) = 1886363
MD5 (osiris-4.1.7.tar.gz) = de2470ebe864ec7a9351568dfac7f8d0
SIZE (osiris-4.1.7.tar.gz) = 1891269

View File

@ -0,0 +1,17 @@
--- src/cli/osiris.c.orig Tue Apr 5 14:37:58 2005
+++ src/cli/osiris.c Sun Apr 17 15:47:40 2005
@@ -2985,11 +2985,13 @@
if( filters == NULL )
{
+ OSI_CMP_FILTER *f;
+
filters = list_new();
/* add a comment filter. */
- OSI_CMP_FILTER *f = osi_malloc( sizeof(OSI_CMP_FILTER) );
+ f = osi_malloc( sizeof(OSI_CMP_FILTER) );
osi_strlcpy( f->exclude, CMP_FILTER_COMMENT, sizeof(f->exclude) );
list_add( filters, f );
}