dgaudet     98/06/10 01:15:11

  Modified:    src      CHANGES
               src/helpers GuessOS
  Log:
  update to properly support 32-bit qnx
  
  PR:           2390
  Submitted by: Sean Boudreau <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.905     +6 -2      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.904
  retrieving revision 1.905
  diff -u -r1.904 -r1.905
  --- CHANGES   1998/06/09 12:59:18     1.904
  +++ CHANGES   1998/06/10 08:15:09     1.905
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
  -  
  +
  +  *) PORT: QNX update to properly guess 32-bit systems.
  +     [Sean Boudreau <[EMAIL PROTECTED]>] PR#2390
  +
     *) Make sure the DSO emulation code for HPUX finds the proprietary 
shl_xxx()
        functions which are in libdld under HPUX 9/10.
        [Ralf S. Engelschall] PR#2378
  @@ -29,7 +32,8 @@
   
     *) mod_usertrack was corrupting the client hostname.  As part of the
        fix, the cookie values were slightly extended to include the
  -     fully qualified hostname of the client.  [Dean Gaudet] PR#2229, 2366
  +     fully qualified hostname of the client.
  +     [Dean Gaudet] PR#2190, 2229, 2366
   
     *) Fix a typo in pool debugging code.  [Alvaro Martinez Echevarria]
   
  
  
  
  1.41      +5 -8      apache-1.3/src/helpers/GuessOS
  
  Index: GuessOS
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/helpers/GuessOS,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- GuessOS   1998/06/08 17:04:02     1.40
  +++ GuessOS   1998/06/10 08:15:11     1.41
  @@ -139,14 +139,11 @@
        ;;
   
       QNX:*)
  -     case "$VERSION" in
  -         423)
  -             echo "${MACHINE}-qssl-qnx32"
  -             ;;
  -         *)
  -             echo "${MACHINE}-qssl-qnx"
  -             ;;
  -     esac
  +     if [ "$VERSION" -gt 422 ]; then
  +         echo "${MACHINE}-qssl-qnx32"
  +     else
  +         echo "${MACHINE}-qssl-qnx"
  +     fi
        exit 0
        ;;
   
  
  
  

Reply via email to