diff options
| author | Scott J. Goldman <scottjgo@gmail.com> | 2012-05-09 22:30:57 -0700 |
|---|---|---|
| committer | Scott J. Goldman <scottjgo@gmail.com> | 2012-05-10 09:52:49 -0700 |
| commit | ec42eafd4adea021d86c6fa2cbde92b87177bf3d (patch) | |
| tree | 15350fc0a404028bc7946cbb8a06cde391a792e0 /src/win32/posix.h | |
| parent | a9d9965b35710f865d77a13da1cf084d0c870b55 (diff) | |
| download | libgit2-ec42eafd4adea021d86c6fa2cbde92b87177bf3d.tar.gz | |
Hook up Windows compat fnmatch() for Solaris
Since Solaris does not support some of the same flags as glibc fnmatch(),
we just use the implementation we have for Windows.
Now that it's no longer a windows-specific thing, I moved it into compat/
instead of win32/
Diffstat (limited to 'src/win32/posix.h')
| -rw-r--r-- | src/win32/posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/posix.h b/src/win32/posix.h index 2666fccb4..baa4a3b4e 100644 --- a/src/win32/posix.h +++ b/src/win32/posix.h @@ -8,7 +8,7 @@ #define INCLUDE_posix__w32_h__ #include "common.h" -#include "fnmatch.h" +#include "compat/fnmatch.h" #include "utf-conv.h" GIT_INLINE(int) p_link(const char *old, const char *new) |
