diff options
author | Andy Broad <andy@broad.ology.org.uk> | 2015-08-22 09:24:56 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-09-05 11:12:45 -0400 |
commit | 4dd5370dbb378b214812025cf98901e53ad4b137 (patch) | |
tree | 7211b33a0e9d0be2acac650a2e2d47d4697da0d1 /util.c | |
parent | f6fb4e449c72e5609105e7d8bd9412b464d4f0fe (diff) | |
download | perl-4dd5370dbb378b214812025cf98901e53ad4b137.tar.gz |
amigaos4: use my_popen from amigaos.c
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |