# HG changeset patch # User js # Date 1160253246 25200 # Node ID 80a28e538008bb25383ab765c3d2ea731ca0f500 # Parent fabe64e89949abc736a9584fe05064aed0dc727f [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with += - Replace ?= at CC, CPP and CXX with = The reason for this is that on some systems CC, CFLAGS, CPP, CPPFLAGS, CXX and CXXFLAGS are set by default and therefore are already set at this step so that it can happen that the wrong variables are used (or the ones from the configure script are ignored). diff -r fabe64e89949 -r 80a28e538008 ChangeLog --- a/ChangeLog Fri Oct 06 10:51:55 2006 -0700 +++ b/ChangeLog Sat Oct 07 13:34:06 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-06 17:51:55 +0000 Yoshiki Yazawa + revision [174] + - mtime=-1 has been introduced to represent "uninitialized". + + trunk/src/xspf/xspf.c | 5 +++++ + 1 file changed, 5 insertions(+) + + 2006-10-05 09:33:10 +0000 William Pitcock revision [172] - some improvements to the cuesheet plugin, not totally there yet ;) diff -r fabe64e89949 -r 80a28e538008 mk/rules.mk.in --- a/mk/rules.mk.in Fri Oct 06 10:51:55 2006 -0700 +++ b/mk/rules.mk.in Sat Oct 07 13:34:06 2006 -0700 @@ -83,17 +83,17 @@ BUILDERS_LDFLAGS ?= @BUILDERS_LDFLAGS@ BUILD_INCLUDED_LIBINTL ?= @BUILD_INCLUDED_LIBINTL@ CATOBJEXT ?= @CATOBJEXT@ -CC ?= @CC@ +CC = @CC@ CCAS ?= @CCAS@ CCASFLAGS ?= @CCASFLAGS@ CCDEPMODE ?= @CCDEPMODE@ -CFLAGS ?= @CFLAGS@ -CPP ?= @CPP@ -CPPFLAGS ?= @CPPFLAGS@ -CXX ?= @CXX@ +CFLAGS += @CFLAGS@ +CPP = @CPP@ +CPPFLAGS += @CPPFLAGS@ +CXX = @CXX@ CXXCPP ?= @CXXCPP@ CXXDEPMODE ?= @CXXDEPMODE@ -CXXFLAGS ?= @CXXFLAGS@ +CXXFLAGS += @CXXFLAGS@ CYGPATH_W ?= @CYGPATH_W@ DATADIRNAME ?= @DATADIRNAME@ DCT64 ?= @DCT64@