Re: Building Python with gdbm support

2005-06-05 Thread Ed
I've actually sorted myself out. I updated Modules/Setup.dist, so that it has the following line... gdbm gdbmmodule.c -I/ct/ctapp/gnu/bin/gdbm-1.8.3/include -L/ct/ctapp/gnu/bin/gdbm-1.8.3/lib -lgdbm Rebuilt everything in Python. I also had to ensure that my environment using the newly-built Pyt

Building Python with gdbm support

2005-06-05 Thread Ed
I am trying to use a Perl script which requires a Database module other than "dbm" to be the default Mod. So, what the script is checking is import anydbm if (anydbm._defaultmod.__name__ == 'dumbdbm' or anydbm._defaultmod.__name__ == 'dbm'): First of, I'm doing this on a Sparc/Solaris 8 box.