diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-09-23 11:00:27 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2023-10-24 15:57:18 +0200 |
commit | ee26abcab9faf037cf87438cca20d54e5b0edd05 (patch) | |
tree | 2880119327da17d5024b06a5e63808a295b41410 /bin/sqfs2tar | |
parent | 6e7b20a41c8a7f10392884e1741b031b579a93fa (diff) |
Cleanup: move xfrm stream wrappers to libxfrm
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/sqfs2tar')
-rw-r--r-- | bin/sqfs2tar/Makemodule.am | 2 | ||||
-rw-r--r-- | bin/sqfs2tar/src/sqfs2tar.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/sqfs2tar/Makemodule.am b/bin/sqfs2tar/Makemodule.am index abd1c3b..943a058 100644 --- a/bin/sqfs2tar/Makemodule.am +++ b/bin/sqfs2tar/Makemodule.am @@ -1,7 +1,7 @@ sqfs2tar_SOURCES = bin/sqfs2tar/src/sqfs2tar.c bin/sqfs2tar/src/sqfs2tar.h \ bin/sqfs2tar/src/options.c bin/sqfs2tar/src/iterator.c sqfs2tar_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -sqfs2tar_LDADD = libcommon.a libutil.a libtar.a libio.a libsquashfs.la +sqfs2tar_LDADD = libcommon.a libutil.a libtar.a libsquashfs.la sqfs2tar_LDADD += libxfrm.a libcompat.a libfstree.a sqfs2tar_LDADD += $(ZLIB_LIBS) $(XZ_LIBS) $(LZO_LIBS) $(ZSTD_LIBS) $(BZIP2_LIBS) sqfs2tar_LDADD += $(PTHREAD_LIBS) diff --git a/bin/sqfs2tar/src/sqfs2tar.h b/bin/sqfs2tar/src/sqfs2tar.h index 4c9a8f2..edd29ab 100644 --- a/bin/sqfs2tar/src/sqfs2tar.h +++ b/bin/sqfs2tar/src/sqfs2tar.h @@ -14,7 +14,7 @@ #include "util/strlist.h" #include "tar/tar.h" #include "xfrm/compress.h" -#include "io/xfrm.h" +#include "xfrm/wrap.h" #include <getopt.h> #include <string.h> |