From: Nathan Scott Date: Sat, 13 Apr 2002 00:11:02 +0000 (+0000) Subject: bump version number, build updates to fix a cflags propogation issue X-Git-Tag: v2.1.0~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=286ceebbe3093fd590fcf54874ce920f47880890;p=thirdparty%2Fxfsprogs-dev.git bump version number, build updates to fix a cflags propogation issue which was recently introduced. --- diff --git a/VERSION b/VERSION index 6b81001f8..a5c287cb1 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=2 PKG_MINOR=0 -PKG_REVISION=2 +PKG_REVISION=3 PKG_BUILD=0 diff --git a/debian/changelog b/debian/changelog index fd46891db..be8dec815 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xfsprogs (2.0.3-1) unstable; urgency=low + + * New upstream bugfix release + + -- Nathan Scott Sat, 13 Apr 2002 09:45:06 +1000 + xfsprogs (2.0.2-1) unstable; urgency=low * New upstream bugfix release diff --git a/doc/CHANGES b/doc/CHANGES index 98598a074..ba1eff256 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,9 @@ -xfsprogs-2.0.2 (4 April 2002) +xfsprogs-2.0.3 (13 April 2002) + - Important build system update, was causing libxfs to be + built incorrectly, which can cause xfs_repair to fail by + tripping asserts in additional libxfs debug code. + +xfsprogs-2.0.2 (04 April 2002) - Bumped version of libhandle to libhandle.so.1.0.1 This changes open_by_handle() and friends so that O_LARGEFILE is added to the open flags. diff --git a/include/builddefs.in b/include/builddefs.in index ca5c226de..66fe60f3f 100644 --- a/include/builddefs.in +++ b/include/builddefs.in @@ -32,6 +32,9 @@ # @configure_input@ # +ifndef _BUILDMACROS_INCLUDED_ +_BUILDMACROS_INCLUDED_ = 1 + DEBUG = @debug_build@ OPTIMIZER = @opt_build@ MALLOCLIB = @malloc_lib@ @@ -81,3 +84,11 @@ CFLAGS += -O1 $(OPTIMIZER) $(DEBUG) -funsigned-char -Wall $(LCFLAGS) \ -D_FILE_OFFSET_BITS=64 -DXFS_BIG_FILES=1 -DXFS_BIG_FILESYSTEMS=1 include $(TOPDIR)/include/buildmacros + +endif + +# +# For targets that should always be rebuilt, +# define a target that is never up-to-date. +# Targets needing this should depend on $(_FORCE) +_FORCE = __force_build diff --git a/include/buildmacros b/include/buildmacros index 001397e75..26f90f452 100644 --- a/include/buildmacros +++ b/include/buildmacros @@ -30,9 +30,6 @@ # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ # -ifndef _BUILDMACROS_INCLUDED_ -_BUILDMACROS_INCLUDED_ = 1 - BUILDRULES = $(TOPDIR)/include/buildrules # LCFLAGS, LLDFLAGS, LLDLIBS, LSRCFILES and LDIRT may be specified in @@ -168,11 +165,3 @@ SOURCE_MAKERULE = \ $(MAKEF) DIR=$$DIR/$$d -C $$d $@ || exit $$?; \ fi; \ done - -endif - -# -# For targets that should always be rebuilt, -# define a target that is never up-to-date. -# Targets needing this should depend on $(_FORCE) -_FORCE = __force_build