From d2bb72d713d9c339c00536256f44dacf51e57414 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Mon, 8 Jun 2009 22:11:33 +0200 Subject: s4:heimdal: fix build on FreeBSD Patch from Timur I. Bakeyev sent to samba-technical: Heimdal requires openpty() presence. FreeBSD has in in standard libc, so autodetection works, but compilation fails, as declaration of this function is missing. This patch adds proper header detection and inclusion for openpty(). --- source4/heimdal/lib/roken/rkpty.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/heimdal') diff --git a/source4/heimdal/lib/roken/rkpty.c b/source4/heimdal/lib/roken/rkpty.c index 309469722b..ebc3a5d208 100644 --- a/source4/heimdal/lib/roken/rkpty.c +++ b/source4/heimdal/lib/roken/rkpty.c @@ -48,6 +48,9 @@ #ifdef HAVE_UTIL_H #include #endif +#ifdef HAVE_LIBUTIL_H +#include +#endif #include "roken.h" #include -- cgit