Skip to content

Commit

Permalink
Explicitly bring in zlib for specific case
Browse files Browse the repository at this point in the history
  • Loading branch information
j-woz committed Dec 11, 2024
1 parent d8e7c63 commit ac8b759
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions dev/conda/conda-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ if (( ! ${#R} )) {
export USE_ANT=1
export USE_GCC=1
export USE_TK=0
export USE_ZLIB=0
export USE_ZSH=1

# Allow platform to modify dependencies
Expand Down
4 changes: 3 additions & 1 deletion dev/conda/linux-64/deps.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

# linux-64 DEPS SH

# No changes to defaults.
# For some reason zlib is not found on linux-64, Python 3.8
# as of 2024-12-11:
if [[ $PYTHON_VERSION == 3.8* ]] USE_ZLIB=1
3 changes: 3 additions & 0 deletions dev/conda/pkgs-gcc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# pkgs-gcc.yaml: START
# Extra packages for gcc
- gcc
m4_ifelse(getenv(USE_ZLIB),1,
` - zlib'
)
# pkgs-gcc.yaml: STOP

0 comments on commit ac8b759

Please sign in to comment.