This series of patches adds support for building git on Interix.
Interix is an interesting system, as it lacks some functions that are
normally present on POSIX systems, such as poll(). As I did not have
time to implement poll() on top of select(), these patches simply
disable the three commands that require poll() to be present:
git-daemon, git-upload-archive, and git-upload-pack.
Jonathan Callen (3):
Support building on systems without poll(2)
Support building without inttypes.h
Add Interix support
Makefile | 40 +++++++++++++++++++++++++++++++++++-----
builtin.h | 2 ++
git-compat-util.h | 6 ++++++
git.c | 2 ++
4 files changed, 45 insertions(+), 5 deletions(-)