5473N/APatch to disable openpty function in expect.
5473N/AThis bug originated in-house. This is a temporary
5473N/Afix until 22706805 is fixed and expect is modified
5473N/Ato use openpty correctly on Solaris and thus
5473N/Awill not be submitted upstream. (see bug 22742744)
5473N/A
5473N/A
5473N/A--- expect5.45/configure.in.orig 2010-08-27 14:51:53.000000000 -0700
5473N/A+++ expect5.45/configure.in 2016-02-17 17:25:12.678863161 -0800
5473N/A@@ -207,7 +207,7 @@
5473N/A
5473N/A ######################################################################
5473N/A # Check for FreeBSD/NetBSD openpty()
5473N/A-unset ac_cv_func_openpty
5473N/A+ac_cv_func_openpty=no
5473N/A
5473N/A AC_CHECK_FUNC(openpty, AC_DEFINE(HAVE_OPENPTY) openpty=1 , openpty=0)
5473N/A if test $openpty -eq 0 ; then