You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2004/06/11 16:59:26 UTC

cvs commit: apr/build apr_hints.m4

trawick     2004/06/11 07:59:26

  Modified:    .        Tag: APR_0_9_BRANCH CHANGES
               build    Tag: APR_0_9_BRANCH apr_hints.m4
  Log:
  Don't try to enable run-time linking on AIX < 4.2, as this
  results in invalid linker options being used.
  
  PR:             29170
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.426.2.22 +4 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.426.2.21
  retrieving revision 1.426.2.22
  diff -u -r1.426.2.21 -r1.426.2.22
  --- CHANGES	24 May 2004 10:06:38 -0000	1.426.2.21
  +++ CHANGES	11 Jun 2004 14:59:25 -0000	1.426.2.22
  @@ -1,5 +1,9 @@
   Changes with APR 0.9.5
   
  +  *) Don't try to enable run-time linking on AIX < 4.2, as this
  +     results in invalid linker options being used.  PR 29170.  
  +     [Jeff Trawick]
  +
     *) Remove apr_file_copy()'s 2Gb file size limit on some platforms.
        [Joe Orton]
   
  
  
  
  No                   revision
  No                   revision
  1.53.2.7  +7 -1      apr/build/apr_hints.m4
  
  Index: apr_hints.m4
  ===================================================================
  RCS file: /home/cvs/apr/build/apr_hints.m4,v
  retrieving revision 1.53.2.6
  retrieving revision 1.53.2.7
  diff -u -r1.53.2.6 -r1.53.2.7
  --- apr_hints.m4	19 May 2004 19:32:08 -0000	1.53.2.6
  +++ apr_hints.m4	11 Jun 2004 14:59:26 -0000	1.53.2.7
  @@ -63,7 +63,13 @@
           fi
   	APR_SETIFNULL(apr_sysvsem_is_global, [yes])
   	APR_SETIFNULL(apr_lock_method, [USE_SYSVSEM_SERIALIZE])
  -	APR_ADDTO(LDFLAGS, [-Wl,-brtl])
  +        case $host in
  +            *-ibm-aix3* | *-ibm-aix4.1.*)
  +                ;;
  +            *)
  +                APR_ADDTO(LDFLAGS, [-Wl,-brtl])
  +                ;;
  +	esac
           ;;
       *-apollo-*)
   	APR_ADDTO(CPPFLAGS, [-DAPOLLO])