Changeset 5066:3638701db407
- 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:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r5063
|
r5066
|
|
| 1 | | 2007-04-04 11:47 -0700 Brendan Cully <brendan@kublai.com> (5e0ea671962d) |
| | 1 | 2007-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 | |
| | 9 | 2007-04-04 16:31 -0700 Brendan Cully <brendan@kublai.com> (e96bd1f85634) |
| 2 | 10 | |
| 3 | 11 | * imap/command.c: Only reset UIDNEXT if new mail has been detected. |
-
|
r5061
|
r5066
|
|
| 875 | 875 | if test -r "$d/include/$v/db.h"; then |
| 876 | 876 | 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" |
| 879 | 880 | for l in `echo $BDB_VERSIONS`; do |
| 880 | 881 | CPPFLAGS="$OLDCPPFLAGS -I$BDB_INCLUDE_DIR" |
| … |
… |
|
| 894 | 895 | test x$ac_cv_dbcreate = xyes && break |
| 895 | 896 | fi |
| | 897 | done |
| 896 | 898 | fi |
| 897 | 899 | done |