diff options
| author | theAdib <theAdib@users.sourceforge.net> | 2006-11-29 08:49:19 +0000 |
|---|---|---|
| committer | theAdib <theAdib@users.sourceforge.net> | 2006-11-29 08:49:19 +0000 |
| commit | e9e5583886a2dd9cfbc48e086f23b89df425cfa2 (patch) | |
| tree | cec73f581ef3bac45eead858410f876955a61e62 /buildtool.cpp | |
| parent | 'backup' commit. Added widgets to C++-find dialog. Work not finished. (diff) | |
| download | inkscape-e9e5583886a2dd9cfbc48e086f23b89df425cfa2.tar.gz inkscape-e9e5583886a2dd9cfbc48e086f23b89df425cfa2.zip | |
prevent compiling error on gettimeofday on mingw compiler
(bzr r2053)
Diffstat (limited to 'buildtool.cpp')
| -rw-r--r-- | buildtool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtool.cpp b/buildtool.cpp index bd221fe1f..8e0fd0e9d 100644 --- a/buildtool.cpp +++ b/buildtool.cpp @@ -8223,11 +8223,11 @@ bool Make::run(const String &target) status("# %s", version().c_str()); status("####################################################"); struct timeval timeStart, timeEnd; - gettimeofday(&timeStart, NULL); + ::gettimeofday(&timeStart, NULL); specifiedTarget = target; if (!run()) return false; - gettimeofday(&timeEnd, NULL); + ::gettimeofday(&timeEnd, NULL); String timeStr = timeDiffString(timeEnd, timeStart); status("####################################################"); status("# BuildTool Completed : %s", timeStr.c_str()); |
