Skip to content

Commit 21e9569

Browse files
committed
ext: patch automake files to support arm64-darwin systems
Closes #313
1 parent bf7aaf4 commit 21e9569

4 files changed

Lines changed: 4225 additions & 0 deletions

File tree

.github/workflows/sqlite3-ruby.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
ruby: "mingw"
3232
runs-on: ${{matrix.os}}
3333
steps:
34+
- if: matrix.os == 'windows-2022'
35+
name: configure git crlf
36+
run: |
37+
git config --system core.autocrlf false
38+
git config --system core.eol lf
3439
- uses: actions/checkout@v3
3540
- uses: MSP-Greg/setup-ruby-pkgs@v1
3641
with:

ext/sqlite3/extconf.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
sha256: "5af07de982ba658fd91a03170c945f99c971f6955bc79df3266544373e39869c",
2222
}]
2323
recipe.target = File.join(package_root_dir, "ports")
24+
recipe.patch_files = Dir[File.join(package_root_dir, "patches", "*.patch")].sort
2425

2526
recipe.configure_options += ["--enable-shared=no", "--enable-static=yes"]
2627
ENV.to_h.tap do |env|

0 commit comments

Comments
 (0)