1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

- Update to 0.9.10

PR:		ports/83412
Submitted by:	Marcus Grando <marcus@corp.grupos.com.br>
This commit is contained in:
Pav Lucistnik 2005-07-13 22:00:51 +00:00
parent 1742ace515
commit eb91552ba8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=139149
4 changed files with 6 additions and 25 deletions

View File

@ -8,7 +8,7 @@
#
PORTNAME= l2
PORTVERSION= 0.9.8
PORTVERSION= 0.9.10
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_OSSP}
MASTER_SITE_SUBDIR= lib/${PORTNAME}
@ -20,8 +20,7 @@ COMMENT= A C library for a flexible and sophisticated Unix logging facility
USE_LIBTOOL_VER= 15
INSTALLS_SHLIB= yes
.include <bsd.port.pre.mk>
MAN1= l2-config.1 l2tool.1
MAN3= l2.3
.include "${FILESDIR}/manpages.mk"
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
MD5 (l2-0.9.8.tar.gz) = cbcad08bfaea6c54885d9550963b250e
SIZE (l2-0.9.8.tar.gz) = 407224
MD5 (l2-0.9.10.tar.gz) = c5177e38125ee3b5032332bcee0bf0a5
SIZE (l2-0.9.10.tar.gz) = 413107

View File

@ -1,3 +0,0 @@
MAN1+= l2-config.1
MAN1+= l2tool.1
MAN3+= l2.3

View File

@ -1,15 +0,0 @@
--- l2_ut_format.c.orig Tue Apr 13 19:04:15 2004
+++ l2_ut_format.c Tue Apr 13 19:05:59 2004
@@ -1131,8 +1131,11 @@
va_list apbak;
char *s;
int rv;
-
+#ifdef __amd64__
+ va_copy(apbak,ap);
+#else
apbak = ap;
+#endif
if ((rv = l2_util_vsprintf(NULL, -1, fmt, ap)) == -1)
return NULL;
if ((s = malloc(rv+1)) == NULL)