mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
70 lines
3.1 KiB
Text
70 lines
3.1 KiB
Text
--- src/dot.cpp.orig 2015-12-28 19:46:20 UTC
|
|
+++ src/dot.cpp
|
|
@@ -39,6 +39,7 @@
|
|
#include "dirdef.h"
|
|
#include "vhdldocgen.h"
|
|
#include "ftextstream.h"
|
|
+#include <sys/types.h>
|
|
#include "md5.h"
|
|
#include "memberlist.h"
|
|
#include "groupdef.h"
|
|
@@ -2305,10 +2306,8 @@ void DotGfxHierarchyTable::createGraph(D
|
|
}
|
|
writeGraphFooter(md5stream);
|
|
resetReNumbering();
|
|
- uchar md5_sig[16];
|
|
QCString sigStr(33);
|
|
- MD5Buffer((const unsigned char *)theGraph.data(),theGraph.length(),md5_sig);
|
|
- MD5SigToString(md5_sig,sigStr.rawData(),33);
|
|
+ MD5Data((const unsigned char *)theGraph.data(),theGraph.length(),sigStr.rawData());
|
|
bool regenerate=FALSE;
|
|
if (checkAndUpdateMd5Signature(absBaseName,sigStr) ||
|
|
!checkDeliverables(absImgName,absMapName))
|
|
@@ -3072,10 +3071,8 @@ QCString computeMd5Signature(DotNode *ro
|
|
}
|
|
}
|
|
writeGraphFooter(md5stream);
|
|
- uchar md5_sig[16];
|
|
QCString sigStr(33);
|
|
- MD5Buffer((const unsigned char *)buf.data(),buf.length(),md5_sig);
|
|
- MD5SigToString(md5_sig,sigStr.rawData(),33);
|
|
+ MD5Data((const unsigned char *)buf.data(),buf.length(),sigStr.rawData());
|
|
if (reNumber)
|
|
{
|
|
resetReNumbering();
|
|
@@ -4009,10 +4006,8 @@ QCString DotDirDeps::writeGraph(FTextStr
|
|
FTextStream md5stream(&theGraph);
|
|
//m_dir->writeDepGraph(md5stream);
|
|
writeDotDirDepGraph(md5stream,m_dir,linkRelations);
|
|
- uchar md5_sig[16];
|
|
QCString sigStr(33);
|
|
- MD5Buffer((const unsigned char *)theGraph.data(),theGraph.length(),md5_sig);
|
|
- MD5SigToString(md5_sig,sigStr.rawData(),33);
|
|
+ MD5Data((const unsigned char *)theGraph.data(),theGraph.length(),sigStr.rawData());
|
|
bool regenerate=FALSE;
|
|
if (checkAndUpdateMd5Signature(absBaseName,sigStr) ||
|
|
!checkDeliverables(graphFormat==GOF_BITMAP ? absImgName :
|
|
@@ -4154,10 +4149,8 @@ void generateGraphLegend(const char *pat
|
|
md5stream << " Node18 -> Node9 [dir=\"back\",color=\"darkorchid3\",fontsize=\"" << FONTSIZE << "\",style=\"dashed\",label=\"m_usedClass\",fontname=\"" << FONTNAME << "\"];\n";
|
|
md5stream << " Node18 [shape=\"box\",label=\"Used\",fontsize=\"" << FONTSIZE << "\",height=0.2,width=0.4,fontname=\"" << FONTNAME << "\",color=\"black\",URL=\"$classUsed" << Doxygen::htmlFileExtension << "\"];\n";
|
|
writeGraphFooter(md5stream);
|
|
- uchar md5_sig[16];
|
|
QCString sigStr(33);
|
|
- MD5Buffer((const unsigned char *)theGraph.data(),theGraph.length(),md5_sig);
|
|
- MD5SigToString(md5_sig,sigStr.rawData(),33);
|
|
+ MD5Data((const unsigned char *)theGraph.data(),theGraph.length(),sigStr.rawData());
|
|
QCString absBaseName = (QCString)path+"/graph_legend";
|
|
QCString absDotName = absBaseName+".dot";
|
|
QCString imgExt = getDotImageExtension();
|
|
@@ -4557,10 +4550,8 @@ QCString DotGroupCollaboration::writeGra
|
|
|
|
writeGraphFooter(md5stream);
|
|
resetReNumbering();
|
|
- uchar md5_sig[16];
|
|
QCString sigStr(33);
|
|
- MD5Buffer((const unsigned char *)theGraph.data(),theGraph.length(),md5_sig);
|
|
- MD5SigToString(md5_sig,sigStr.rawData(),33);
|
|
+ MD5Data((const unsigned char *)theGraph.data(),theGraph.length(),sigStr.rawData());
|
|
QCString imgExt = getDotImageExtension();
|
|
QCString imgFmt = Config_getEnum("DOT_IMAGE_FORMAT");
|
|
QCString baseName = m_diskName;
|