- fix potential 64-bit issue due to missing header

ok ajacoutot@ (MAINTAINER)
This commit is contained in:
jasper 2009-06-16 21:50:01 +00:00
parent 120a387669
commit a4044d506f
2 changed files with 16 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.5 2009/06/06 18:36:43 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.6 2009/06/16 21:50:01 jasper Exp $
COMMENT-main= framework for Multicast DNS Service Discovery
COMMENT-gtk= GUI client utilities for avahi
@ -9,7 +9,7 @@ V= 0.6.25
DISTNAME= avahi-${V}
CATEGORIES= net devel
PKGNAME-main= avahi-${V}p3
PKGNAME-main= avahi-${V}p4
PKGNAME-gtk= avahi-gtk-${V}p0
PKGNAME-qt3= avahi-qt3-${V}p0
PKGNAME-qt4= avahi-qt4-${V}p0

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-avahi-core_fdutil_c,v 1.1 2009/06/16 21:50:01 jasper Exp $
Missing prototype for memset().
--- avahi-core/fdutil.c.orig Tue Jun 16 19:07:15 2009
+++ avahi-core/fdutil.c Tue Jun 16 19:07:35 2009
@@ -27,6 +27,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <assert.h>
+#include <string.h>
#include "fdutil.h"