Skip to content
Snippets Groups Projects
Commit 33dcdf9e authored by Sebastian Dröge's avatar Sebastian Dröge
Browse files

configure: Pass CC, LD, AS, AR and NM to the libav configure if set

parent c696b3c9
No related branches found
No related tags found
No related merge requests found
......@@ -337,6 +337,26 @@ else
;;
esac
if test x"$AR" != x; then
emblibav_configure_args="$emblibav_configure_args --ar=\\\"\\\$AR\\\""
fi
if test x"$AS" != x; then
emblibav_configure_args="$emblibav_configure_args --as=\\\"\\\$AS\\\""
fi
if test x"$CC" != x; then
emblibav_configure_args="$emblibav_configure_args --cc=\\\"\\\$CC\\\""
fi
if test x"$LD" != x; then
emblibav_configure_args="$emblibav_configure_args --ld=\\\"\\\$CC\\\""
fi
if test x"$NM" != x; then
emblibav_configure_args="$emblibav_configure_args --nm=\\\"\\\$NM\\\""
fi
dnl checks for extra enable/disable flags
LIBAV_OPTS="(cd $srcdir/gst-libs/ext/libav && ./configure --help)"
# Let's check if we can disable the building of the libav binary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment