diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-09-20 12:04:24 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-09-21 10:01:42 +0200 |
commit | b5afd3466ff5e5b70ea2921169f138f02727183e (patch) | |
tree | 1581582fe7a415e98b8c5bfacd57da36783b74e2 /pp_sys.c | |
parent | a21c949457ed8dffe5096a444346d641f9a09a6e (diff) | |
download | perl-b5afd3466ff5e5b70ea2921169f138f02727183e.tar.gz |
Remove the MPE/iX port.
MPE/iX was a business-oriented minicomputer operating system made by
Hewlett-Packard. Support from HP terminated at the end of 2010.
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1667,7 +1667,7 @@ PP(pp_sysread) if (PL_op->op_type == OP_RECV) { Sock_size_t bufsize; char namebuf[MAXPATHLEN]; -#if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__) +#if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(__QNXNTO__) bufsize = sizeof (struct sockaddr_in); #else bufsize = sizeof namebuf; @@ -2533,7 +2533,7 @@ PP(pp_accept) IO *nstio; IO *gstio; char namebuf[MAXPATHLEN]; -#if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__) +#if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(__QNXNTO__) Sock_size_t len = sizeof (struct sockaddr_in); #else Sock_size_t len = sizeof namebuf; |