i need to run some old python programs on a ubuntu 10.04 system. it seems, that there are no python 2.3 packages for ubuntu 10.04 available. so i got python 2.3 directly from python.org: http://www.python.org/download/releases/2.3/

but "make" python fails with a buffer overflow.

has anyone suggestions how to get python 2.3 to work on ubuntu 10.04?

link|improve this question

1  
Just out of curiosity, what python programs require no greater than 2.3? – Daniel DiPaolo Feb 8 '11 at 15:37
it is about compiled python2.3 files, that are executed on older hardware. new hardware with ubuntu 10.04 has been added. – alex Feb 8 '11 at 15:43
feedback

2 Answers

up vote 2 down vote accepted

This appears to be an old bug in Python 2.3. From here: https://bugs.launchpad.net/ubuntu/+source/gcc-defaults/+bug/286334

The solution is to run configure with BASECFLAGS=-U_FORTIFY_SOURCE.

./configure BASECFLAGS=-U_FORTIFY_SOURCE

Then run make as you usually would.

link|improve this answer
Yes! That did it. Just had to clean previously used working directory, ran the stated, flaged configure cmd and ran the usual make and make install. Thanks a lot. I am regularly amazed by the speed of stackoverflow and its users. – alex Feb 8 '11 at 16:13
It's worth noting that decompiling (per nosklo's suggestion below) and running on a new Python may be a better option for future flexibility. This of course depends on the Python code having been compiled to unoptimized (.pyc) and not optimized (.pyo) Python. – Travis Mehlinger Feb 8 '11 at 16:19
feedback

You could decompile your python compiled files back to source. That way they will work in any python version up to 2.7+, probably unchanged.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.