summaryrefslogtreecommitdiff
path: root/lib/sqfs/comp/lz4/README
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-12-27 11:44:20 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-12-28 16:15:35 +0100
commit113b174c5807f76cb14cfed7a8f86a299393666e (patch)
tree5049d9bf32dbc582c5da0f251e7fdfcfe817c2f4 /lib/sqfs/comp/lz4/README
parent2e109625bb7496bf1f3e75e30345c8cbd6eacede (diff)
Add a small version of liblz4 that can be built in statically
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/comp/lz4/README')
-rw-r--r--lib/sqfs/comp/lz4/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/sqfs/comp/lz4/README b/lib/sqfs/comp/lz4/README
new file mode 100644
index 0000000..4c15347
--- /dev/null
+++ b/lib/sqfs/comp/lz4/README
@@ -0,0 +1,12 @@
+This source has been extracted from the lz4 release tarball, version 1.9.2
+released on August 20th, 2019.
+
+The source code originates from the "lib" subdirectory. The license is included
+in the subdirectory licenses/LZ4.txt in the tools-ng subdirectory of the
+squashfs-tools-ng source package.
+
+The following modifications have been made:
+ - Always define LZ4LIB_API and LZ4LIB_STATIC_API to set default visibility to
+ hidden, so the LZ4 functions aren't exported from libsquashfs.
+ - Remove the streaming functions and most of the functions that aren't used
+ by libsquashfs.