diff options
author | mandree <mandree@FreeBSD.org> | 2016-05-24 04:18:24 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2016-05-24 04:18:24 +0800 |
commit | 581a64ac608f8a28ef17c4b0cb597cc18ba8deb6 (patch) | |
tree | 67ef596f1dd4b613f0c2354f161e8cbc7dcd455c /Mk/Uses | |
parent | cfd8005af821d7948fcd37d57ef16885cdb14a05 (diff) | |
download | freebsd-ports-gnome-581a64ac608f8a28ef17c4b0cb597cc18ba8deb6.tar.gz freebsd-ports-gnome-581a64ac608f8a28ef17c4b0cb597cc18ba8deb6.tar.zst freebsd-ports-gnome-581a64ac608f8a28ef17c4b0cb597cc18ba8deb6.zip |
Update to 6.2.23. Add TCL option. Cleanup.
Changes submitted by gahr@:
Enable a new TCL option, adding a pkgIndex.tcl file.
Modernize Makefile. [1]
Changes by mandree@:
Fix installation of TCL API docs if TCL option is enabled.
Update to new upstream release 6.2.23.
Install the upgrade61.sh script if SQL option is enabled, with
additional fixes distributed as a patch to avoid licensing concerns.
Add an UPDATING entry.
Add changes in Mk/Uses/bdb.mk.
db5 parts of PR 208740 to be committed in a separate transaction later.
PR: 208740
Submitted by: gahr@
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/bdb.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/Uses/bdb.mk b/Mk/Uses/bdb.mk index 520f634eabf7..a739515e3593 100644 --- a/Mk/Uses/bdb.mk +++ b/Mk/Uses/bdb.mk @@ -77,7 +77,7 @@ _DB_DEFAULTS+= 6 # Dependency lines for different db versions db48_DEPENDS= libdb-4.8.so:databases/db48 db5_DEPENDS= libdb-5.3.so:databases/db5 -db6_DEPENDS= libdb-6.1.so:databases/db6 +db6_DEPENDS= libdb-6.2.so:databases/db6 # Detect db versions by finding some files db48_FIND= ${LOCALBASE}/include/db48/db.h db5_FIND= ${LOCALBASE}/include/db5/db.h @@ -196,8 +196,8 @@ BDB_LIB_NAME= db-5.3 BDB_LIB_CXX_NAME= db_cxx-5.3 BDB_LIB_DIR= ${LOCALBASE}/lib/db5 . elif ${_BDB_VER} == 6 -BDB_LIB_NAME= db-6.1 -BDB_LIB_CXX_NAME= db_cxx-6.1 +BDB_LIB_NAME= db-6.2 +BDB_LIB_CXX_NAME= db_cxx-6.2 BDB_LIB_DIR= ${LOCALBASE}/lib/db6 . endif BDB_LIB_NAME?= db${_BDB_VER} |