rbb         01/03/07 14:09:18

  Modified:    .        CHANGES
               build    rules.mk.in
  Log:
  Make APR look for header files in the APR paths before looking in system
  include paths.
  Submitted by: jean-frederic clere <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.71      +4 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.70
  retrieving revision 1.71
  diff -u -d -b -w -u -r1.70 -r1.71
  --- CHANGES   2001/03/06 04:54:48     1.70
  +++ CHANGES   2001/03/07 22:09:12     1.71
  @@ -1,5 +1,9 @@
   Changes with APR b1  
   
  +  *) Change the include path order, so that we look for included files
  +     in the APR paths first, and the system paths second.
  +     [jean-frederic clere <[EMAIL PROTECTED]>]
  +
     *) Add a with-sendfile option, so that people on platforms without a
        sendfile implementation for APR can easily disable it from the 
        configure line.  [Ryan Bloom]
  
  
  
  1.3       +1 -1      apr/build/rules.mk.in
  
  Index: rules.mk.in
  ===================================================================
  RCS file: /home/cvs/apr/build/rules.mk.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -d -b -w -u -r1.2 -r1.3
  --- rules.mk.in       2001/02/18 15:52:12     1.2
  +++ rules.mk.in       2001/03/07 22:09:16     1.3
  @@ -82,7 +82,7 @@
   #
   # Basic macro setup
   #
  -COMPILE      = $(CC) $(CFLAGS) $(CPPFLAGS)
  +COMPILE      = $(CC) $(CPPFLAGS) $(CFLAGS)
   LT_COMPILE   = $(LIBTOOL) --mode=compile $(LTFLAGS) $(COMPILE) -c $< && 
touch $@
   
   LINK         = $(LIBTOOL) --mode=link $(LTFLAGS) $(COMPILE) $(LDFLAGS) -o $@
  
  
  

Reply via email to