Skip to content
Snippets Groups Projects
Unverified Commit 6ae5ca66 authored by Herbert Valerio Riedel's avatar Herbert Valerio Riedel :man_dancing: Committed by GitHub
Browse files

Merge pull request #118

parents ee3e99a0 b8eb2486
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@
#include <string.h>
#include <errno.h>
#define HSUNIX_EXECVPE_H_NO_COMPAT
#include "execvpe.h"
#if !defined(execvpe) && !HAVE_DECL_EXECVPE
......
......@@ -15,6 +15,8 @@
which now must be passed as part of `OpenFileFlags`
(e.g. `defaultFileFlags { creat = Just mode }`) (#58)
* Remove deprecated `execvpe(3)` legacy-emulation CPP macro
## 2.7.2.2 *May 2017*
* Bundled with GHC 8.2.1
......
......@@ -10,16 +10,4 @@
extern int
__hsunix_execvpe(const char *name, char *const argv[], char *const envp[]);
// this hack is needed for `process`; to be removed in unix-2.8
#ifndef HSUNIX_EXECVPE_H_NO_COMPAT
#include "HsUnixConfig.h"
#if HAVE_EXECVPE
# include <unistd.h>
extern int
execvpe(const char *name, char *const argv[], char *const envp[]);
#else
# define execvpe(name,argv,envp) __hsunix_execvpe(name,argv,envp)
#endif
#endif
#endif
......@@ -72,7 +72,7 @@ library
build-depends:
base >= 4.5 && < 4.13,
bytestring >= 0.9.2 && < 0.11,
time >= 1.2 && < 1.9
time >= 1.2 && < 1.10
exposed-modules:
System.Posix
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment