diff options
author | Nathan Scott <nathans@sgi.com> | 2006-03-28 03:50:26 +0000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-03-28 03:50:26 +0000 |
commit | 4e4d5713ba82d3a6b0158cd15202be7928b79335 (patch) | |
tree | 7e4f857032586f62155f8175fb2e5a21137e6bdf | |
parent | 8b1bd9aea1fbd33c4e60b7f7691b4d6211cae872 (diff) | |
download | attr-4e4d5713ba82d3a6b0158cd15202be7928b79335.tar.gz |
Debian packaging updates for attr - libc-dev dependencies, and -O2 builds.
Merge of master-melb:xfs-cmds:25571a by kenmcd.
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | aclocal.m4 | 2 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | doc/CHANGES | 4 | ||||
-rw-r--r-- | m4/package_globals.m4 | 2 |
6 files changed, 15 insertions, 4 deletions
@@ -3,5 +3,5 @@ # PKG_MAJOR=2 PKG_MINOR=4 -PKG_REVISION=31 +PKG_REVISION=32 PKG_BUILD=0 @@ -32,7 +32,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/debian/changelog b/debian/changelog index b9bec87..d0f1b0f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +attr (2.4.32-1) unstable; urgency=low + + * New upstream release + * Fixed build dependency on libc-dev (closes: #358786) + + -- Nathan Scott <nathans@debian.org> Tue, 28 Mar 2006 09:14:25 +1100 + attr (2.4.31-1) unstable; urgency=low * New upstream release diff --git a/debian/control b/debian/control index a806d48..2cb868a 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Description: Utilities for manipulating filesystem extended attributes Package: libattr1-dev Section: libdevel Priority: extra -Depends: libc6-dev, libattr1 (>= 2.0.0) +Depends: libc-dev, libattr1 (>= 2.0.0) Provides: attr-dev Replaces: attr-dev Conflicts: attr-dev, attr (<< 2.0.0) diff --git a/doc/CHANGES b/doc/CHANGES index 984a961..e410bdd 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,7 @@ +attr-2.4.32 (28 March 2006) + - Debian packaging updates (libc-dev dependency fixed) + - Enable -O2 optimised builds by default + attr-2.4.31 (22 February 2006) - Fix GNU/Hurd builds (no PATH_MAX macro, dodge syscalls.c). - Fix segfault in attr_list compat routines, thanks to diff --git a/m4/package_globals.m4 b/m4/package_globals.m4 index c28e1a1..665afc8 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) |