diff options
author | CoprDistGit <infra@openeuler.org> | 2025-01-14 17:07:06 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2025-01-14 17:07:06 +0000 |
commit | 73cb76c4490bcdb44eef1983a3d1df8f96900f32 (patch) | |
tree | 32497da85f60406a0e47b799162a81b431f67a18 /sqlite-drop-tcl-at-sign.patch | |
parent | db13ee4a4b9696b72cde41790b158588cc165f01 (diff) |
automatic import of sqliteopeneuler24.03_LTS
Diffstat (limited to 'sqlite-drop-tcl-at-sign.patch')
-rw-r--r-- | sqlite-drop-tcl-at-sign.patch | 42 |
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 { - |