We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5517323 commit b2c2396Copy full SHA for b2c2396
1 file changed
get_dependencies.sh
@@ -80,6 +80,14 @@ if [ -d patches/$PJSIP_VERSION ];then
80
patches_dir=patches/$PJSIP_VERSION
81
fi
82
83
+uname -v|grep ARM64 |grep Darwin > /dev/null
84
+
85
+if [ $? -eq 0 ]; then
86
+ rm $patches_dir/005_fix_ffmpeg.patch 2> /dev/null
87
+ rm $patches_dir/007_video_support_dshow_mingw.patch 2> /dev/null
88
+ rm $patches_dir/008_support_mingw_w64.patch 2> /dev/null
89
+fi
90
91
for p in $patches_dir/0*.patch; do
92
echo "Applying patch $p"
93
patch -p0 < $p > /dev/null
0 commit comments