Skip to content

Commit

Permalink
HP-UX Patch - Robert Colquhoun(rjc@trump.net.au)
Browse files Browse the repository at this point in the history
Patch so configure works properly for HP-UX 10.20
  • Loading branch information
Robert Colquhoun committed Jan 2, 1999
1 parent f01f30e commit bbf1455
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion configure
Expand Up @@ -1853,6 +1853,8 @@ EmitConfigurationDefinitions()
echo "#define CONFIG_GETOPTPROTO"
fi
test "$CONFIG_BADSELECTPROTO" || { # int* vs. fd_set*
*-hpux10.20*) CONFIG_BADSELECTPROTO=no;;
*-hpux11*) CONFIG_BADSELECTPROTO=no;;
case $TARGET in
*-hpux*) CONFIG_BADSELECTPROTO=yes;;
*) CONFIG_BADSELECTPROTO=no;;
Expand Down Expand Up @@ -2635,7 +2637,10 @@ BuildPortDotH()
CheckDefine _PATH_TMP '_PATH_TMP "/tmp/"' paths.h
if [ $UTMP = auto ]; then
if CheckForIncludeFile utmpx.h; then
UTMP=utmpx;
case $TARGET in
*-hpux10.20*) UTMP=utmp;;
*) UTMP=utmpx;;
esac
else
UTMP=utmp;
fi
Expand Down

0 comments on commit bbf1455

Please sign in to comment.