jim         96/12/05 14:02:56

  Modified:    src/helpers  GuessOS
  Log:
  GuessOS cleanup: Unixware and NeXT
  
  Revision  Changes    Path
  1.7       +9 -8      apache/src/helpers/GuessOS
  
  Index: GuessOS
  ===================================================================
  RCS file: /export/home/cvs/apache/src/helpers/GuessOS,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** GuessOS   1996/12/05 14:07:06     1.6
  --- GuessOS   1996/12/05 22:02:52     1.7
  ***************
  *** 34,39 ****
  --- 34,42 ----
        4\.2MP)
            echo "whatever-whatever-unixware2"; exit 0
            ;;
  +     4\.2)
  +         echo "whatever-whatever-unixware1"; exit 0
  +         ;;
        esac
    else
    # Now we simply scan though... In most cases, the SYSTEM info is enough
  ***************
  *** 176,189 ****
    fi
    
    # Now NeXT
  ! if hostinfo > /dev/null 2>/dev/null; then
  !     ISNEXT=`hostinfo`
  !     case "$ISNEXT" in
  !             *NeXT*)
  !         echo "whatever-next-nextstep"; exit 0
  !         ;;
  !     esac
  ! fi
    
    # At this point we gone through all the one's
    # we know of: Punt
  --- 179,190 ----
    fi
    
    # Now NeXT
  ! ISNEXT=`hostinfo 2>/dev/null`
  ! case "$ISNEXT" in
  !     *NeXT*)
  !     echo "whatever-next-nextstep"; exit 0
  !     ;;
  ! esac
    
    # At this point we gone through all the one's
    # we know of: Punt
  
  
  

Reply via email to