perl 5.002beta1h patch: Configure
[p5sagit/p5-mst-13.2.git] / hints / sunos_4_1.sh
1 case "$cc" in
2 *gcc*)  usevfork=false ;;
3 *)      usevfork=true ;;
4 esac
5 d_tzname='undef'
6 # check if user is in a bsd or system 5 type environment
7 if cat -b /dev/null 2>/dev/null
8 then # bsd
9       groupstype='int'
10 else # sys5
11       groupstype='gid_t'
12 fi
13 # we don't set gidtype because unistd.h says gid_t getgid() but man
14 # page says int getgid() for bsd. utils.c includes unistd.h :-(