Skip to content

Commit

Permalink
Remove libdeflate
Browse files Browse the repository at this point in the history
  • Loading branch information
cjw85 committed Nov 22, 2021
1 parent 005ae8d commit db3ed2a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.4.4]
### Fixed
- Removed libdeflate from conda build which caused issues with threading.

## [v0.4.3]
### Changed
Expand Down
5 changes: 3 additions & 2 deletions conda/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

NAME=fastcat

export HTS_CONF_ARGS="--prefix=${PREFIX} --enable-libcurl --with-libdeflate --enable-plugins --enable-gcs --enable-s3"
# don't enable libdeflate -- seems to cause hangs when used with threaded decompression
export HTS_CONF_ARGS="--prefix=${PREFIX} --enable-libcurl --enable-plugins --enable-gcs --enable-s3"
export EXTRA_CFLAGS="-I$PREFIX/include"
export EXTRA_LDFLAGS="-L$PREFIX/lib"
export EXTRA_LIBS="-ldl -ldeflate"
export EXTRA_LIBS="-ldl"

OS=$(uname)
if [[ "$OS" == "Darwin" ]]; then
Expand Down
2 changes: 0 additions & 2 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@ requirements:
- bzip2
- xz
- zlib
- libdeflate >=1.7,<1.8.0a0
- openssl # [not osx]
run:
- libcurl
- bzip2
- xz
- zlib
- libdeflate >=1.7,<1.8.0a0
- openssl # [not osx]

test:
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

const char *argp_program_version = "0.4.3";
const char *argp_program_version = "0.4.4";

0 comments on commit db3ed2a

Please sign in to comment.