diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-12-23 12:33:05 +0800 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-12-23 12:33:05 +0800 |
commit | 22d1a72b56e69e02ce66150dbbee0409a897240f (patch) | |
tree | cc26a731beefc62f046508441cfe8e62efb8e7de /databases/sqlite3 | |
parent | a9b0fa5bf5dba3c284f27435c955fe4ffe3ee361 (diff) | |
download | freebsd-ports-gnome-22d1a72b56e69e02ce66150dbbee0409a897240f.tar.gz freebsd-ports-gnome-22d1a72b56e69e02ce66150dbbee0409a897240f.tar.zst freebsd-ports-gnome-22d1a72b56e69e02ce66150dbbee0409a897240f.zip |
databases/sqlite3 does not link with tcl8.3
When trying to build databases/sqlite3 port with SQLITE_WITH_TCL83
defined, the linking stage fails. It looks like sqlite3
uses a funciton which is only available in tcl8.4.
Removed TCL83 support for databases/sqlite3
PR: ports/72918
Submitted by: Anton Berezin <tobez@freebsd.org>
Diffstat (limited to 'databases/sqlite3')
-rw-r--r-- | databases/sqlite3/Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 9bbc2026bbb0..aa3b9201e7c6 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -28,13 +28,6 @@ NO_LATEST_LINK= yes TCL_V= 8.4 TCL_SHORT_V= 84 -.if defined(SQLITE_WITH_TCL83) -CATEGORIES+= tcl83 -TCL_V= 8.3 -TCL_SHORT_V= 83 -WITH_TCL= YES -.endif - .if defined(SQLITE_WITH_TCL84) CATEGORIES+= tcl84 TCL_V= 8.4 |