diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2017-05-12 19:08:17 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2017-05-12 19:08:17 +0000 |
commit | f9c458ae7c94df09ff52f49e5789671c50263f2f (patch) | |
tree | e180a2f2f390b3b30812af5270fa9582ac5bf0e5 /sysutils/xfsprogs/files/patch-repair_progress.c | |
parent | 8a3b7536e50c2f89f4ebff02a5dddfce63b4af5e (diff) |
- Update to version 3.2.4, the latest in 3.x branch. Versions 4.x are
available, but they do not configure (this might be a red herring,
pending further investigation):
...
checking for blkid_probe_get_topology... no
FATAL ERROR: could not find a valid BLKID header.
Install the Block device ID development package.
- Because DISTNAME is sane now, setting of EXTRACT_SUFX and WRKSRC are
no longer needed and were dropped
- DESTDIR is now respected by `install-sh' script, which allows to drop
patching of individual makefiles and `include/buildmacros' file
- All programs are installed under ${LOCALBASE}/sbin now
- This version requires a number of patches to build on FreeBSD, most
importantly:
* Use getmntinfo() and extattr_set_fd() APIs instead of Linuxish
getmntent() and fsetxattr()
* Rename LIST_HEAD -> XFS_LIST_HEAD macro to avoid clash with our
own one provided by queue(3)
* Disable missing mremap(2) system call support in `io/mmap.c'
* Replace `dirent->d_off' with more portable call to telldir()
* Add missing `#include <inttypes.h>' in several files, etc.
TIMESTAMP (xfsprogs-3.2.4.tar.gz) = 1438219249
Notes
Notes:
svn path=/head/; revision=440701
Diffstat (limited to 'sysutils/xfsprogs/files/patch-repair_progress.c')
-rw-r--r-- | sysutils/xfsprogs/files/patch-repair_progress.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysutils/xfsprogs/files/patch-repair_progress.c b/sysutils/xfsprogs/files/patch-repair_progress.c new file mode 100644 index 000000000000..eb0d4c92c28c --- /dev/null +++ b/sysutils/xfsprogs/files/patch-repair_progress.c @@ -0,0 +1,8 @@ +--- repair/progress.c.orig 2015-07-24 04:28:04 UTC ++++ repair/progress.c +@@ -1,4 +1,5 @@ + ++#include <inttypes.h> + #include <libxfs.h> + #include "globals.h" + #include "progress.h" |