Skip to content

Commit

Permalink
fixup! curl: add 8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre committed Sep 9, 2023
1 parent e646dc3 commit 698727f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
13 changes: 7 additions & 6 deletions subprojects/packagefiles/curl/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -562,12 +562,12 @@ schannel_opt = get_option(
'schannel',
).disable_auto_if(
ssl_backends.length() > 0,
).require(
ssl_opt.allowed(),
error_message: SSL_DISABLED_ERROR,
).require(
host_machine.system() == 'windows',
error_message: WINDOWS_ONLY_ERROR,
).require(
ssl_opt.allowed(),
error_message: SSL_DISABLED_ERROR,
).require(
sspi_opt.allowed(),
error_message: 'feature sspi is disabled',
Expand Down Expand Up @@ -914,10 +914,11 @@ cdata.set('USE_LIBRTMP', rtmp_opt.allowed())

# Samba. {{{

smb_opt = (
smb_opt = get_option(
'smb',
).require(
ntlm_opt.allowed()
and cdata.get('SIZEOF_CURL_OFF_T') > 4
? ENABLED_OPT : DISABLED_OPT
and cdata.get('SIZEOF_CURL_OFF_T') > 4 ? ENABLED_OPT : DISABLED_OPT,
)

smbs_opt = ssl_opt.allowed() ? smb_opt : DISABLED_OPT
Expand Down
5 changes: 3 additions & 2 deletions subprojects/packagefiles/curl/meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,15 @@ option('dict' , type: 'feature')
option('file' , type: 'feature', value: 'enabled')
option('ftp' , type: 'feature')
option('gopher', type: 'feature')
option('ldap' , type: 'feature')
option('ldaps' , type: 'feature')
option('http' , type: 'feature', value: 'enabled')
option('imap' , type: 'feature')
option('ldap' , type: 'feature')
option('ldaps' , type: 'feature')
option('mqtt' , type: 'feature')
option('pop3' , type: 'feature')
option('rtmp' , type: 'feature')
option('rtsp' , type: 'feature')
option('smb' , type: 'feature')
option('smtp' , type: 'feature')
option('telnet', type: 'feature')
option('tftp' , type: 'feature')
Expand Down

0 comments on commit 698727f

Please sign in to comment.