diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-27 13:01:26 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-27 13:01:26 +0000 |
commit | 5518ecd4c71d9e274b4e6a0c6a7d04bade4a7cd9 (patch) | |
tree | 7f8e4148950561612212359e19dce88e5b4a7e76 /hints | |
parent | d6f9c1819f8d900fa247c93667024fea72fc153f (diff) | |
download | perl-5518ecd4c71d9e274b4e6a0c6a7d04bade4a7cd9.tar.gz |
Ultrix tweaks: <string.h> must not be included twice
(otherwise one gets prototype conflicts between the <string.h>
and proto.h because Ultrix thinks e.g. Perl_ninstr has been
define in <string.h>...); and Configure misprobes some features.
p4raw-id: //depot/perl@20916
Diffstat (limited to 'hints')
-rw-r--r-- | hints/ultrix_4.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hints/ultrix_4.sh b/hints/ultrix_4.sh index 74d98aecc0..5954d24bf2 100644 --- a/hints/ultrix_4.sh +++ b/hints/ultrix_4.sh @@ -75,3 +75,7 @@ d_mkstemp='undef' # There simply isn't dynaloading in Ultrix. usedl='undef' +# There are <netinet/in.h> and gettimeofday(), +# despite of what Configure thinks. +i_niin='define' +d_gettimeod='define' |