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...@locus.apache.org on 2000/11/29 20:35:56 UTC

cvs commit: apr CHANGES configure.in

trawick     00/11/29 11:35:54

  Modified:    .        CHANGES configure.in
  Log:
  Tweak the APR_OFF_T_FMT logic so that we get the right
  value on Solaris Sparc too.
  
  Revision  Changes    Path
  1.5       +4 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CHANGES	2000/11/21 21:33:04	1.4
  +++ CHANGES	2000/11/29 19:35:51	1.5
  @@ -1,3 +1,7 @@
  +Changes with APR a9
  +  *) Get APR_OFF_T_FMT defined properly on Solaris Sparc.
  +     [Jeff Trawick]
  +
   Changes with APR a8
     *) Change the name of the sa_len field in apr_sockaddr_t to salen.
        Some platforms have a macro named sa_len.
  
  
  
  1.175     +1 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.174
  retrieving revision 1.175
  diff -u -r1.174 -r1.175
  --- configure.in	2000/11/27 19:13:00	1.174
  +++ configure.in	2000/11/29 19:35:52	1.175
  @@ -418,7 +418,7 @@
   # don't get it right for your platform, you can override our decision
   # below.
   case "$OS" in
  -   *linux* | *os2_emx | *-pc-solaris*)
  +   *linux* | *os2_emx | *-solaris*)
          off_t_fmt='#define APR_OFF_T_FMT "ld"'
   esac