Skip to content

Commit

Permalink
openssl: suppress nasm warning with meson version >=0.64 on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Teselka committed Sep 10, 2024
1 parent 5341277 commit c28e9f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subprojects/packagefiles/openssl/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ if gas_or_nasm
endif
elif is_windows
has_win_asm = add_languages('as', native: false, required: false)
if not has_win_asm and meson.version().version_compare('>=0.64')
has_win_asm = add_languages('nasm', native: false, required: false)
if not has_win_asm
has_win_asm = add_languages(meson.version().version_compare('>=0.64') ? 'nasm' : '', native: false, required: false)
endif

if has_win_asm
Expand Down

0 comments on commit c28e9f8

Please sign in to comment.