Re: How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-21 Thread Lawrence D'Oliveiro
In message fc58e391-7979-4220-b6c9- a06c23ee4...@21g2000vbk.googlegroups.com, henning.vonbar...@arcor.de wrote: I'm used to configure; make; make install, which usually works well on other platforms... It's often worthwhile to try ./configure --help and see if any of the options might be

Re: How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-19 Thread henning . vonbargen
Daniel: What do you get with: import thread thread.start_new_thread(int, ('1',2)) This results in the same error message: thread.error: can't start new thread Aahz: You probably want to start by figuring out which threading library is being used -- Python normally wants Posix threads, but

Re: How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-19 Thread Aahz
In article fc58e391-7979-4220-b6c9-a06c23ee4...@21g2000vbk.googlegroups.com, henning.vonbar...@arcor.de wrote: Aahz: You probably want to start by figuring out which threading library is being used -- Python normally wants Posix threads, but IIRC, that's not the default on HP-UX, and you may

Re: How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-13 Thread henning . vonbargen
New info: The problem is not related to the specific program - it is definitely a build problem, as the following test shows: Python 2.6.2 (r262:71600, Apr 28 2009, 17:38:15) [GCC 4.2.3] on hp-ux11 Type help, copyright, credits or license for more information. import threading threading._test()

Re: How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-13 Thread Aahz
In article 51d1dd3f-322d-47fa-9d44-75b92c6ef...@e20g2000vbc.googlegroups.com, henning.vonbar...@arcor.de wrote: New info: The problem is not related to the specific program - it is definitely a build problem, as the following test shows: Python 2.6.2 (r262:71600, Apr 28 2009, 17:38:15) [GCC

Re: How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-13 Thread ajaksu
henning.vonbar wrote: Traceback (most recent call last):   File stdin, line 1, in module   File /usr/local/lib/python2.6/threading.py, line 952, in _test     t.start()   File /usr/local/lib/python2.6/threading.py, line 471, in start     _start_new_thread(self.__bootstrap, ()) thread.error:

How to build Python 2.6.2 on HP-UX Itanium with thread support?

2009-05-05 Thread henning . vonbargen
Our program that makes use of cx_Oracle and multi-threading (and works fine on Windows, Linux and other platforms, including HP-UX PA-RISC), fails to run on HP-UX Itanium. When trying to start the first daemon thread, the program raises an exception: ... File