Add schannel stub

This commit is contained in:
BtbN 2020-09-03 19:40:06 +02:00
parent a9435640a0
commit 9c25ccf055
1 changed files with 21 additions and 0 deletions

21
scripts.d/50-schannel.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
ffbuild_enabled() {
[[ $TARGET == win* ]]
}
ffbuild_dockerstage() {
return 0
}
ffbuild_dockerbuild() {
return 0
}
ffbuild_configure() {
echo --enable-schannel
}
ffbuild_unconfigure() {
echo --disable-schannel
}