diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-08-09 21:11:07 (GMT) |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-08-09 21:11:07 (GMT) |
commit | 1ebd3f6c4bf8c20750064b06a82e8727ce50e72b (patch) | |
tree | 23e40c7a513d693a6f8be040cf299973ed63c6cc /configure.in | |
parent | 46a415167464d8a7234c4a79dc4f7df084211825 (diff) | |
download | cpython-1ebd3f6c4bf8c20750064b06a82e8727ce50e72b.zip cpython-1ebd3f6c4bf8c20750064b06a82e8727ce50e72b.tar.gz cpython-1ebd3f6c4bf8c20750064b06a82e8727ce50e72b.tar.bz2 |
Tweak curses.wrapper so it initializes colors if they are available.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0367bd1..1566643 100644 --- a/configure.in +++ b/configure.in @@ -1014,6 +1014,12 @@ AC_SUBST(HAVE_GETHOSTBYNAME) # checks for system services # (none yet) +# Cope with the DB mess. If we detect libdba, assume it's a version 2 +# or later DB and should be linked first (before the DB 1.xx stuff in glibc). +# Also define an appropriate symbol so we can conditionalize code in the +# dbmmodule; the API has changed since 1.xx. +AC_CHECK_LIB(dba, __db_mutex_lock) + # Linux requires this for correct f.p. operations AC_CHECK_FUNC(__fpu_control, [], |