# HG changeset patch # User Aidan Kehoe # Date 1284818634 -3600 # Node ID dd2976af8783fb6a2dead2e09ede9e6bc9aec617 # Parent 5a9aa6c40c9b682671c25ae15f004d12ab9278f9 Add some missing #includes, termcap.c, hopefully fixing Adam Sjoegren's build. 2010-09-18 Aidan Kehoe * termcap.c: Add a couple of missing includes here, which should fix builds that use this file. (I have no access to such builds, but Mats' buildbot shows output that indicates they fail at link time since DEVICE_BAUD_RATE and IS_DIRECTORY_SEP are available.) diff -r 5a9aa6c40c9b -r dd2976af8783 src/ChangeLog --- a/src/ChangeLog Sat Sep 18 14:54:45 2010 +0100 +++ b/src/ChangeLog Sat Sep 18 15:03:54 2010 +0100 @@ -1,3 +1,11 @@ +2010-09-18 Aidan Kehoe + + * termcap.c: + Add a couple of missing includes here, which should fix builds + that use this file. (I have no access to such builds, but Mats' + buildbot shows output that indicates they fail at link time since + DEVICE_BAUD_RATE and IS_DIRECTORY_SEP are available.) + 2010-09-18 Aidan Kehoe * fns.c (Freduce): diff -r 5a9aa6c40c9b -r dd2976af8783 src/termcap.c --- a/src/termcap.c Sat Sep 18 14:54:45 2010 +0100 +++ b/src/termcap.c Sat Sep 18 15:03:54 2010 +0100 @@ -25,7 +25,10 @@ #ifdef emacs #include #include "lisp.h" /* For encapsulated open, close, read */ -#include "device.h" /* For DEVICE_BAUD_RATE */ +#include "device.h" +#include "device-impl.h" /* For DEVICE_BAUD_RATE */ +#include "sysfile.h" +#include "process.h" #else /* not emacs */ #include