Can't compile Zope-2.4.0-src on HP-UX11 SystemError: 256
Hi, I am new on this list and new on phyton and zope... I tried to compile Zope-2.4.0 (with python-2.1.1) on my HP-UX 11.00 box with no success... I have got the following error: . . . /opt/python/lib/python2.1/config/makesetup \ -m Makefile.pre -c /opt/python/lib/python2.1/config/config.c.in Setup -n /opt/python/l ib/python2.1/config/Setup.config /opt/python/lib/python2.1/config/Setup.local /opt/python/lib/python2.1/ config/Setup make -f Makefile do-it-again /opt/python/lib/python2.1/config/makesetup \ -m Makefile.pre -c /opt/python/lib/python2.1/config/config.c.in Setup -n /opt/python/l ib/python2.1/config/Setup.config /opt/python/lib/python2.1/config/Setup.local /opt/python/lib/python2.1/ config/Setup make Make: Don't know how to make ././src/Splitter.c. Stop. Traceback (most recent call last): File "/pkgs/Zope-2.4.0-src/w_pcgi.py", line 111, in ? if __name__=='__main__': main(sys.argv[0]) File "/pkgs/Zope-2.4.0-src/w_pcgi.py", line 109, in main import wo_pcgi; wo_pcgi.main(me) File "/pkgs/Zope-2.4.0-src/wo_pcgi.py", line 105, in main import build_extensions File "/pkgs/Zope-2.4.0-src/inst/build_extensions.py", line 109, in ? make('lib','python','Products','PluginIndexes','TextIndex','Splitter','ISO_8859_1_Splitter') File "/pkgs/Zope-2.4.0-src/inst/do.py", line 135, in make do('make') File "/pkgs/Zope-2.4.0-src/inst/do.py", line 104, in do if i and picky: raise SystemError, i SystemError: 256 Any idea???????? Andre
Andre Konopka writes:
.... I tried to compile Zope-2.4.0 (with python-2.1.1) on my HP-UX 11.00 box with no success...
I have got the following error: ... make Make: Don't know how to make ././src/Splitter.c. Stop. That's the real error: it can not find "src/Splitter.c".
Now, the '././' looks a bit strange. I would try to find out how they were generated and check whether they are correct (probably not). If not, I would fix it... Dieter
On 17 Aug 2001 13:38:45 +0200, Andre Konopka wrote:
Hi,
I am new on this list and new on phyton and zope...
I tried to compile Zope-2.4.0 (with python-2.1.1) on my HP-UX 11.00 box with no success...
I have got the following error:
... File "/pkgs/Zope-2.4.0-src/inst/do.py", line 104, in do if i and picky: raise SystemError, i SystemError: 256
Any idea????????
chown -R <zopeuser.zopeusergroup> . This essentially means that for some reason, permissions are whacked up. making sure the entire tree is owned by the zope user (and approriate group) has solved it every time. That or do it all as root, then change ownership to the zope user, I cannot recall exactly. I haven't had this problem in a long time. Cheers, Bill Anderson .
participants (3)
-
Andre Konopka -
Bill Anderson -
Dieter Maurer