jfclere 01/04/06 05:40:15
Modified: build rules.mk.in Log: Change the order of the flags of COMPILE to make sure that our includes are before the CFLAGS ones. Revision Changes Path 1.5 +1 -1 apr/build/rules.mk.in Index: rules.mk.in =================================================================== RCS file: /home/cvs/apr/build/rules.mk.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- rules.mk.in 2001/04/03 00:02:02 1.4 +++ rules.mk.in 2001/04/06 12:40:15 1.5 @@ -83,7 +83,7 @@ # # Basic macro setup # -COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(OPTIM) $(INCLUDES) +COMPILE = $(CC) $(CPPFLAGS) $(INCLUDES) $(CFLAGS) $(OPTIM) LT_COMPILE = $(LIBTOOL) --mode=compile $(LTFLAGS) $(COMPILE) -c $< && touch $@ LINK = $(LIBTOOL) --mode=link $(LTFLAGS) $(COMPILE) $(LDFLAGS) -o $@
