1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

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().
This commit is contained in:
Björn Jacke 2009-06-08 22:11:33 +02:00
parent 6dd1f99ec0
commit d2bb72d713
2 changed files with 4 additions and 1 deletions

View File

@ -48,6 +48,9 @@
#ifdef HAVE_UTIL_H
#include <util.h>
#endif
#ifdef HAVE_LIBUTIL_H
#include <libutil.h>
#endif
#include "roken.h"
#include <getarg.h>

View File

@ -52,7 +52,6 @@ AC_CHECK_HEADERS([ \
errno.h \
inttypes.h \
netdb.h \
pty.h \
signal.h \
sys/bswap.h \
sys/file.h \
@ -164,6 +163,7 @@ m4_include(heimdal/cf/find-func-no-libs.m4)
m4_include(heimdal/cf/find-func-no-libs2.m4)
m4_include(heimdal/cf/resolv.m4)
AC_CHECK_HEADERS([pty.h util.h libutil.h])
AC_CHECK_LIB_EXT(util, OPENPTY_LIBS, openpty)