You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2002/04/12 03:19:44 UTC

cvs commit: apr CHANGES configure.in

jerenkrantz    02/04/11 18:19:44

  Modified:    .        CHANGES configure.in
  Log:
  Set precompiler for Solaris atomics when using GNU binutils.
  (Fix whitespace issue a line earlier while I'm at it.)
  
  PR:	7876
  Submitted by:	Marvin Solomon <so...@conceptshopping.com>
  Reviewed by:	Justin Erenkrantz
  
  Revision  Changes    Path
  1.257     +3 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.256
  retrieving revision 1.257
  diff -u -r1.256 -r1.257
  --- CHANGES	11 Apr 2002 14:37:33 -0000	1.256
  +++ CHANGES	12 Apr 2002 01:19:44 -0000	1.257
  @@ -1,5 +1,8 @@
   Changes with APR b1
   
  +  *) Set precompiler for Solaris atomics when using GNU binutils.
  +     PR 7876.  [solomon@conceptshopping.com (Marvin Solomon)]
  +
     *) AIX: Fix breakage with 64-bit builds on versions of AIX prior
        to 5L.  PR 7957  [Jeff Trawick]
   
  
  
  
  1.428     +2 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.427
  retrieving revision 1.428
  diff -u -r1.427 -r1.428
  --- configure.in	11 Apr 2002 04:36:54 -0000	1.427
  +++ configure.in	12 Apr 2002 01:19:44 -0000	1.428
  @@ -362,7 +362,7 @@
               apr_atomic_sparc_compile=apr_atomic_sparc.lo
               sparc_arch=`uname -m`
               is_gnu_as=`${AS} --help 2>/dev/null | grep gnu.org`
  -            if test  -n "$is_gnu_as" 
  +            if test -n "$is_gnu_as" 
               then
                   case "$sparc_arch" in
                    sun4c|sun4m|sun4d|sun4t|sun4)
  @@ -372,6 +372,7 @@
                    *)
                       ASFLAGS="-xarch=v8plus -K PIC"
                       ASCPPFLAGS="-D_ASM -D__STDC__=0"
  +                    ASCPP="gcc -E"
                       ;;
                   esac
               else