diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-01 14:35:03 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-01 14:35:03 +0200 |
commit | 9533dc84d7addf792db4f4702b6fc7d7ddd20e78 (patch) | |
tree | 1efcf0fbc9fa590ea7aa6e6ac74cd34f71355a3a /include | |
parent | 79c333899d318bf9b1eec3837833c7f0229d1906 (diff) |
Install libsquashfs.so headers on the system in "sqfs" subdirectory
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r-- | include/data_reader.h | 4 | ||||
-rw-r--r-- | include/data_writer.h | 4 | ||||
-rw-r--r-- | include/highlevel.h | 6 | ||||
-rw-r--r-- | include/sqfs/block_processor.h (renamed from include/block_processor.h) | 2 | ||||
-rw-r--r-- | include/sqfs/compress.h (renamed from include/compress.h) | 0 | ||||
-rw-r--r-- | include/sqfs/id_table.h (renamed from include/id_table.h) | 0 | ||||
-rw-r--r-- | include/sqfs/meta_reader.h (renamed from include/meta_reader.h) | 0 | ||||
-rw-r--r-- | include/sqfs/meta_writer.h (renamed from include/meta_writer.h) | 0 | ||||
-rw-r--r-- | include/sqfs/squashfs.h (renamed from include/squashfs.h) | 0 | ||||
-rw-r--r-- | include/xattr_reader.h | 4 |
10 files changed, 10 insertions, 10 deletions
diff --git a/include/data_reader.h b/include/data_reader.h index 51bfff3..4a4763e 100644 --- a/include/data_reader.h +++ b/include/data_reader.h @@ -9,8 +9,8 @@ #include "config.h" -#include "squashfs.h" -#include "compress.h" +#include "sqfs/squashfs.h" +#include "sqfs/compress.h" #include "fstree.h" typedef struct data_reader_t data_reader_t; diff --git a/include/data_writer.h b/include/data_writer.h index f3b296d..7b1142f 100644 --- a/include/data_writer.h +++ b/include/data_writer.h @@ -9,8 +9,8 @@ #include "config.h" -#include "squashfs.h" -#include "compress.h" +#include "sqfs/squashfs.h" +#include "sqfs/compress.h" #include "fstree.h" #include "util.h" diff --git a/include/highlevel.h b/include/highlevel.h index a455234..aae02cf 100644 --- a/include/highlevel.h +++ b/include/highlevel.h @@ -9,10 +9,10 @@ #include "config.h" +#include "sqfs/squashfs.h" +#include "sqfs/compress.h" +#include "sqfs/id_table.h" #include "data_reader.h" -#include "squashfs.h" -#include "compress.h" -#include "id_table.h" #include "fstree.h" #include <stdint.h> diff --git a/include/block_processor.h b/include/sqfs/block_processor.h index 4944969..18d8c4a 100644 --- a/include/block_processor.h +++ b/include/sqfs/block_processor.h @@ -8,7 +8,7 @@ #define BLOCK_PROCESSOR_H #include "config.h" -#include "compress.h" +#include "sqfs/compress.h" enum { /* only calculate checksum, do NOT compress the data */ diff --git a/include/compress.h b/include/sqfs/compress.h index 1dfba12..1dfba12 100644 --- a/include/compress.h +++ b/include/sqfs/compress.h diff --git a/include/id_table.h b/include/sqfs/id_table.h index dcc8a18..dcc8a18 100644 --- a/include/id_table.h +++ b/include/sqfs/id_table.h diff --git a/include/meta_reader.h b/include/sqfs/meta_reader.h index d5628af..d5628af 100644 --- a/include/meta_reader.h +++ b/include/sqfs/meta_reader.h diff --git a/include/meta_writer.h b/include/sqfs/meta_writer.h index 762cc38..762cc38 100644 --- a/include/meta_writer.h +++ b/include/sqfs/meta_writer.h diff --git a/include/squashfs.h b/include/sqfs/squashfs.h index eb35fdd..eb35fdd 100644 --- a/include/squashfs.h +++ b/include/sqfs/squashfs.h diff --git a/include/xattr_reader.h b/include/xattr_reader.h index a71f0f0..d9fe37b 100644 --- a/include/xattr_reader.h +++ b/include/xattr_reader.h @@ -9,8 +9,8 @@ #include "config.h" -#include "squashfs.h" -#include "compress.h" +#include "sqfs/squashfs.h" +#include "sqfs/compress.h" #include "fstree.h" typedef struct xattr_reader_t xattr_reader_t; |