File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,13 @@ _VER="$1"
49
49
# but required for libcurl, which would link to shared libs by default.
50
50
LIBS=" ${LIBS} -Wl,-Bstatic"
51
51
52
- # Use -DCURL_STATICLIB when compiling libcurl. This option prevents marking
53
- # public libcurl functions as 'exported'. Useful to avoid the chance of
54
- # libcurl functions getting exported from final binaries when linked against
55
- # the static libcurl lib.
56
- CPPFLAGS=" ${CPPFLAGS} -DCURL_STATICLIB"
52
+ if [ " ${CURL_VER_} " = ' 8.3.0' ]; then
53
+ # Use -DCURL_STATICLIB when compiling libcurl. This option prevents marking
54
+ # public libcurl functions as 'exported'. Useful to avoid the chance of
55
+ # libcurl functions getting exported from final binaries when linked against
56
+ # the static libcurl lib.
57
+ CPPFLAGS=" ${CPPFLAGS} -DCURL_STATICLIB"
58
+ fi
57
59
58
60
# CPPFLAGS added after this point only affect libcurl.
59
61
You can’t perform that action at this time.
0 commit comments