From: Nathan Scott Date: Wed, 22 Mar 2006 02:53:54 +0000 (+0000) Subject: Document recent changes, enable -O2 by default for builds. X-Git-Tag: v2.8.0~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba6a8a471bec1aab283ffc75861a172454add32b;p=thirdparty%2Fxfsprogs-dev.git Document recent changes, enable -O2 by default for builds. Merge of master-melb:xfs-cmds:25533a by kenmcd. --- diff --git a/aclocal.m4 b/aclocal.m4 index 98a101ba7..4abc9ddc5 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -31,7 +31,7 @@ AC_DEFUN([AC_PACKAGE_GLOBALS], debug_build="$DEBUG" AC_SUBST(debug_build) - OPTIMIZER=${OPTIMIZER:-'-g'} dnl -O2 + OPTIMIZER=${OPTIMIZER:-'-g -O2'} opt_build="$OPTIMIZER" AC_SUBST(opt_build) diff --git a/doc/CHANGES b/doc/CHANGES index 29748d7a9..8be8d67a9 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,8 @@ +xfsprogs-2.7.16 (22 March 2006) + - Fix freespace accounting in xfs_quota(8) df command. + - Fix a typo on the xfs_quota(8) man page. + - Make -O2 (cc optimisation level) the default. + xfsprogs-2.7.15 (03 March 2006) - Fix the way external log/realtime devices were handled in userspace with older kernels (subtely different in procfs) diff --git a/m4/package_globals.m4 b/m4/package_globals.m4 index c28e1a175..665afc830 100644 --- a/m4/package_globals.m4 +++ b/m4/package_globals.m4 @@ -19,7 +19,7 @@ AC_DEFUN([AC_PACKAGE_GLOBALS], debug_build="$DEBUG" AC_SUBST(debug_build) - OPTIMIZER=${OPTIMIZER:-'-g'} dnl -O2 + OPTIMIZER=${OPTIMIZER:-'-g -O2'} opt_build="$OPTIMIZER" AC_SUBST(opt_build)