Changeset 5066:3638701db407

Show
Ignore:
Timestamp:
2007-04-05 13:06:00 (21 months ago)
Author:
Jukka Salmi <j+mutt@…>
Branch:
HEAD
Message:

Check for BDB4 libs in $lib as well as $lib/$ver (fixes pkgsrc BDB4 detection)

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5063 r5066  
    1 2007-04-04 11:47 -0700  Brendan Cully  <brendan@kublai.com>  (5e0ea671962d) 
     12007-04-05 12:55 -0700  Brendan Cully  <brendan@kublai.com>  (4f435337507e) 
     2 
     3        * Makefile.am, hcache.c, hcachever.sh: Version header cache against 
     4        MD5 of structures on which it depends 
     5 
     6        * UPDATING, globals.h, imap/browse.c, imap/imap_private.h, init.h: 
     7        Remove broken namespace support 
     8 
     92007-04-04 16:31 -0700  Brendan Cully  <brendan@kublai.com>  (e96bd1f85634) 
    210 
    311        * imap/command.c: Only reset UIDNEXT if new mail has been detected. 
  • configure.ac

    r5061 r5066  
    875875                if test -r "$d/include/$v/db.h"; then 
    876876                    BDB_INCLUDE_DIR="$d/include/$v" 
    877                     if test -d "$d/lib/$v"; then 
    878                         BDB_LIB_DIR="$d/lib/$v" 
     877                    for bdblibdir in "$d/lib/$v" "$d/lib"; do 
     878                    if test -d "$bdblibdir"; then 
     879                        BDB_LIB_DIR="$bdblibdir" 
    879880                        for l in `echo $BDB_VERSIONS`; do 
    880881                            CPPFLAGS="$OLDCPPFLAGS -I$BDB_INCLUDE_DIR" 
     
    894895                        test x$ac_cv_dbcreate = xyes && break 
    895896                    fi 
     897                    done 
    896898                fi 
    897899            done