Index: ossp-pkg/pth/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/pth/ChangeLog,v rcsdiff -q -kk '-r1.528' '-r1.529' -u '/v/ossp/cvs/ossp-pkg/pth/ChangeLog,v' 2>/dev/null --- ChangeLog 2000/08/18 08:47:51 1.528 +++ ChangeLog 2000/08/18 09:24:12 1.529 @@ -21,6 +21,13 @@ Changes between 1.4a3 and 1.4a4 (29-Jul-2000 to xx-Aug-2000) + *) Make --disable-shared the default under Solaris-2/x86, because + it is known to segfault sporadically if Pth is built as a DSO. As + traces showed, it is not a Pth problem, but it looks like a problem with + the dynamic linker on Solaris/x86. The same Solaris versions on SPARC + don't have this problem. + [Ralf S. Engelschall] + *) Let pth_sleep(3) and pth_usleep(3) immediately return if an argument of zero is given. [Ralf S. Engelschall] Index: ossp-pkg/pth/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/pth/aclocal.m4,v rcsdiff -q -kk '-r1.87' '-r1.88' -u '/v/ossp/cvs/ossp-pkg/pth/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2000/07/18 09:02:03 1.87 +++ aclocal.m4 2000/08/18 09:24:12 1.88 @@ -383,6 +383,9 @@ enable_shared="$enableval", if test ".$enable_shared" = .; then enable_shared=yes + case $PLATFORM in + *-pc-solaris2* ) enable_shared=no ;; # Solaris/x86 has problems + esac fi )dnl libtool_flags=''