pkgsrc/x11/x11vnc/patches/patch-configure.ac
tnn 93aa5c4773 x11vnc: update to 0.9.15
x11vnc 0.9.15 2018-02-04
  Misc. buffer overflow and memleak fixes.
  Support for OpenSSL 1.1.0.
  Fix for Debian bug #672435.

x11vnc 0.9.14 2015-11-14
  Added support for the X Composite Extension.
  Added XInput 2 multi-pointer support
  Separated x11vnc sources from LibVNCServer.
  The project is now hosted at GitHub.
2018-12-18 15:53:46 +00:00

17 lines
519 B
Text

$NetBSD: patch-configure.ac,v 1.2 2018/12/18 15:53:46 tnn Exp $
* check openpty(3)
--- configure.ac.orig 2018-02-04 21:43:38.000000000 +0000
+++ configure.ac
@@ -511,6 +511,10 @@ case `(uname -sr) 2>/dev/null` in
;;
esac
+AC_CHECK_HEADERS([pty.h libutil.h util.h])
+AH_TEMPLATE(HAVE_OPENPTY, [Define to `1' if you have the `openpty' function.])
+AC_SEARCH_LIBS(openpty, util bsd, [AC_DEFINE(HAVE_OPENPTY)])
+
# Check for rpm SOURCES path
printf "checking for rpm sources path... "
RPMSOURCEDIR="NOT-FOUND"