diff --git a/configure b/configure index b4231582955..f998e739a4a 100755 --- a/configure +++ b/configure @@ -383,9 +383,16 @@ do if [ $i = mozjs ]; then CONFIGURE_SCRIPT="${CFG_SRC_DIR}src/${i}/js/src/configure" fi + + # needed because Azure's configure wants "--enable-cairo --enable-skia" + CONFIGURE_ARGS="" + if [ $i = "rust-azure" ]; then + CONFIGURE_ARGS="--enable-cairo --enable-skia" + fi + if [ -f ${CONFIGURE_SCRIPT} ] then - sh ${CONFIGURE_SCRIPT} + sh ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS} fi done diff --git a/src/rust-azure b/src/rust-azure index 55b0d15f154..2a99fd9b533 160000 --- a/src/rust-azure +++ b/src/rust-azure @@ -1 +1 @@ -Subproject commit 55b0d15f154986d85a53893e198ab6c750c0b728 +Subproject commit 2a99fd9b53339ba286fa3c70fb2e9c146b5e5fc4