diff options
author | Ben Straub <bs@github.com> | 2013-08-13 11:37:31 -0700 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2013-08-13 11:37:31 -0700 |
commit | 2af9bcb2dbb47adafa7eecbf41ff113da7fa9d1b (patch) | |
tree | 190f1f1917ac62a0f77ce54746fc3715f4427440 | |
parent | 40948998badd892754a55197ef1b6b47b107afed (diff) | |
parent | e12618b1ecea0eda5bc23662c78b678ca5a27013 (diff) | |
download | libgit2-2af9bcb2dbb47adafa7eecbf41ff113da7fa9d1b.tar.gz |
Merge pull request #1779 from ben/win32-precompiled-header-speedup
Speed up build under MSVC
-rw-r--r-- | src/win32/precompiled.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/win32/precompiled.h b/src/win32/precompiled.h index 5de7e6f34..cbfe98812 100644 --- a/src/win32/precompiled.h +++ b/src/win32/precompiled.h @@ -1,4 +1,5 @@ #include "git2.h" +#include "common.h" #include <assert.h> #include <errno.h> @@ -6,6 +7,8 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <fcntl.h> +#include <time.h> #include <sys/types.h> #include <sys/stat.h> |