Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build with Javascript backend #329

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for [`process` package](http://hackage.haskell.org/package/process)

## 1.6.25.0 *September 2024*

* Fix build with Javascript backend ([#327](https://github.com/haskell/process/issues/327))

## 1.6.24.0 *September 2024*

* Fix detection of `posix_spawn_file_actions_addchdir[_np]` ([#303](https://github.com/haskell/process/issues/303))
Expand Down
4 changes: 2 additions & 2 deletions process.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: process
version: 1.6.24.0
version: 1.6.25.0
-- NOTE: Don't forget to update ./changelog.md
license: BSD-3-Clause
license-file: LICENSE
Expand Down Expand Up @@ -68,6 +68,7 @@ library
extra-libraries: kernel32, ole32, rpcrt4
cpp-options: -DWINDOWS
else
build-depends: unix >= 2.5 && < 2.9
if arch(javascript)
js-sources:
jsbits/process.js
Expand All @@ -79,7 +80,6 @@ library
cbits/posix/posix_spawn.c
cbits/posix/find_executable.c
other-modules: System.Process.Posix
build-depends: unix >= 2.5 && < 2.9

include-dirs: include
install-includes:
Expand Down
2 changes: 1 addition & 1 deletion test/process-tests.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ source-repository head

common process-dep
build-depends:
process == 1.6.24.0
process == 1.6.25.0

custom-setup
setup-depends:
Expand Down
Loading