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.
46 lines
1.3 KiB
46 lines
1.3 KiB
Index: configure |
|
--- configure.orig 2006-12-05 21:49:30 +0100 |
|
+++ configure 2006-12-06 10:23:57 +0100 |
|
@@ -84,7 +84,7 @@ |
|
fi |
|
|
|
echo $ECHO_N "checking to see if $PREFIX/bin/md5sum is Microbrew... $ECHO_C" |
|
-if [ -x $PREFIX/bin/md5sum ]; then |
|
+if false; then |
|
$PREFIX/bin/md5sum --version | grep "Microbrew" > /dev/null 2>&1 |
|
if [ $? != 0 ]; then |
|
echo "no (will not overwrite)" |
|
@@ -99,7 +99,7 @@ |
|
fi |
|
|
|
echo $ECHO_N "checking to see if $PREFIX/bin/sha1sum is Microbrew... $ECHO_C" |
|
-if [ -x $PREFIX/bin/sha1sum ]; then |
|
+if false; then |
|
$PREFIX/bin/sha1sum --version | grep "Microbrew" > /dev/null 2>&1 |
|
if [ $? != 0 ]; then |
|
echo "no (will not overwrite)" |
|
@@ -114,7 +114,7 @@ |
|
fi |
|
|
|
echo $ECHO_N "checking to see if $PREFIX/bin/ripemd160sum is Microbrew... $ECHO_C" |
|
-if [ -x $PREFIX/bin/ripemd160sum ]; then |
|
+if false; then |
|
$PREFIX/bin/ripemd160sum --version | grep "Microbrew" > /dev/null 2>&1 |
|
if [ $? != 0 ]; then |
|
echo "no (will not overwrite)" |
|
Index: md5sum.c |
|
--- md5sum.c.orig 2006-12-05 21:49:30 +0100 |
|
+++ md5sum.c 2006-12-06 10:27:54 +0100 |
|
@@ -30,10 +30,11 @@ |
|
|
|
**********************************************************************/ |
|
|
|
+#include <string.h> |
|
+#include <sys/types.h> |
|
#include <openssl/md5.h> |
|
#include <openssl/sha.h> |
|
#include <openssl/ripemd.h> |
|
-#include <sys/types.h> |
|
#include <sys/stat.h> |
|
|
|
#include "parseopts.h"
|
|
|