Skip to content

Commit

Permalink
fix: enable thread safety if version is less than 17
Browse files Browse the repository at this point in the history
  • Loading branch information
brianheineman committed Sep 28, 2024
1 parent 71d36e4 commit 614a9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.linux-musl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN major_version=$(echo "$POSTGRESQL_VERSION" | awk -F. '{print $1}') && \
--enable-integer-datetimes \
--enable-option-checking=fatal \
--enable-tap-tests \
--enable-thread-safety \
$([ $major_version -le 16 ] && echo "--enable-thread-safety") \
--with-gssapi \
$([ $major_version -ge 14 ] && echo "--with-icu" || echo "--without-icu") \
--without-ldap \
Expand Down

0 comments on commit 614a9ef

Please sign in to comment.