This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cwhan
Recipients cwhan
Date 2009-01-05.04:24:25
SpamBayes Score 0.3799634
Marked as misclassified No
Message-id <1231129467.43.0.877411679563.issue4840@psf.upfronthosting.co.za>
In-reply-to
Content
I tried and failed in compile python 3.0 in ubuntu 8.10. Then I found
the scripts in setup.py use "gdbm/ndbm.h" while in ubuntu 8.10 it should
be gdbm-ndbm.h. So I made the following change which make the compiling ok:


setup.py

787c787
<                   and find_file("gdbm/ndbm.h", inc_dirs, []) is not None):
---
>                   and find_file("gdbm-ndbm.h", inc_dirs, []) is not None):
790c790
<                                        libraries = ['gdbm'] ) )
---
>                                        libraries = ['gdbm',
'gdbm_compat'] ) )


Modules/_dbmodule.c

22c22
< #include <gdbm/ndbm.h>
---
> #include <gdbm-ndbm.h>
History
Date User Action Args
2009-01-05 04:24:27cwhansetrecipients: + cwhan
2009-01-05 04:24:27cwhansetmessageid: <1231129467.43.0.877411679563.issue4840@psf.upfronthosting.co.za>
2009-01-05 04:24:26cwhanlinkissue4840 messages
2009-01-05 04:24:25cwhancreate