diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-08-16 17:00:19 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-08-16 17:00:19 +0900 |
commit | a8714b83c40c8736b4ddafef08fa5f0091c9b101 (patch) | |
tree | 2faa2d2c4f1772907155df16a804b01618cd3348 /process.c | |
parent | 07b12a1f4829ca3c7d60d56bb5c89069f0758d4c (diff) |
`popen()` is not available on emscripten
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4745
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4536,7 +4536,7 @@ rb_syswait(rb_pid_t pid) rb_waitpid(pid, &status, 0); } -#if !defined HAVE_WORKING_FORK && !defined HAVE_SPAWNV +#if !defined HAVE_WORKING_FORK && !defined HAVE_SPAWNV && !defined __EMSCRIPTEN__ char * rb_execarg_commandline(const struct rb_execarg *eargp, VALUE *prog) { |