summarylogtreecommitdiffstats
path: root/process.patch
diff options
context:
space:
mode:
authorJoão Miguel2016-08-20 21:02:26 +0100
committerJoão Miguel2016-08-20 21:02:26 +0100
commitf13450e03efd6eff02207a656fcde68928815bdf (patch)
tree32aa3de72d28a0764259bf4c6e76c4157e158d0a /process.patch
downloadaur-f13450e03efd6eff02207a656fcde68928815bdf.tar.gz
Initial commit, patched as the package upstream is old
Diffstat (limited to 'process.patch')
-rw-r--r--process.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/process.patch b/process.patch
new file mode 100644
index 000000000000..c590c3e9901a
--- /dev/null
+++ b/process.patch
@@ -0,0 +1,34 @@
+--- src/HSH-2.1.2/HSH/Command.hs 2014-10-28 13:00:59.000000000 +0000
++++ Command.hs 2016-08-20 14:48:31.149988715 +0100
+@@ -301,6 +301,15 @@
+ #if MIN_VERSION_process(1,2,0)
+ , delegate_ctlc = False
+ #endif
++#if MIN_VERSION_process(1,3,0)
++ , detach_console = False
++ , create_new_console = False
++ , new_session = False
++#endif
++#if MIN_VERSION_process(1,4,0)
++ , child_group = Nothing
++ , child_user = Nothing
++#endif
+ }
+ in do (_, oh', _, ph) <- createProcess cp
+ let oh = fromJust oh'
+@@ -320,6 +329,15 @@
+ #if MIN_VERSION_process(1,2,0)
+ , delegate_ctlc = False
+ #endif
++#if MIN_VERSION_process(1,3,0)
++ , detach_console = False
++ , create_new_console = False
++ , new_session = False
++#endif
++#if MIN_VERSION_process(1,4,0)
++ , child_group = Nothing
++ , child_user = Nothing
++#endif
+ }
+ in do (ih', oh', _, ph) <- createProcess cp
+ let ih = fromJust ih'