Skip to content

Commit cfd6921

Browse files
committed
CHANGE: zmq version to avoid errors in OS X
1 parent 2c27558 commit cfd6921

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build-ffmpeg

+4-2
Original file line numberDiff line numberDiff line change
@@ -888,9 +888,11 @@ fi
888888
## zmq library
889889
##
890890

891-
if build "libzmq" "4.3.5"; then
891+
if build "libzmq" "4.3.1"; then
892892
download "https://github.com/zeromq/libzmq/releases/download/v$CURRENT_PACKAGE_VERSION/zeromq-$CURRENT_PACKAGE_VERSION.tar.gz"
893-
execute ./autogen.sh
893+
if [[ "$OSTYPE" == "darwin"* ]]; then
894+
export XML_CATALOG_FILES=/usr/local/etc/xml/catalog
895+
fi
894896
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
895897
execute make -j $MJOBS
896898
execute make install

0 commit comments

Comments
 (0)