summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorAndy Broad <andy@broad.ology.org.uk>2015-08-22 09:24:56 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2015-09-05 11:12:45 -0400
commit4dd5370dbb378b214812025cf98901e53ad4b137 (patch)
tree7211b33a0e9d0be2acac650a2e2d47d4697da0d1 /util.c
parentf6fb4e449c72e5609105e7d8bd9412b464d4f0fe (diff)
downloadperl-4dd5370dbb378b214812025cf98901e53ad4b137.tar.gz
amigaos4: use my_popen from amigaos.c
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index cb7a5afd90..f4010423c4 100644
--- a/util.c
+++ b/util.c
@@ -2484,8 +2484,8 @@ Perl_my_popen_list(pTHX_ const char *mode, int n, SV **args)
#endif
}
- /* VMS' my_popen() is in VMS.c, same with OS/2. */
-#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__LIBCATAMOUNT__)
+ /* VMS' my_popen() is in VMS.c, same with OS/2 and AmigaOS 4. */
+#if (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS) && !defined(__LIBCATAMOUNT__) && !defined(__amigaos4__)
PerlIO *
Perl_my_popen(pTHX_ const char *cmd, const char *mode)
{