summaryrefslogtreecommitdiff
path: root/config.mak.uname
diff options
context:
space:
mode:
authorKarsten Blees <blees@dcon.de>2011-01-07 16:34:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-09 22:10:52 (GMT)
commit1d94c403fd52eddd2c4d6c0123f64c56a79bfca7 (patch)
tree9b9030a3b1c1a2747f16c724a8d22ebd0af7c3ef /config.mak.uname
parentbce14aa132e0064d9a9b1c7ad98e71e22c6e0272 (diff)
downloadgit-1d94c403fd52eddd2c4d6c0123f64c56a79bfca7.zip
git-1d94c403fd52eddd2c4d6c0123f64c56a79bfca7.tar.gz
git-1d94c403fd52eddd2c4d6c0123f64c56a79bfca7.tar.bz2
Win32 dirent: remove unused dirent.d_ino member
There are no proper inodes on Windows, so remove dirent.d_ino and #define NO_D_INO_IN_DIRENT in the Makefile (this skips e.g. an ineffective qsort in fsck.c). Signed-off-by: Karsten Blees <blees@dcon.de> Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com> Signed-off-by: Stepan Kasal <kasal@ucw.cz> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.uname')
-rw-r--r--config.mak.uname2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname
index 23a8803..f14c160 100644
--- a/config.mak.uname
+++ b/config.mak.uname
@@ -349,6 +349,7 @@ ifeq ($(uname_S),Windows)
NO_POSIX_GOODIES = UnfortunatelyYes
NATIVE_CRLF = YesPlease
DEFAULT_HELP_FORMAT = html
+ NO_D_INO_IN_DIRENT = YesPlease
CC = compat/vcbuild/scripts/clink.pl
AR = compat/vcbuild/scripts/lib.pl
@@ -497,6 +498,7 @@ ifneq (,$(findstring MINGW,$(uname_S)))
NO_INET_NTOP = YesPlease
NO_POSIX_GOODIES = UnfortunatelyYes
DEFAULT_HELP_FORMAT = html
+ NO_D_INO_IN_DIRENT = YesPlease
COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -D_USE_32BIT_TIME_T -DNOGDI -Icompat -Icompat/win32
COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
COMPAT_OBJS += compat/mingw.o compat/winansi.o \