diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-07-11 19:26:44 +0300 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-11 23:08:14 +0000 |
commit | 1e509ade7aa6b4feabef1bbe58cd68a39b4085af (patch) | |
tree | 3283373732450c9c660e3b2ac0650185d03b6e0e | |
parent | 3c1f3fdf5f9ede82336e0651b455c2fc686ec1c7 (diff) | |
download | perl-1e509ade7aa6b4feabef1bbe58cd68a39b4085af.tar.gz |
tweak to get BSDI to build IPC/SysV
Message-ID: <oeeww9kecx7.fsf@alpha.hut.fi>
Subject: Re: NOT OK: perl5.004_71 on BSDI 3.1
p4raw-id: //depot/perl@1443
-rw-r--r-- | ext/IPC/SysV/SysV.xs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/IPC/SysV/SysV.xs b/ext/IPC/SysV/SysV.xs index 8b30b929a2..7d682a1346 100644 --- a/ext/IPC/SysV/SysV.xs +++ b/ext/IPC/SysV/SysV.xs @@ -22,6 +22,13 @@ #endif #endif +/* Required in BSDI to get PAGE_SIZE definition for SHMLBA. + * Ugly. More beautiful solutions welcome. + * Shouting at BSDI sounds quite beautiful. */ +#ifdef __bsdi__ +# include <vm/vm_param.h> +#endif + #ifndef newCONSTSUB static void newCONSTSUB(stash,name,sv) |