diff options
author | marha <marha@users.sourceforge.net> | 2010-10-30 18:34:27 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-10-30 18:34:27 +0000 |
commit | 75ef19188d021a5e965198bde774c1c33bedc1f3 (patch) | |
tree | f20be1d1e684a5388c0e386ea302c1b3e98359d0 /tools/mhmake/src/fileinfo.h | |
parent | d9ddf066b898491827ffd6f1d115534c54c82f6b (diff) | |
download | vcxsrv-75ef19188d021a5e965198bde774c1c33bedc1f3.tar.gz vcxsrv-75ef19188d021a5e965198bde774c1c33bedc1f3.tar.bz2 vcxsrv-75ef19188d021a5e965198bde774c1c33bedc1f3.zip |
Increased gnu make compatibility.
Diffstat (limited to 'tools/mhmake/src/fileinfo.h')
-rw-r--r-- | tools/mhmake/src/fileinfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/mhmake/src/fileinfo.h b/tools/mhmake/src/fileinfo.h index 8d58a1efa..bb5e0ce71 100644 --- a/tools/mhmake/src/fileinfo.h +++ b/tools/mhmake/src/fileinfo.h @@ -136,7 +136,7 @@ class fileinfo bool m_IsPhony;
int m_BuildStatus; /* Bit 0 means the target built is started, Bit 1 means the target is still building */
refptr<rule> m_pRule;
- mhmakeparser *m_pAutoDepsMakefile;
+ mhmakefileparser *m_pAutoDepsMakefile;
vector<fileinfo*> m_Deps;
mh_time_t m_Date;
uint32 m_CommandsMd5_32; // 32-bit Md5 checksum of commands to build this target
@@ -291,7 +291,7 @@ public: return m_Deps;
}
string GetPrerequisits(void) const;
- void SetAutoDepsScan(mhmakeparser *pMakefile)
+ void SetAutoDepsScan(mhmakefileparser *pMakefile)
{
#ifdef _DEBUG
if (m_pAutoDepsMakefile)
@@ -299,7 +299,7 @@ public: #endif
m_pAutoDepsMakefile=pMakefile;
}
- mhmakeparser *GetAutoDepsMakefile(void) const
+ mhmakefileparser *GetAutoDepsMakefile(void) const
{
return m_pAutoDepsMakefile;
}
|