From: Nathan Scott Date: Sat, 4 Aug 2001 01:07:30 +0000 (+0000) Subject: bump the revision number to 4. X-Git-Tag: v2.0.0~69 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=caca5fe82f839e933c08961316013efb591e54d5;p=thirdparty%2Fxfsprogs-dev.git bump the revision number to 4. --- diff --git a/VERSION b/VERSION index ee5fd9770..0e2eb4a10 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=1 PKG_MINOR=3 -PKG_REVISION=3 +PKG_REVISION=4 PKG_BUILD=0 diff --git a/configure.in b/configure.in index 553ec532f..7cb376448 100644 --- a/configure.in +++ b/configure.in @@ -39,7 +39,7 @@ pkg_distribution="SGI XFS" test -z "$DISTRIBUTION" || pkg_distribution="$DISTRIBUTION" AC_SUBST(pkg_distribution) -pkg_builder=`id -u -n`@`hostname -f` +pkg_builder=`id -u -n`@`hostname` test -z "$PACKAGE_BUILDER" || pkg_builder="$PACKAGE_BUILDER" AC_SUBST(pkg_builder) @@ -178,36 +178,16 @@ AC_TRY_COMPILE( __psunsigned_t psuint; ], AC_DEFINE(HAVE___PSUNSIGNED_T) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no)) - -dnl check sizeof long -AC_MSG_CHECKING([sizeof long]) -cat <conftest.c -#include -main() { printf("%d\n", sizeof(long)); } -End-of-File -(eval $ac_compile) 2>&5 -(eval $ac_link) 2>&5 -ans=`./conftest` -echo "./conftest -> \"$ans\"" >&5 -AC_MSG_RESULT($ans) -test $ans -eq 4 && AC_DEFINE(HAVE_32BIT_LONG) -test $ans -eq 8 && AC_DEFINE(HAVE_64BIT_LONG) -rm -f conftest conftest.* - -dnl check sizeof pointer -AC_MSG_CHECKING([sizeof pointer]) -cat <conftest.c -#include -main() { printf("%d\n", sizeof(char *)); } -End-of-File -(eval $ac_compile) 2>&5 -(eval $ac_link) 2>&5 -ans=`./conftest` -echo "./conftest -> \"$ans\"" >&5 -AC_MSG_RESULT($ans) -test $ans -eq 4 && AC_DEFINE(HAVE_32BIT_PTR) -test $ans -eq 8 && AC_DEFINE(HAVE_64BIT_PTR) -rm -f conftest conftest.* +dnl Check type sizes +if test "$cross_compiling" = yes -a "$ac_cv_sizeof_long" = ""; then + AC_MSG_WARN([Cross compiling; assuming 32bit long and 32bit pointers]) +fi +AC_CHECK_SIZEOF(long, 4) +AC_CHECK_SIZEOF(char *, 4) +test $ac_cv_sizeof_long -eq 4 && AC_DEFINE(HAVE_32BIT_LONG) +test $ac_cv_sizeof_long -eq 8 && AC_DEFINE(HAVE_64BIT_LONG) +test $ac_cv_sizeof_char_p -eq 4 && AC_DEFINE(HAVE_32BIT_PTR) +test $ac_cv_sizeof_char_p -eq 8 && AC_DEFINE(HAVE_64BIT_PTR) dnl alternate root and usr prefixes diff --git a/debian/changelog b/debian/changelog index 5f1eae38a..b2066c68a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +xfsprogs (1.3.4-0) unstable; urgency=low + + * Upstream bugfix release; fixes listed below + * Fix endian bug in xfs_db "frag" command + * Several man pages updated to document external log usage + * IA64 build isses fixes (use -fno-strict-aliasing for libraries) + * Fixed several minor compiler warnings when building on IA64 + + -- Nathan Scott Sat, 4 Aug 2001 10:32:00 +1000 + xfsprogs (1.3.3-0) unstable; urgency=low * New upstream release diff --git a/doc/CHANGES b/doc/CHANGES index 59926309e..57d5a3e4f 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,6 +1,8 @@ -xfsprogs-current +xfsprogs-1.3.4 (04 August 2001) + - fix endian bug in xfs_db "frag" command + - small configure script changes to allow cross compilation - several man pages updated to document external log usage - - install yet another shared library symlink for ld to find + - install another shared library symlink for ld to find - switched on -fno-strict-aliasing for library object builds - fix several minor compiler warnings when building on IA64 @@ -11,7 +13,7 @@ xfsprogs-1.3.2 (23 July 2001) - install static libs and libtool archives into /usr/lib - shared libraries are unchanged, however -xfsprogs-1.3.1 (15 Jul 2001) +xfsprogs-1.3.1 (15 July 2001) - updated xfs_types.h file from the kernel changes needed for an xfsdump fix. - tidy up various aspects of the libtool rework @@ -24,14 +26,14 @@ xfsprogs-1.3.1 (15 Jul 2001) - fix sign of BLKGETSIZE ioctl argument in libxfs - updated xfs_fs.h with DMAPI setdm details for dump/restore -xfsprogs-1.3.0 (11 Jul 2001) +xfsprogs-1.3.0 (11 July 2001) - reworked Makefiles to use libtool - new libdisk to allow sharing of generic mount/disk code and - also abstracts individual driver support (LVM, MD, XVM..) - partition table detection so mkfs.xfs doesn't blindly overwrite - small xfs_repair bug fix from Steve -xfsprogs-1.2.8 (02 Jul 2001) +xfsprogs-1.2.8 (02 July 2001) - fixed a bug in libxfs /etc/mtab read-only mount detection - first try procfs, fall back to /etc/mtab, for read-only mounts - sync with recent mount code changes for reiserfs and ext3 probes