# HG changeset patch # User Mats Erik Andersson # Date 1385565643 -3600 # Node ID e7bdef0ff2f9701b8ff77f83e8e88e45a97a77be # Parent f8cf51341857d3828f151956236d5f7fcdf07212 pty: Activate the signature wrapper of forkpty. The intended preprocessor macro HAVE_FORKPTY is never defined, yet `lib/forkpty.c' depends on it. * m4/pty.m4 (gl_FUNC_FORKPTY): At completed analysis, apply AC_DEFINE_UNQUOTED to HAVE_FORKPTY with value $HAVE_FORKPTY for access to wrapper in `lib/forkpty.c'. diff -r f8cf51341857 -r e7bdef0ff2f9 ChangeLog --- a/ChangeLog Wed Nov 27 08:41:15 2013 -0700 +++ b/ChangeLog Wed Nov 27 16:20:43 2013 +0100 @@ -1,3 +1,13 @@ +2013-11-25 Mats Erik Andersson + + pty: Activate the signature wrapper of forkpty. + The intended preprocessor macro HAVE_FORKPTY is + never defined, yet `lib/forkpty.c' depends on it. + + * m4/pty.m4 (gl_FUNC_FORKPTY): At completed analysis, + apply AC_DEFINE_UNQUOTED to HAVE_FORKPTY with value + $HAVE_FORKPTY for access to wrapper in `lib/forkpty.c'. + 2013-11-18 Jim Meyering and Paul Eggert diff -r f8cf51341857 -r e7bdef0ff2f9 m4/pty.m4 --- a/m4/pty.m4 Wed Nov 27 08:41:15 2013 -0700 +++ b/m4/pty.m4 Wed Nov 27 16:20:43 2013 +0100 @@ -1,4 +1,4 @@ -# pty.m4 serial 12 +# pty.m4 serial 13 dnl Copyright (C) 2010-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -72,6 +72,8 @@ dnl The system does not have forkpty. HAVE_FORKPTY=0 fi + AC_DEFINE_UNQUOTED([HAVE_FORKPTY], [$HAVE_FORKPTY], + [Define to 1 if the system has the 'forkpty' function.]) ]) AC_DEFUN([gl_FUNC_OPENPTY],