diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-05 17:47:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-05 17:47:01 +0000 |
commit | 4e0554ec1a41c5b5d840b8e29e149a0efe77a52c (patch) | |
tree | 2e4824f24217a8add58d57ace6c4f39ded1e4153 /ext | |
parent | 2ece6c116c30837778f908504e30526eeb0ade40 (diff) | |
download | perl-4e0554ec1a41c5b5d840b8e29e149a0efe77a52c.tar.gz |
Introduce d_u32align / U32_REQUIRES_ALIGNMENT, needed for
ext/Digest/MD5/Makefile.PL and t/lib/md5-align.t.
Introduce probes for struct msghdr, struct cmsghdr,
sendmsg, recvmsg, readv, writev, setitimer, getitimer,
ualarm, usleep, for possible later extension work.
p4raw-id: //depot/perl@9560
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Digest/MD5/Makefile.PL | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/Digest/MD5/Makefile.PL b/ext/Digest/MD5/Makefile.PL index 9d59dba621..31dcabf891 100644 --- a/ext/Digest/MD5/Makefile.PL +++ b/ext/Digest/MD5/Makefile.PL @@ -5,10 +5,9 @@ use ExtUtils::MakeMaker; my @extra; @extra = (DEFINE => "-DU32_ALIGNMENT_REQUIRED") - if $Config{'byteorder'} ne '1234' || - $Config{'byteorder'} ne '4321' || + if !($Config{'byteorder'} eq '1234' || $Config{'byteorder'} eq '4321') || $^O eq 'VMS' || - $Config{u32_alignment_required}; + $Config{d_u32align}; WriteMakefile( 'NAME' => 'Digest::MD5', |