We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef8afe6 commit 9ba5f11Copy full SHA for 9ba5f11
external_deps/build.sh
@@ -167,6 +167,7 @@ download_extract() {
167
}
168
169
# Build pkg-config
170
+# Still needed, at least on macos, for opusfile
171
build_pkgconfig() {
172
local dir_name="pkg-config-${PKGCONFIG_VERSION}"
173
local archive_name="${dir_name}.tar.gz"
@@ -178,7 +179,7 @@ build_pkgconfig() {
178
179
180
cd "${dir_name}"
181
# The default -O2 is dropped when there's user-provided CFLAGS.
- CFLAGS="${CFLAGS} -O2" ./configure --host="${HOST}" --prefix="${PREFIX}" --libdir="${PREFIX}/lib" --with-internal-glib
182
+ CFLAGS="${CFLAGS} -O2 -Wno-error=int-conversion" ./configure --host="${HOST}" --prefix="${PREFIX}" --libdir="${PREFIX}/lib" --with-internal-glib
183
make
184
make install
185
0 commit comments