rse         98/05/24 04:02:47

  Modified:    src/support Makefile.tmpl
  Log:
  Fix ordering of $(CFLAGS) and $(INCLUDES): Needs to be the same as in all
  other Makefile.tmpl's to avoid conflicts (I ran into problems when trying to
  incorporate Ben's SSL for 1.3b8-dev because SSLeay also has a "conf.h"
  header).
  
  Revision  Changes    Path
  1.21      +1 -1      apache-1.3/src/support/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/support/Makefile.tmpl,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- Makefile.tmpl     1998/05/12 12:13:54     1.20
  +++ Makefile.tmpl     1998/05/24 11:02:46     1.21
  @@ -9,7 +9,7 @@
   OBJS=htpasswd.o htdigest.o rotatelogs.o logresolve.o ab.o
   
   .c.o: 
  -     $(CC) -c $(CFLAGS) $(INCLUDES) $<
  +     $(CC) -c $(INCLUDES) $(CFLAGS) $<
   
   all: $(TARGETS)
   
  
  
  

Reply via email to