You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# if [[ $BLD_CONFIG_PREFER_STATIC_LINKING -eq 1 ]]; then
18
-
# BLD_CONFIG_CONFIG_CMD_ADDL+=("--enable-static")
19
-
# fi
20
17
21
18
if [[ $BLD_CONFIG_BUILD_DEBUG-eq 1 ]];then#if switching back they should just regen configure
22
19
BLD_CONFIG_CONFIG_CMD_ADDL+=("--enable-assert")
23
20
export CFLAGS="-DENABLE_DEBUG $CFLAGS"
24
21
fi
25
22
add_lib_pkg_config "libpsl""pcre2""zlib""openssl"
26
23
#add_vcpkg_pkg_config "openssl"
27
-
add_vcpkg_pkg_config "brotli""zstd"
28
24
29
25
iftest 5 -gt 100;then
30
26
echo"Just move the fi down as you want to skip steps, or pass the step to skip to (per below) as the first arg"
@@ -37,6 +33,10 @@ fi
37
33
38
34
if [[ -z$SKIP_STEP||$SKIP_STEP=="our_patch" ]];then
39
35
apply_our_repo_patch;#looks in the patches folder for repo_BUILD_NAME.patch and if found applies it. Easy way to generate the patch from modified repo, go to your modified branch (make sure code committed) and run: git diff --color=never master > repo_NAME.patch
36
+
if [[ $BLD_CONFIG_PREFER_STATIC_LINKING-eq 1 ]];then
37
+
sed -i -E "s#PKG_CHECK_MODULES_STATIC#PKG_CHECK_MODULES#g;s#PKG_CHECK_MODULES#PKG_CHECK_MODULES_STATIC#g" configure.ac
0 commit comments