Skip to content

Commit

Permalink
Merge pull request #329 from bgamari/wip/T327
Browse files Browse the repository at this point in the history
 Fix build with Javascript backend
  • Loading branch information
bgamari authored Sep 30, 2024
2 parents 7a55e3f + b8c88fb commit a5a3865
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
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

0 comments on commit a5a3865

Please sign in to comment.