diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-05-19 22:55:29 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-05-19 22:55:29 (GMT) |
commit | 79662ede83b35ad9d91b942218cf09e856e48b4c (patch) | |
tree | a2bd2c2e7070aeda9cf2eb97f867cf3ff1b7c92a /src/common | |
parent | 49ae908b6aa3c8c6bca2c79b0a68f587f51b600f (diff) |
Restore full featured Python bindings for binary contents.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/Makefile.am | 4 | ||||
-rw-r--r-- | src/common/leb128.h | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 1c2d11a..a57868d 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -59,11 +59,13 @@ libcommon4_la_SOURCES = \ environment.h environment.c \ extstr.h extstr.c \ io.h io.c \ + leb128.h leb128.c \ + packed.h packed.c \ pathname.h pathname.c \ sort.h sort.c \ xdg.h xdg.c -libcommon4_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS) +libcommon4_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBSSL_CFLAGS) devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%) diff --git a/src/common/leb128.h b/src/common/leb128.h index ae1078a..f438068 100644 --- a/src/common/leb128.h +++ b/src/common/leb128.h @@ -29,9 +29,8 @@ #include <stdlib.h> +#include "datatypes.h" #include "packed.h" -#include "../arch/archbase.h" -#include "../arch/vmpa.h" @@ -72,4 +71,5 @@ bool unpack_uleb128(uleb128_t *, packed_buffer_t *); bool unpack_leb128(leb128_t *, packed_buffer_t *); + #endif /* _COMMON_LEB128_H */ |