Skip to content

Commit

Permalink
[sqlcipher] fix windows build (microsoft#42675)
Browse files Browse the repository at this point in the history
Co-authored-by: Nick D'Ademo <dademo.n@duerr-ndt.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
  • Loading branch information
3 people authored Dec 16, 2024
1 parent 58b4954 commit 39cd4f4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ports/sqlcipher/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ file(GLOB TCLSH_CMD
file(TO_NATIVE_PATH "${TCLSH_CMD}" TCLSH_CMD)
file(TO_NATIVE_PATH "${SOURCE_PATH}" SOURCE_PATH_NAT)

# Determine TCL version (e.g. [path]tclsh90s.exe -> 90)
# Determine TCL version (e.g. [path]tclsh90sx.exe -> 90)
string(REGEX REPLACE ^.*tclsh "" TCLVERSION ${TCLSH_CMD})
string(REGEX REPLACE [A-Za-z]?${VCPKG_HOST_EXECUTABLE_SUFFIX}$ "" TCLVERSION ${TCLVERSION})
string(REGEX REPLACE [A-Za-z]*${VCPKG_HOST_EXECUTABLE_SUFFIX}$ "" TCLVERSION ${TCLVERSION})

list(APPEND NMAKE_OPTIONS
TCLSH_CMD="${TCLSH_CMD}"
Expand Down
1 change: 1 addition & 0 deletions ports/sqlcipher/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "sqlcipher",
"version": "4.6.1",
"port-version": 1,
"description": "SQLCipher extends the SQLite database library to add security enhancements that make it more suitable for encrypted local data storage.",
"homepage": "https://www.zetetic.net/sqlcipher",
"license": null,
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -8650,7 +8650,7 @@
},
"sqlcipher": {
"baseline": "4.6.1",
"port-version": 0
"port-version": 1
},
"sqlite-modern-cpp": {
"baseline": "2023-12-03",
Expand Down
5 changes: 5 additions & 0 deletions versions/s-/sqlcipher.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "11732bd26171c4420ce06505e0ab52dfb841714e",
"version": "4.6.1",
"port-version": 1
},
{
"git-tree": "50e124ac105168dff2cbe199adf15e1d13f5562f",
"version": "4.6.1",
Expand Down

0 comments on commit 39cd4f4

Please sign in to comment.