We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd94b89 commit 2b39222Copy full SHA for 2b39222
1 file changed
CMakeLists.txt
@@ -186,6 +186,14 @@ list(APPEND JUCE_COMPILE_DEFINITIONS
186
JUCE_MODAL_LOOPS_PERMITTED=1
187
)
188
189
+if(DEFINED ENV{CIBW_BUILD} AND "$ENV{CIBW_BUILD}" MATCHES "musllinux")
190
+ # For Alpine/musllinux compatibility:
191
+ add_compile_definitions(
192
+ _NL_IDENTIFICATION_LANGUAGE=0x42
193
+ _NL_IDENTIFICATION_TERRITORY=0x43
194
+ )
195
+endif()
196
+
197
# Rubber Band library flags
198
list(APPEND RUBBERBAND_COMPILE_DEFINITIONS
199
USE_BQRESAMPLER=1
0 commit comments