Skip to content

Commit

Permalink
Fix: update Windows build to use a newer version of hunspell
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Lyons <slysven@virginmedia.com>
  • Loading branch information
SlySven committed Apr 18, 2024
1 parent c65615b commit bd9249a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CI/appveyor.functions.ps1
Expand Up @@ -242,9 +242,9 @@ function InstallOpenssl() {
}

function InstallHunspell() {
DownloadFile "https://github.com/hunspell/hunspell/archive/v1.6.2.tar.gz" "hunspell.tar.gz"
DownloadFile "https://github.com/hunspell/hunspell/archive/v1.7.2.tar.gz" "hunspell.tar.gz"
ExtractTar "hunspell.tar.gz" "hunspell"
Set-Location "hunspell\hunspell-1.6.2"
Set-Location "hunspell\hunspell-1.7.2"
Step "Changing src\tools\Makefile.am"
(Get-Content src\tools\Makefile.am -Raw) -replace 'hzip ', '' | Out-File -encoding ASCII src\tools\Makefile.am >> "$logFile" 2>&1
RunAutoReconfig
Expand Down Expand Up @@ -488,7 +488,7 @@ function CheckAndInstallOpenSSL(){
}

function CheckAndInstallHunspell(){
CheckAndInstall "hunspell" "$Env:MINGW_BASE_DIR\bin\libhunspell-1.6-0.dll" { InstallHunspell }
CheckAndInstall "hunspell" "$Env:MINGW_BASE_DIR\bin\libhunspell-1.7-2.dll" { InstallHunspell }
}

function CheckAndInstallYajl(){
Expand Down
2 changes: 1 addition & 1 deletion src/mudlet.pro
Expand Up @@ -370,7 +370,7 @@ unix:!macx {
LIBS += \
-L"$${MINGW_BASE_DIR_TEST}\\bin" \
-llua51 \
-lhunspell-1.6
-lhunspell-1.7

INCLUDEPATH += \
"C:\\Libraries\\boost_1_83_0" \
Expand Down

0 comments on commit bd9249a

Please sign in to comment.