Skip to content

Commit

Permalink
Merge pull request #136 from isuruf/icu
Browse files Browse the repository at this point in the history
Fix installing libxml2 and icu on windows
  • Loading branch information
ocefpaf authored Oct 30, 2024
2 parents 5f7ad40 + d699516 commit 607ca0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ c_compiler: # [osx]
cxx_compiler: # [osx]
- clang_bootstrap # [osx]

# currently windows build does not work with icu.
# if support is added, add a conflict with icu for the non-icu
# build by updating run_constrained
with_icu:
- yes # [not win]
- no
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source:
- 0002-Make-and-install-a-pkg-config-file-on-Windows.patch

build:
number: 0
number: 1
run_exports:
# remove symbols at minor versions according to
# https://abi-laboratory.pro/tracker/timeline/libxml2/
Expand All @@ -37,7 +37,7 @@ requirements:
- xz # [not win]
- zlib
run_constrained:
- icu <0.0a0 # [with_icu != "yes"]
- icu <0.0a0 # [with_icu != "yes" and not win]

test:
requires:
Expand Down

0 comments on commit 607ca0c

Please sign in to comment.