summaryrefslogtreecommitdiff
path: root/sqlite-drop-tcl-at-sign.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite-drop-tcl-at-sign.patch')
-rw-r--r--sqlite-drop-tcl-at-sign.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/sqlite-drop-tcl-at-sign.patch b/sqlite-drop-tcl-at-sign.patch
deleted file mode 100644
index a19d9d0..0000000
--- a/sqlite-drop-tcl-at-sign.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-Index: tool/buildtclext.tcl
-==================================================================
---- tool/buildtclext.tcl
-+++ tool/buildtclext.tcl
-@@ -105,11 +105,11 @@
- #
- #puts "using $LIBDIR/tclConfig.sh"
- set fd [open $LIBDIR/tclConfig.sh rb]
- set tclConfig [read $fd]
- close $fd
--
-+
- # Extract parameter we will need from the tclConfig.sh file
- #
- set TCLMAJOR 8
- regexp {TCL_MAJOR_VERSION='(\d)'} $tclConfig all TCLMAJOR
- set SUFFIX so
-@@ -138,18 +138,21 @@
- regexp {TCL_SHLIB_LD='([^']+)'} $tclConfig all cmd
- set LDFLAGS "$INC -DUSE_TCL_STUBS"
- if {[string length $OPTS]>1} {
- append LDFLAGS $OPTS
- }
-- set CMD [subst $cmd]
- if {$TCLMAJOR>8} {
- set OUT libtcl9sqlite$VERSION.$SUFFIX
- } else {
- set OUT libsqlite$VERSION.$SUFFIX
- }
-+ set @ $OUT; # Workaround for https://sqlite.org/forum/forumpost/0683a49cb02f31a1
-+ # in which Gentoo edits their tclConfig.sh to include an soname
-+ # linker flag which includes ${@} (the target file's name).
-+ set CMD [subst $cmd]
- }
--
-+
- # Show information about prior installs
- #
- if {$infoonly} {
- set cnt 0
- foreach dir $auto_path {
-