diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2006-04-03 06:21:06 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2006-04-03 06:21:06 +0000 |
commit | 159db9045983953d798df830bb81e47bb7574cc8 (patch) | |
tree | 3d1cd7819d66ebb2190a2fb991c8f45e84b96e64 /UPDATING | |
parent | 7d98cf4f40aa9e963f0dced8f75f409841952874 (diff) | |
download | ports-159db9045983953d798df830bb81e47bb7574cc8.tar.gz ports-159db9045983953d798df830bb81e47bb7574cc8.zip |
Notes
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -6,6 +6,36 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20060403: + AFFECTS: users of databases/db* + AUTHOR: swhetzel@gmail.com + + Most of the ports that depend on Berkeley DB have been updated to use + Mk/bsd.database.mk. Mk/bsd.database.mk is used to include MySQL, PostgreSQL, + Berkeley DB, and SQLite in a port. + + The Berkeley DB support in Mk/bsd.database.mk is used to return the proper + db* library name and location of the include and library directories of the + requested version. + + To select a version of Berkeley DB, you can use either WITH_BDB_VER=<version> + or ${UNIQUENAME}_WITH_BDB_VER=<version> (version is one of 3, 40, 41, 42, 43, + or 44). + + When a port has USE_BDB defined as either 'USE_BDB=41+' or 'USE_BDB=yes', the + port will use the oldest installed version of Berkeley DB. For example if + both db41 and db43 are installed, the port would end up compling with db41. + If you add -DWITH_BDB_HIGHEST to your make command, the port will use highest + db* instead. If no Berkeley DB is installed then the port will default to the + version specified or the default Berkeley DB version (currently db41). + + NOTE: If a port was using a different variable to select Berkeley DB or a + version, you will get an IGNORE message when you build the port. This + message will tell you what you need to do. + + Port Maintainers please review the comments in Mk/bsd.database.mk on what + variables are available for you use in your own ports. + 20060331: AFFECTS: users of biology/emboss and biology/embassy AUTHOR: fernan@iib.unsam.edu.ar |