fix following cyrus-sasl update; sasl.h now requires size_t

ok aja@ nigel@
This commit is contained in:
sthen 2012-11-24 09:08:09 +00:00
parent 3ddff4a774
commit 8d589c164e
4 changed files with 39 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.110 2012/09/23 08:08:49 matthieu Exp $
# $OpenBSD: Makefile,v 1.111 2012/11/24 09:08:09 sthen Exp $
COMMENT-main = K Desktop Environment, basic applications
COMMENT-samba = K Desktop Environment, samba support
@ -49,7 +49,7 @@ LIB_DEPENDS-samba = ${LIB_DEPENDS} \
net/samba>=3
REVISION-main = 19
REVISION-main = 20
WANTLIB-main = ${WANTLIB} GL GLU Half Iex IlmImf IlmThread Imath Xcomposite \
Xcursor Xdamage Xdamage Xfixes Xfixes Xft Xi Xinerama Xmu Xrandr Xss \
Xt Xtst Xxf86misc Xxf86vm Xxf86vm asn1 audiofile c com_err crypto drm \

View File

@ -0,0 +1,24 @@
$OpenBSD: patch-kioslave_smtp_smtp_cc,v 1.1 2012/11/24 09:08:09 sthen Exp $
--- kioslave/smtp/smtp.cc.orig Fri Nov 23 21:42:46 2012
+++ kioslave/smtp/smtp.cc Fri Nov 23 21:44:51 2012
@@ -30,6 +30,10 @@
#include <config.h>
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+
#ifdef HAVE_LIBSASL2
extern "C" {
#include <sasl/sasl.h>
@@ -74,9 +78,6 @@ using std::auto_ptr;
#include <stdio.h>
#include <assert.h>
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.73 2012/09/02 15:53:32 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.74 2012/11/24 09:08:09 sthen Exp $
COMMENT = KDE personal information applications
COMMENT-kpilot = KDE interface to sync with Palm Pilot
@ -61,7 +61,7 @@ MODULES = x11/kde devel/gettext
LIB_DEPENDS += x11/kde/libs3
REVISION = 11
REVISION = 12
REVISION-kpilot = 3
WANTLIB += DCOP GL GLU ICE SM X11 Xcursor Xdamage Xext Xfixes

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-kioslaves_sieve_sieve_cpp,v 1.1 2012/11/24 09:08:09 sthen Exp $
--- kioslaves/sieve/sieve.cpp.orig Fri Nov 23 21:54:23 2012
+++ kioslaves/sieve/sieve.cpp Fri Nov 23 21:55:14 2012
@@ -28,6 +28,7 @@
# include <config.h>
#endif
+#include <sys/types.h>
extern "C" {
#include <sasl/sasl.h>
}