diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2014-08-09 19:39:09 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2014-08-09 19:39:09 +0000 |
commit | a3f1ec239820d7d1954494444a9fa998dd582c3d (patch) | |
tree | 9fb8601962c460a8441eece49173e2de98960558 /devel/doxygen/files/patch-md5-dirdef | |
parent | Finish stage support (diff) |
Update devel/doxygen to 1.8.7
Update dependent ports to build with it
Most of work by: pi@
Exp-run: self
PR: ports/190943
Notes
Notes:
svn path=/head/; revision=364468
Diffstat (limited to 'devel/doxygen/files/patch-md5-dirdef')
-rw-r--r-- | devel/doxygen/files/patch-md5-dirdef | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/doxygen/files/patch-md5-dirdef b/devel/doxygen/files/patch-md5-dirdef new file mode 100644 index 000000000000..5789af46e2fa --- /dev/null +++ b/devel/doxygen/files/patch-md5-dirdef @@ -0,0 +1,19 @@ +--- src/dirdef.cpp-orig 2014-06-11 20:11:16.000000000 +0200 ++++ src/dirdef.cpp 2014-06-11 20:11:59.000000000 +0200 +@@ -1,3 +1,4 @@ ++#include <sys/types.h> + #include "md5.h" + + #include "dirdef.h" +@@ -83,10 +84,8 @@ + QCString result; + + // convert to md5 hash +- uchar md5_sig[16]; + QCString sigStr(33); +- MD5Buffer((const unsigned char *)anchor.data(),anchor.length(),md5_sig); +- MD5SigToString(md5_sig,sigStr.data(),33); ++ MD5Data((const unsigned char *)anchor.data(),anchor.length(),sigStr.data()); + return sigStr; + + // old algorithm |