From: Skip Montanaro Date: Thu, 17 Nov 2005 18:22:01 +0000 (+0000) Subject: backport X-Git-Tag: v2.4.3c1~215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6736b862724133b60fe3fb920d380df854f29558;p=thirdparty%2FPython%2Fcpython.git backport --- diff --git a/README b/README index 303160cd9177..f330eee11cd8 100644 --- a/README +++ b/README @@ -309,6 +309,12 @@ Solaris: When using Sun's C compiler with threads, at least on Solaris 4. Modify the installed GCC specs file, adding -R options into the *link: section. + The complex object fails to compile on Solaris 10 with gcc 3.4 (at + least up to 3.4.3). To work around it, define Py_HUGE_VAL as + HUGE_VAL(), e.g.: + + make CPPFLAGS='-D"Py_HUGE_VAL=HUGE_VAL()" -I. -I$(srcdir)/Include' + Linux: A problem with threads and fork() was tracked down to a bug in the pthreads code in glibc version 2.0.5; glibc version 2.0.7 solves the problem. This causes the popen2 test to fail;