Add schannel stub
This commit is contained in:
parent
a9435640a0
commit
9c25ccf055
1 changed files with 21 additions and 0 deletions
21
scripts.d/50-schannel.sh
Executable file
21
scripts.d/50-schannel.sh
Executable 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
|
||||||
|
}
|
Loading…
Reference in a new issue