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.

classification
Title: python 2.0 compile fails on mandrake 8
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, jhylton, lkcl
Priority: normal Keywords:

Created on 2001-04-27 12:08 by lkcl, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (4)
msg4552 - (view) Author: Luke Kenneth Casson Leighton (lkcl) Date: 2001-04-27 12:08
bddbmodule fails to compile on mandrake 8.

if bdb is not a mandatory module, autoconf should be
used to
detect that bdb is or is not installed.  [it's looking
for
R_NEXT etc. which don't exist]
msg4553 - (view) Author: Luke Kenneth Casson Leighton (lkcl) Date: 2001-05-04 11:12
Logged In: YES 
user_id=80200

update: there is an option in the Modules setup which can be
used to explicity disable bddb.  however, this, i feel,
should be totally unnecessary.

why exactly, is autoconf used, when it cannot be told -
correctly -
not to use bddb?  i attempted a compile with --without-bddb
(or
whatever it was), and it still failed.  because there just
_happens_
to be a db.h file _somewhere_ on the system, the configure
test "assumes" that there is a valid bddb somewhere, which
there isn't.
msg4554 - (view) Author: Jeremy Hylton (jhylton) (Python triager) Date: 2001-05-09 15:55
Logged In: YES 
user_id=31392

I wonder if the builtin bsddb module should be deprecated. 
The fact
that it gets built causes a fair bit of trouble for users of
bsddb3,
which I assume is the preferred interface.
msg4555 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2001-07-14 21:02
Logged In: YES 
user_id=11375

Autoconf no longer mucks around with BSDDB at all; it was 
ripped out for Python 2.1, so this bug can be closed, to 
be replaced by a multitude of setup.py bugs.

History
Date User Action Args
2022-04-10 16:04:00adminsetgithub: 34427
2001-04-27 12:08:01lkclcreate