#
PKG_MAJOR=1
PKG_MINOR=3
-PKG_REVISION=3
+PKG_REVISION=4
PKG_BUILD=0
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)
__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
+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
-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
- 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
- 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