Skip to content

Commit 3939d53

Browse files
committed
curl-gnumake.sh: CURL_STATICLIB now defined upstream [ci skip]
Ref: curl/curl#11924
1 parent 8b60900 commit 3939d53

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

curl-gnumake.sh

+7-5
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,13 @@ _VER="$1"
4949
# but required for libcurl, which would link to shared libs by default.
5050
LIBS="${LIBS} -Wl,-Bstatic"
5151

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
5759

5860
# CPPFLAGS added after this point only affect libcurl.
5961

0 commit comments

Comments
 (0)