summaryrefslogtreecommitdiff
path: root/hints/svr4.sh
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2017-10-12 11:02:27 +0200
committerAaron Crane <arc@cpan.org>2017-10-21 16:50:42 +0100
commit04322328fc4bc2863d0bc74339ed92d33b7eaba7 (patch)
tree1d346b8714d55af8fc3c9cd112dcc1effe526b5c /hints/svr4.sh
parent11568d10a6b3495b7a54f171d4134d8798fd64d6 (diff)
downloadperl-04322328fc4bc2863d0bc74339ed92d33b7eaba7.tar.gz
Assume we have C89 memset()
This means we also never need to consider using BSD bzero().
Diffstat (limited to 'hints/svr4.sh')
-rw-r--r--hints/svr4.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/hints/svr4.sh b/hints/svr4.sh
index 34a00ab3f2..81b0740f6e 100644
--- a/hints/svr4.sh
+++ b/hints/svr4.sh
@@ -25,7 +25,7 @@ libswanted=`echo " $libswanted " | sed -e 's/ malloc / /'` # -e 's/ ucb / /'`
if [ -r /usr/ucblib/libucb.a ]; then # If using BSD-compat. library:
gconvert_preference='gcvt sprintf' # Try gcvt() before gconvert().
# Use the "native" counterparts, not the BSD emulation stuff:
- d_bcmp='undef' d_bcopy='undef' d_bzero='undef' d_safebcpy='undef'
+ d_bcmp='undef' d_bcopy='undef' d_safebcpy='undef'
d_index='undef' d_killpg='undef' d_getprior='undef' d_setprior='undef'
d_setlinebuf='undef'
# d_setregid='undef' d_setreuid='undef' # ???
@@ -90,12 +90,10 @@ if [ "$uw_isuw" = "Release = 4.2MP" ]; then
2.1)
d_csh='undef'
d_memcpy='define'
- d_memset='define'
;;
2.1.*)
d_csh='undef'
d_memcpy='define'
- d_memset='define'
stdio_cnt='((fp)->__cnt)'
d_stdio_cnt_lval='define'
stdio_ptr='((fp)->__ptr)'
@@ -108,7 +106,6 @@ if [ "$uw_isuw" = "Release = 5" ]; then
7)
d_csh='undef'
d_memcpy='define'
- d_memset='define'
stdio_cnt='((fp)->__cnt)'
d_stdio_cnt_lval='define'
stdio_ptr='((fp)->__ptr)'