diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2021-01-01 12:52:55 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2021-01-01 12:58:17 -0800 |
commit | 9076a631fe331763414a5d323496846d563ccaa0 (patch) | |
tree | 8269d91345a6fadf1768fe556ec0b4e2993a14c6 /src/callproc.c | |
parent | ac8875173ad63c030e003363706d49a87aa85745 (diff) | |
download | emacs-9076a631fe331763414a5d323496846d563ccaa0.tar.gz emacs-9076a631fe331763414a5d323496846d563ccaa0.tar.bz2 emacs-9076a631fe331763414a5d323496846d563ccaa0.zip |
Port to Solaris 10
* configure.ac: Instead of AC_CHECK_HEADER, use AC_COMPILE_IFELSE
with X11/Intrinsic.h when checking for X11/extensions/Xrender.h.
This suppresses a bogus "report a bug to bug-gnu-emacs" diagnostic
from 'configure' in Solaris 10.
(SETUP_SLAVE_PTY): Adjust to recent renaming of forkin to
std_in in callproc.c. Needed on Solaris and Unixware.
* lib-src/Makefile.in (LIB_GETRANDOM, LIBS_ETAGS): New vars,
needed because on Solaris 10 the Gnulib tempname module now needs
the -lrt library for clock_gettime. Throw in the LIB_GETRANDOM
stuff too while we’re at it; from getrandom.m4 it seems to be
needed for MingW.
(LIBS_MOVE, etags_libs): Use them.
* src/callproc.c [SETUP_SLAVE_PTY]: Include sys/stream.h
and sys/stropts.h, for SETUP_SLAVE_PTY’s definiens.
* src/process.c [NEED_BSDTTY]: Don’t include bsdtty.h; hasn’t been
needed in years.
[USG5_4]: Don’t include sys/stream.h or sys/stropts.h; these
directives havbe been moved to callproc.c because the only use of
SETUP_SLAVE_PTY is there now.
Diffstat (limited to 'src/callproc.c')
-rw-r--r-- | src/callproc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c index 7c5863e6ade..8d2a5619eb8 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -30,6 +30,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include "lisp.h" +#ifdef SETUP_SLAVE_PTY +# include <sys/stream.h> +# include <sys/stropts.h> +#endif + #ifdef WINDOWSNT #include <sys/socket.h> /* for fcntl */ #include <windows.h> |