[FFmpeg-cvslog] regtest: add openssl to md5 alternatives

Mans Rullgard git
Tue Jan 18 23:07:49 CET 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Thu Oct  7 13:54:10 2010 +0100| [ee6184a8d921f22ecbb2b78819cb3d18685a389a] | committer: Mans Rullgard

regtest: add openssl to md5 alternatives

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ee6184a8d921f22ecbb2b78819cb3d18685a389a
---

 tests/md5.sh |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/tests/md5.sh b/tests/md5.sh
index 6809169..16b0281 100644
--- a/tests/md5.sh
+++ b/tests/md5.sh
@@ -6,6 +6,8 @@ elif [ X"$(echo | md5 2> /dev/null)" != X ]; then
     do_md5sum() { md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; }
 elif [ -x /sbin/md5 ]; then
     do_md5sum() { /sbin/md5 -r $1 | sed 's# \**\./# *./#'; }
+elif openssl version >/dev/null 2>&1; then
+    do_md5sum() { openssl md5 $1 | sed 's/MD5(\(.*\))= \(.*\)/\2 *\1/'; }
 else
     do_md5sum() { echo No md5sum program found; }
 fi




More information about the ffmpeg-cvslog mailing list