Hi,
I introduced your suggestion to Term-Size 0.202 distribution. Would you
be so kind to tell me if it works (in case you have available an AIX
machine where you can test it)?
It should be available at this URL
http://search.cpan.org/~ferreira/Term-Size-0.202/
in a few minutes (after PAUSE makes up its work).
Adriano Ferreira (candidate for maintainership of Term::Size)
On Thu Feb 17 05:35:07 2005, guest wrote:
Show quoted text> I tried to compile the module on an AIX 5.2 system, however the
> termios.h file is not in the same place as on most unix systems. If
> you change Size.c:
> from
> 18 #include <termios.h>
>
> to
> 18 #ifdef _AIX
> 19 #include <termios.h>
> 20 #else
> 21 #include <sys/termios.h>
> 22 #endif
>
> it should work.