diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-31 02:20:59 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-31 02:20:59 +0000 |
commit | 3881cbd2f6ec55db2dfd7fcb84caa732a5465796 (patch) | |
tree | b6e2d10fcd4fe0d9d28ab8c12b23617d4140cedf /src/interfaces/libpq/fe-exec.c | |
parent | a05ed5bc11ceef1ab98bd6cfdb7532266256c98c (diff) | |
download | postgresql-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.c | 5 |
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 |