From: Mats Erik Andersson Date: Wed, 27 Nov 2013 15:20:43 +0000 (+0100) Subject: pty: Activate the signature wrapper of forkpty. X-Git-Tag: snapshot-start~31 X-Git-Url: http://erislabs.net/gitweb/?p=gnulib.git;a=commitdiff_plain;h=54c3ba61dfdf260865f2a6529ab414e24da17cf5 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 --git a/ChangeLog b/ChangeLog index 16443b3d6..612f99acd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 --git a/m4/pty.m4 b/m4/pty.m4 index f8898311d..7184d23d9 100644 --- a/m4/pty.m4 +++ b/m4/pty.m4 @@ -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 @@ AC_DEFUN([gl_FUNC_FORKPTY], 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],