Обсуждение: Patch to enable window size detection code of psql for Solaris platform
Attached ia a patch to enable window size detection code of psql for Solaris
platform.
==== Patch to src/bin/psql/print.c ===========================
*** /tmp/T0gZai3g Mon Jul 30 16:42:01 2001
--- print.c Thu Jul 26 14:15:44 2001
***************
*** 29,34 ****
--- 29,37 ----
#define DEFAULT_PAGER "less"
#endif
+ #ifdef HAVE_TERMIOS_H
+ #include <termios.h>
+ #endif
/*************************/
================================================================
TIOCGWINSZ is defined as follows:
Linux asm/ioctls.h
FreeBSD sys/ttycom.h. This file is included by sys/ioctl.h.
Solaris sys/termios.h
This patch tells print.c to know TIOCGWINSZ on Solaris platform. Same code is
founded in src/bin/psal/common.c.
Kind regards,
Kenji Sugita
sugita@sra.co.jp
Your patch has been added to the PostgreSQL unapplied patches list at:
http://candle.pha.pa.us/cgi-bin/pgpatches
I will try to apply it within the next 48 hours.
>
> Attached ia a patch to enable window size detection code of psql for Solaris
> platform.
>
> ==== Patch to src/bin/psql/print.c ===========================
> *** /tmp/T0gZai3g Mon Jul 30 16:42:01 2001
> --- print.c Thu Jul 26 14:15:44 2001
> ***************
> *** 29,34 ****
> --- 29,37 ----
> #define DEFAULT_PAGER "less"
> #endif
>
> + #ifdef HAVE_TERMIOS_H
> + #include <termios.h>
> + #endif
>
>
> /*************************/
> ================================================================
>
> TIOCGWINSZ is defined as follows:
>
> Linux asm/ioctls.h
> FreeBSD sys/ttycom.h. This file is included by sys/ioctl.h.
> Solaris sys/termios.h
>
> This patch tells print.c to know TIOCGWINSZ on Solaris platform. Same code is
> founded in src/bin/psal/common.c.
>
>
> Kind regards,
>
>
> Kenji Sugita
> sugita@sra.co.jp
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://www.postgresql.org/search.mpl
>
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
Thanks. Patch applied. > > Attached ia a patch to enable window size detection code of psql for Solaris > platform. > > ==== Patch to src/bin/psql/print.c =========================== > *** /tmp/T0gZai3g Mon Jul 30 16:42:01 2001 > --- print.c Thu Jul 26 14:15:44 2001 > *************** > *** 29,34 **** > --- 29,37 ---- > #define DEFAULT_PAGER "less" > #endif > > + #ifdef HAVE_TERMIOS_H > + #include <termios.h> > + #endif > > > /*************************/ > ================================================================ > > TIOCGWINSZ is defined as follows: > > Linux asm/ioctls.h > FreeBSD sys/ttycom.h. This file is included by sys/ioctl.h. > Solaris sys/termios.h > > This patch tells print.c to know TIOCGWINSZ on Solaris platform. Same code is > founded in src/bin/psal/common.c. > > > Kind regards, > > > Kenji Sugita > sugita@sra.co.jp > > ---------------------------(end of broadcast)--------------------------- > TIP 6: Have you searched our list archives? > > http://www.postgresql.org/search.mpl > -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 853-3000 + If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania 19026