Skip to content

Commit

Permalink
Merge pull request #17 from matthewberends/expose-compression-options
Browse files Browse the repository at this point in the history
Expose Method to Pass Compression Options to Clients
  • Loading branch information
qzhuyan authored Jul 4, 2024
2 parents 74ea8c3 + b4ebbb9 commit 7278505
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion c_src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ $(C_SRC_OUTPUT): $(LZ4_SRC) $(OBJECTS)
$(LZ4_SRC):
curl -L -f -o $(LZ4_SRC_TAR) $(LZ4_SRC_PACKAGE_LINK)
tar zxf $(LZ4_SRC_TAR)
$(MAKE) CFLAGS='-O3 -fPIC -save-temps' -C $(LZ4_SRC) BUILD_STATIC=no
$(MAKE) CFLAGS='-O3 -fPIC' -C $(LZ4_SRC) BUILD_STATIC=no

%.o: %.c
$(COMPILE_C) $(OUTPUT_OPTION) $<
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/lz4b_frame.erl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-module(lz4b_frame).
-include("lz4b_frame.hrl").
-export([compress/1,
compress/2,
decompress/1,
decompress/2,
incremental_decompress/3,
Expand Down

0 comments on commit 7278505

Please sign in to comment.