]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
bump the revision number to 4.
authorNathan Scott <nathans@sgi.com>
Sat, 4 Aug 2001 01:07:30 +0000 (01:07 +0000)
committerNathan Scott <nathans@sgi.com>
Sat, 4 Aug 2001 01:07:30 +0000 (01:07 +0000)
VERSION
configure.in
debian/changelog
doc/CHANGES

diff --git a/VERSION b/VERSION
index ee5fd9770fd9ff72598a351b835f56b4dc1e1020..0e2eb4a105ad28e3991c7af81738c871a7c32a82 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=1
 PKG_MINOR=3
-PKG_REVISION=3
+PKG_REVISION=4
 PKG_BUILD=0
index 553ec532fff16f16c235d72334d284ad19a26d64..7cb376448d33323754beb218adb4acb42e385b7f 100644 (file)
@@ -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 <<End-of-File >conftest.c
-#include <stdio.h>
-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 <<End-of-File >conftest.c
-#include <stdio.h>
-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
index 5f1eae38a1dab40e2d8525265db4492020a08594..b2066c68a50ced6e3dab43b4821f3c990d30ed18 100644 (file)
@@ -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 <nathans@debian.org>  Sat,  4 Aug 2001 10:32:00 +1000
+
 xfsprogs (1.3.3-0) unstable; urgency=low
 
   * New upstream release
index 59926309e292d54ab079a914f53909c65fe67fa1..57d5a3e4ffa41d0cf3c2bdbddf65599898521216 100644 (file)
@@ -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