mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
497 B
13 lines
497 B
# try to find an md5 program |
|
|
|
if [ X"$(echo | md5sum 2> /dev/null)" != X ]; then |
|
do_md5sum() { md5sum -b $1; } |
|
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
|
|
|