diff options
| author | John Haley <johnh@axosoft.com> | 2015-08-05 10:19:06 -0700 |
|---|---|---|
| committer | John Haley <johnh@axosoft.com> | 2015-08-05 13:02:58 -0700 |
| commit | eba784d24d12ad7243708d97d80427bbdc9fd2b7 (patch) | |
| tree | 3f1c8d36fb0b29c9c443aa89f682d507cae53d49 /src/util.c | |
| parent | cf716beed2f4729cf01a9822d75b4f1ebf7ccbf1 (diff) | |
| download | libgit2-eba784d24d12ad7243708d97d80427bbdc9fd2b7.tar.gz | |
Fix duplicate basenames to support older VS
With Visual Studio versions 2008 and older they ignore the full path to files and only check
the basename of the file to find a collision. Additionally, having duplicate basenames can break
other build tools like GYP.
This fixes https://github.com/libgit2/libgit2/issues/3356
Diffstat (limited to 'src/util.c')
| -rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index b08b2b884..b3929bca2 100644 --- a/src/util.c +++ b/src/util.c @@ -11,7 +11,7 @@ #include "posix.h" #ifdef GIT_WIN32 -# include "win32/buffer.h" +# include "win32/w32_buffer.h" #endif #ifdef _MSC_VER |
