Skip to content

Commit

Permalink
Meson: Set new minimum OpenSSL version
Browse files Browse the repository at this point in the history
  • Loading branch information
insunaa committed Jul 15, 2024
1 parent 4c12951 commit c42755a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if not boost_dep.found()
endif
dblib_dep = dependency('mariadb', 'libmariadb', 'mysql', 'libmysql', 'postgresql', required: false)
zlib_dep = dependency('zlib', version: '>=1.2.13', static: true, fallback: ['zlib', 'zlib_dep'], required: true)
openssl_dep = dependency('openssl', version: '>=1.1.1', static: true, fallback: ['openssl'], required: true)
openssl_dep = dependency('openssl', version: '>=3.0.14', static: true, fallback: ['openssl'], required: true)
utfcpp_dep = dependency('utf8cpp', 'utfcpp', static: true, required: false)
sqlite_dep = dependency('sqlite3', static: true, fallback: ['sqlite3'], required: get_option('SQLITE'))

Expand Down

0 comments on commit c42755a

Please sign in to comment.