Re: Compile PTH on AIX

2011-09-23 Thread beppecosta
No. I rebuilt the previous version. omgparticle wrote: did you ever come up with a solution to this? -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p32503856.html Sent from the GnuPG - User mailing list archive at Nabble.com

Re: Compile PTH on AIX

2011-09-23 Thread omgparticle
did you ever come up with a solution to this? -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p32503854.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users mailing list Gnupg-users

Re: Compile PTH on AIX

2010-06-17 Thread beppecosta
8192 #error FD_SETSIZE is larger than what GNU Pth can handle. #endif #endif -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28912285.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users

Re: Compile PTH on AIX

2010-06-16 Thread Werner Koch
On Tue, 18 May 2010 08:57, beppeco...@yahoo.it said: We understand that the problem is about FDSETSIZE. PTH has been configured and compiled --with-fdsetsize=8192 Which should have installed a pth.h file with the test #if defined(FD_SETSIZE) #if FD_SETSIZE 8192 #error FD_SETSIZE is

Re: Compile PTH on AIX

2010-06-16 Thread beppecosta
/* check if the user requests a bigger FD_SETSIZE . #if defined(FD_SETSIZE) . -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28902331.html Sent from the GnuPG - User mailing list archive at Nabble.com

Re: Compile PTH on AIX

2010-06-16 Thread Werner Koch
On Wed, 16 Jun 2010 14:39, beppeco...@yahoo.it said: /* check if the user requests a bigger FD_SETSIZE . #if defined(FD_SETSIZE) . The next 2 is more important; the one below /usr/local should have a #if FD_SETSIZE 8192 No? Then you did not install pth properly or gpg does not use

Re: Compile PTH on AIX

2010-05-18 Thread beppecosta
in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28592272.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users mailing list Gnupg-users@gnupg.org http://lists.gnupg.org/mailman/listinfo/gnupg-users

Re: Compile PTH on AIX

2010-05-11 Thread beppecosta
. *** Thanks. Giuseppe. -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28523361.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users

Re: Compile PTH on AIX

2010-05-11 Thread Werner Koch
On Tue, 11 May 2010 14:15, beppeco...@yahoo.it said: checking for PTH - version = 1.3.7... yes checking whether PTH installation is sane... no Please look into config.log and locate the above is sane check. It shows the actual test program run etc.

Re: Compile PTH on AIX

2010-05-11 Thread beppecosta
() | { | pth_init (); | ; | return 0; | } configure:8022: result: no -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28524172.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users

Re: Compile PTH on AIX

2010-05-06 Thread beppecosta
in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28470466.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users mailing list Gnupg-users@gnupg.org http://lists.gnupg.org/mailman/listinfo/gnupg-users

Re: Compile PTH on AIX

2010-05-06 Thread beppecosta
in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28476011.html Sent from the GnuPG - User mailing list archive at Nabble.com. ___ Gnupg-users mailing list Gnupg-users@gnupg.org http://lists.gnupg.org/mailman/listinfo/gnupg-users

Compile PTH on AIX

2010-05-05 Thread beppecosta
I'm trying to compile pth-2.0.7 on AIX (as prerequisite for GnuPG 2.0.15). Configure runs fine while make exits with this error: ./shtool scpp -o pth_p.h -t pth_p.h.in -Dcpp -Cintern -M '==#==' pth_compat.c pth_debug.c pth_syscall.c pth_errno.c pth_ring.c pth_m ctx.c pth_uctx.c pth_clean.c

Re: Compile PTH on AIX

2010-05-05 Thread Werner Koch
On Tue, 4 May 2010 14:50, beppeco...@yahoo.it said: pth.h:93:2: error: #error FD_SETSIZE is larger than what GNU Pth can handle. I ran a simple utility check that says: FD_SETSIZE=65534 You may try to configure it this way: ./configure --with-fdsetsize=65536 Salam-Shalom,

Re: Compile PTH on AIX

2010-05-05 Thread beppecosta
checking for default value of FD_SETSIZE... 1024 configure: error: invalid FD_SETSIZE specified -- allowed: 10- --- Thanks. -- View this message in context: http://old.nabble.com/Compile-PTH-on-AIX-tp28446986p28462645.html Sent from the GnuPG - User mailing

Re: Compile PTH on AIX

2010-05-05 Thread Newton Hammet
Maybe since they tell us what is allowed (10-) maybe something like: ./configure --with-fdsetsize=8192 would be within the limits plus respecting an implied bias towards powers of 2. -Newton beppecosta wrote: You may try to configure it this way: ./configure