Background:
Python2.2
./configure --with-threads=no
make
make altinstall
orbit-python
todays latest package listed. version 0.3.0
./configure *works*
altered Makefile so the build would complete against 2.2 as
follows: *make works file as well*
[root@lewis orbit-python-0.3.0]# diff Makefile Makefile~
83c83
< PYTHON = /usr/bin/python2.2
---
> PYTHON = /usr/bin/python
86c86
< PYTHON_INCLUDES = -I/usr/local/include/python2.2
-I/usr/local/include/python2.2
---
> PYTHON_INCLUDES = -I/usr/include/python1.5
-I/usr/include/python1.5
90c90
< PYTHON_VERSION = 2.2
---
> PYTHON_VERSION = 1.5
99,100c99,100
< pyexecdir = ${exec_prefix}/lib/python2.2/site-packages
< pythondir = ${prefix}/lib/python2.2/site-packages
---
> pyexecdir = ${exec_prefix}/lib/python1.5/site-packages
> pythondir = ${prefix}/lib/python1.5/site-packages
After that I run make and all is well. On make check I get this:
[root@lewis orbit-python-0.3.0]# make check
Making check in src
make[1]: Entering directory `/root/tar/orbit-python-0.3.0/src'
make check-TESTS
make[2]: Entering directory `/root/tar/orbit-python-0.3.0/src'
Traceback (innermost last):
File "./test-server", line 6, in ?
import CORBA
ImportError: : shared object not open
It hangs until I interupt it. Any ideas?
Thanks.