aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-exec.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-07-31 02:20:59 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-07-31 02:20:59 +0000
commit3881cbd2f6ec55db2dfd7fcb84caa732a5465796 (patch)
treeb6e2d10fcd4fe0d9d28ab8c12b23617d4140cedf /src/interfaces/libpq/fe-exec.c
parenta05ed5bc11ceef1ab98bd6cfdb7532266256c98c (diff)
downloadpostgresql-3881cbd2f6ec55db2dfd7fcb84caa732a5465796.tar.gz
postgresql-3881cbd2f6ec55db2dfd7fcb84caa732a5465796.zip
Added <sys/termios.h> for i386_solaris port
Submitted by: Dr_George_D_Detlefsen <drgeorge@ilt.com>
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r--src/interfaces/libpq/fe-exec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c
index eeb4ae29dc5..618a343afd7 100644
--- a/src/interfaces/libpq/fe-exec.c
+++ b/src/interfaces/libpq/fe-exec.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.9 1996/07/31 02:06:00 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.10 1996/07/31 02:20:59 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,7 +21,8 @@
#include "libpq-fe.h"
#include <signal.h>
#include <sys/ioctl.h>
-#ifdef PORTNAME_sparc_solaris
+#if defined(PORTNAME_sparc_solaris) || \
+ defined(PORTNAME_i386_solaris)
#include <sys/termios.h>
#endif