trawick     2004/04/16 05:40:05

  Modified:    .        configure.in
  Log:
  +DAportable is not valid for HP-UX native compiler on ia64
  
  Revision  Changes    Path
  1.578     +10 -4     apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.577
  retrieving revision 1.578
  diff -u -r1.577 -r1.578
  --- configure.in      31 Mar 2004 12:51:28 -0000      1.577
  +++ configure.in      16 Apr 2004 12:40:05 -0000      1.578
  @@ -330,10 +330,16 @@
   case "$host:$CC" in
       *-hp-hpux*:cc )
        APR_ADDTO(CFLAGS,[-Ae +Z])
  -     if echo "$CFLAGS " | grep '+DA' >/dev/null; then :
  -     else
  -       APR_ADDTO(CFLAGS,[+DAportable])
  -     fi 
  +     case $host in
  +       ia64-* )
  +         ;;
  +          * )
  +         if echo "$CFLAGS " | grep '+DA' >/dev/null; then :
  +         else
  +           APR_ADDTO(CFLAGS,[+DAportable])
  +         fi 
  +         ;;
  +        esac
        ;;
       powerpc-*-beos:mwcc* )
        APR_SETVAR(CPP,[mwcc -E])
  
  
  

Reply via email to