]> git.ipfire.org Git - thirdparty/git.git/blob - config.mak.uname
sane_grep: pass "-a" if grep accepts it
[thirdparty/git.git] / config.mak.uname
1 # Platform specific Makefile tweaks based on uname detection
2
3 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
4 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
5 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
6 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
7 uname_P := $(shell sh -c 'uname -p 2>/dev/null || echo not')
8 uname_V := $(shell sh -c 'uname -v 2>/dev/null || echo not')
9
10 ifdef MSVC
11 # avoid the MingW and Cygwin configuration sections
12 uname_S := Windows
13 uname_O := Windows
14 endif
15
16 # We choose to avoid "if .. else if .. else .. endif endif"
17 # because maintaining the nesting to match is a pain. If
18 # we had "elif" things would have been much nicer...
19
20 ifeq ($(uname_M),x86_64)
21 XDL_FAST_HASH = YesPlease
22 endif
23 ifeq ($(uname_S),OSF1)
24 # Need this for u_short definitions et al
25 BASIC_CFLAGS += -D_OSF_SOURCE
26 SOCKLEN_T = int
27 NO_STRTOULL = YesPlease
28 NO_NSEC = YesPlease
29 endif
30 ifeq ($(uname_S),Linux)
31 HAVE_ALLOCA_H = YesPlease
32 NO_STRLCPY = YesPlease
33 NO_MKSTEMPS = YesPlease
34 HAVE_PATHS_H = YesPlease
35 LIBC_CONTAINS_LIBINTL = YesPlease
36 HAVE_DEV_TTY = YesPlease
37 HAVE_CLOCK_GETTIME = YesPlease
38 HAVE_CLOCK_MONOTONIC = YesPlease
39 HAVE_GETDELIM = YesPlease
40 SANE_TEXT_GREP=-a
41 endif
42 ifeq ($(uname_S),GNU/kFreeBSD)
43 HAVE_ALLOCA_H = YesPlease
44 NO_STRLCPY = YesPlease
45 NO_MKSTEMPS = YesPlease
46 HAVE_PATHS_H = YesPlease
47 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
48 LIBC_CONTAINS_LIBINTL = YesPlease
49 endif
50 ifeq ($(uname_S),UnixWare)
51 CC = cc
52 NEEDS_SOCKET = YesPlease
53 NEEDS_NSL = YesPlease
54 NEEDS_SSL_WITH_CRYPTO = YesPlease
55 NEEDS_LIBICONV = YesPlease
56 SHELL_PATH = /usr/local/bin/bash
57 NO_IPV6 = YesPlease
58 NO_HSTRERROR = YesPlease
59 NO_MKSTEMPS = YesPlease
60 BASIC_CFLAGS += -Kthread
61 BASIC_CFLAGS += -I/usr/local/include
62 BASIC_LDFLAGS += -L/usr/local/lib
63 INSTALL = ginstall
64 TAR = gtar
65 NO_STRCASESTR = YesPlease
66 NO_MEMMEM = YesPlease
67 endif
68 ifeq ($(uname_S),SCO_SV)
69 ifeq ($(uname_R),3.2)
70 CFLAGS = -O2
71 endif
72 ifeq ($(uname_R),5)
73 CC = cc
74 BASIC_CFLAGS += -Kthread
75 endif
76 NEEDS_SOCKET = YesPlease
77 NEEDS_NSL = YesPlease
78 NEEDS_SSL_WITH_CRYPTO = YesPlease
79 NEEDS_LIBICONV = YesPlease
80 SHELL_PATH = /usr/bin/bash
81 NO_IPV6 = YesPlease
82 NO_HSTRERROR = YesPlease
83 NO_MKSTEMPS = YesPlease
84 BASIC_CFLAGS += -I/usr/local/include
85 BASIC_LDFLAGS += -L/usr/local/lib
86 NO_STRCASESTR = YesPlease
87 NO_MEMMEM = YesPlease
88 INSTALL = ginstall
89 TAR = gtar
90 endif
91 ifeq ($(uname_S),Darwin)
92 NEEDS_CRYPTO_WITH_SSL = YesPlease
93 NEEDS_SSL_WITH_CRYPTO = YesPlease
94 NEEDS_LIBICONV = YesPlease
95 # Note: $(uname_R) gives us the underlying Darwin version.
96 # - MacOS 10.0.* and MacOS 10.1.0 = Darwin 1.*
97 # - MacOS 10.x.* = Darwin (x+4).* for (1 <= x)
98 # i.e. "begins with [15678] and a dot" means "10.4.* or older".
99 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
100 OLD_ICONV = UnfortunatelyYes
101 NO_APPLE_COMMON_CRYPTO = YesPlease
102 endif
103 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
104 NO_STRLCPY = YesPlease
105 endif
106 ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 11 && echo 1),1)
107 HAVE_GETDELIM = YesPlease
108 endif
109 NO_MEMMEM = YesPlease
110 USE_ST_TIMESPEC = YesPlease
111 HAVE_DEV_TTY = YesPlease
112 COMPAT_OBJS += compat/precompose_utf8.o
113 BASIC_CFLAGS += -DPRECOMPOSE_UNICODE
114 BASIC_CFLAGS += -DPROTECT_HFS_DEFAULT=1
115 HAVE_BSD_SYSCTL = YesPlease
116 endif
117 ifeq ($(uname_S),SunOS)
118 NEEDS_SOCKET = YesPlease
119 NEEDS_NSL = YesPlease
120 SHELL_PATH = /bin/bash
121 SANE_TOOL_PATH = /usr/xpg6/bin:/usr/xpg4/bin
122 HAVE_ALLOCA_H = YesPlease
123 NO_STRCASESTR = YesPlease
124 NO_MEMMEM = YesPlease
125 NO_MKDTEMP = YesPlease
126 NO_MKSTEMPS = YesPlease
127 NO_REGEX = YesPlease
128 NO_MSGFMT_EXTENDED_OPTIONS = YesPlease
129 HAVE_DEV_TTY = YesPlease
130 ifeq ($(uname_R),5.6)
131 SOCKLEN_T = int
132 NO_HSTRERROR = YesPlease
133 NO_IPV6 = YesPlease
134 NO_SOCKADDR_STORAGE = YesPlease
135 NO_UNSETENV = YesPlease
136 NO_SETENV = YesPlease
137 NO_STRLCPY = YesPlease
138 NO_STRTOUMAX = YesPlease
139 GIT_TEST_CMP = cmp
140 endif
141 ifeq ($(uname_R),5.7)
142 NEEDS_RESOLV = YesPlease
143 NO_IPV6 = YesPlease
144 NO_SOCKADDR_STORAGE = YesPlease
145 NO_UNSETENV = YesPlease
146 NO_SETENV = YesPlease
147 NO_STRLCPY = YesPlease
148 NO_STRTOUMAX = YesPlease
149 GIT_TEST_CMP = cmp
150 endif
151 ifeq ($(uname_R),5.8)
152 NO_UNSETENV = YesPlease
153 NO_SETENV = YesPlease
154 NO_STRTOUMAX = YesPlease
155 GIT_TEST_CMP = cmp
156 endif
157 ifeq ($(uname_R),5.9)
158 NO_UNSETENV = YesPlease
159 NO_SETENV = YesPlease
160 NO_STRTOUMAX = YesPlease
161 GIT_TEST_CMP = cmp
162 endif
163 INSTALL = /usr/ucb/install
164 TAR = gtar
165 BASIC_CFLAGS += -D__EXTENSIONS__ -D__sun__
166 endif
167 ifeq ($(uname_O),Cygwin)
168 ifeq ($(shell expr "$(uname_R)" : '1\.[1-6]\.'),4)
169 NO_D_TYPE_IN_DIRENT = YesPlease
170 NO_D_INO_IN_DIRENT = YesPlease
171 NO_STRCASESTR = YesPlease
172 NO_MEMMEM = YesPlease
173 NO_MKSTEMPS = YesPlease
174 NO_SYMLINK_HEAD = YesPlease
175 NO_IPV6 = YesPlease
176 OLD_ICONV = UnfortunatelyYes
177 # There are conflicting reports about this.
178 # On some boxes NO_MMAP is needed, and not so elsewhere.
179 # Try commenting this out if you suspect MMAP is more efficient
180 NO_MMAP = YesPlease
181 else
182 NO_REGEX = UnfortunatelyYes
183 endif
184 HAVE_ALLOCA_H = YesPlease
185 NEEDS_LIBICONV = YesPlease
186 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
187 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
188 X = .exe
189 UNRELIABLE_FSTAT = UnfortunatelyYes
190 SPARSE_FLAGS = -isystem /usr/include/w32api -Wno-one-bit-signed-bitfield
191 endif
192 ifeq ($(uname_S),FreeBSD)
193 NEEDS_LIBICONV = YesPlease
194 OLD_ICONV = YesPlease
195 NO_MEMMEM = YesPlease
196 BASIC_CFLAGS += -I/usr/local/include
197 BASIC_LDFLAGS += -L/usr/local/lib
198 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
199 USE_ST_TIMESPEC = YesPlease
200 ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
201 PTHREAD_LIBS = -pthread
202 NO_UINTMAX_T = YesPlease
203 NO_STRTOUMAX = YesPlease
204 endif
205 PYTHON_PATH = /usr/local/bin/python
206 HAVE_PATHS_H = YesPlease
207 GMTIME_UNRELIABLE_ERRORS = UnfortunatelyYes
208 HAVE_BSD_SYSCTL = YesPlease
209 endif
210 ifeq ($(uname_S),OpenBSD)
211 NO_STRCASESTR = YesPlease
212 NO_MEMMEM = YesPlease
213 USE_ST_TIMESPEC = YesPlease
214 NEEDS_LIBICONV = YesPlease
215 BASIC_CFLAGS += -I/usr/local/include
216 BASIC_LDFLAGS += -L/usr/local/lib
217 HAVE_PATHS_H = YesPlease
218 HAVE_BSD_SYSCTL = YesPlease
219 endif
220 ifeq ($(uname_S),MirBSD)
221 NO_STRCASESTR = YesPlease
222 NO_MEMMEM = YesPlease
223 USE_ST_TIMESPEC = YesPlease
224 NEEDS_LIBICONV = YesPlease
225 HAVE_PATHS_H = YesPlease
226 HAVE_BSD_SYSCTL = YesPlease
227 endif
228 ifeq ($(uname_S),NetBSD)
229 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
230 NEEDS_LIBICONV = YesPlease
231 endif
232 BASIC_CFLAGS += -I/usr/pkg/include
233 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
234 USE_ST_TIMESPEC = YesPlease
235 NO_MKSTEMPS = YesPlease
236 HAVE_PATHS_H = YesPlease
237 HAVE_BSD_SYSCTL = YesPlease
238 endif
239 ifeq ($(uname_S),AIX)
240 DEFAULT_PAGER = more
241 NO_STRCASESTR = YesPlease
242 NO_MEMMEM = YesPlease
243 NO_MKDTEMP = YesPlease
244 NO_MKSTEMPS = YesPlease
245 NO_STRLCPY = YesPlease
246 NO_NSEC = YesPlease
247 FREAD_READS_DIRECTORIES = UnfortunatelyYes
248 INTERNAL_QSORT = UnfortunatelyYes
249 NEEDS_LIBICONV = YesPlease
250 BASIC_CFLAGS += -D_LARGE_FILES
251 ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
252 NO_PTHREADS = YesPlease
253 else
254 PTHREAD_LIBS = -lpthread
255 endif
256 ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
257 INLINE = ''
258 endif
259 GIT_TEST_CMP = cmp
260 endif
261 ifeq ($(uname_S),GNU)
262 # GNU/Hurd
263 HAVE_ALLOCA_H = YesPlease
264 NO_STRLCPY = YesPlease
265 NO_MKSTEMPS = YesPlease
266 HAVE_PATHS_H = YesPlease
267 LIBC_CONTAINS_LIBINTL = YesPlease
268 endif
269 ifeq ($(uname_S),IRIX)
270 NO_SETENV = YesPlease
271 NO_UNSETENV = YesPlease
272 NO_STRCASESTR = YesPlease
273 NO_MEMMEM = YesPlease
274 NO_MKSTEMPS = YesPlease
275 NO_MKDTEMP = YesPlease
276 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
277 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
278 # git dies with a segmentation fault when trying to access the first
279 # entry of a reflog. The conservative choice is made to always set
280 # NO_MMAP. If you suspect that your compiler is not affected by this
281 # issue, comment out the NO_MMAP statement.
282 NO_MMAP = YesPlease
283 NO_REGEX = YesPlease
284 SNPRINTF_RETURNS_BOGUS = YesPlease
285 SHELL_PATH = /usr/gnu/bin/bash
286 NEEDS_LIBGEN = YesPlease
287 endif
288 ifeq ($(uname_S),IRIX64)
289 NO_SETENV = YesPlease
290 NO_UNSETENV = YesPlease
291 NO_STRCASESTR = YesPlease
292 NO_MEMMEM = YesPlease
293 NO_MKSTEMPS = YesPlease
294 NO_MKDTEMP = YesPlease
295 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
296 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
297 # git dies with a segmentation fault when trying to access the first
298 # entry of a reflog. The conservative choice is made to always set
299 # NO_MMAP. If you suspect that your compiler is not affected by this
300 # issue, comment out the NO_MMAP statement.
301 NO_MMAP = YesPlease
302 NO_REGEX = YesPlease
303 SNPRINTF_RETURNS_BOGUS = YesPlease
304 SHELL_PATH = /usr/gnu/bin/bash
305 NEEDS_LIBGEN = YesPlease
306 endif
307 ifeq ($(uname_S),HP-UX)
308 INLINE = __inline
309 NO_IPV6 = YesPlease
310 NO_SETENV = YesPlease
311 NO_STRCASESTR = YesPlease
312 NO_MEMMEM = YesPlease
313 NO_MKSTEMPS = YesPlease
314 NO_STRLCPY = YesPlease
315 NO_MKDTEMP = YesPlease
316 NO_UNSETENV = YesPlease
317 NO_HSTRERROR = YesPlease
318 NO_SYS_SELECT_H = YesPlease
319 SNPRINTF_RETURNS_BOGUS = YesPlease
320 NO_NSEC = YesPlease
321 ifeq ($(uname_R),B.11.00)
322 NO_INET_NTOP = YesPlease
323 NO_INET_PTON = YesPlease
324 endif
325 ifeq ($(uname_R),B.10.20)
326 # Override HP-UX 11.x setting:
327 INLINE =
328 SOCKLEN_T = size_t
329 NO_PREAD = YesPlease
330 NO_INET_NTOP = YesPlease
331 NO_INET_PTON = YesPlease
332 endif
333 GIT_TEST_CMP = cmp
334 endif
335 ifeq ($(uname_S),Windows)
336 GIT_VERSION := $(GIT_VERSION).MSVC
337 pathsep = ;
338 HAVE_ALLOCA_H = YesPlease
339 NO_PREAD = YesPlease
340 NEEDS_CRYPTO_WITH_SSL = YesPlease
341 NO_LIBGEN_H = YesPlease
342 NO_POLL = YesPlease
343 NO_SYMLINK_HEAD = YesPlease
344 NO_IPV6 = YesPlease
345 NO_UNIX_SOCKETS = YesPlease
346 NO_SETENV = YesPlease
347 NO_STRCASESTR = YesPlease
348 NO_STRLCPY = YesPlease
349 NO_MEMMEM = YesPlease
350 # NEEDS_LIBICONV = YesPlease
351 NO_ICONV = YesPlease
352 NO_STRTOUMAX = YesPlease
353 NO_MKDTEMP = YesPlease
354 NO_MKSTEMPS = YesPlease
355 SNPRINTF_RETURNS_BOGUS = YesPlease
356 NO_SVN_TESTS = YesPlease
357 RUNTIME_PREFIX = YesPlease
358 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
359 NO_NSEC = YesPlease
360 USE_WIN32_MMAP = YesPlease
361 # USE_NED_ALLOCATOR = YesPlease
362 UNRELIABLE_FSTAT = UnfortunatelyYes
363 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
364 NO_REGEX = YesPlease
365 NO_GETTEXT = YesPlease
366 NO_PYTHON = YesPlease
367 BLK_SHA1 = YesPlease
368 ETAGS_TARGET = ETAGS
369 NO_INET_PTON = YesPlease
370 NO_INET_NTOP = YesPlease
371 NO_POSIX_GOODIES = UnfortunatelyYes
372 NATIVE_CRLF = YesPlease
373 DEFAULT_HELP_FORMAT = html
374 NO_D_INO_IN_DIRENT = YesPlease
375
376 CC = compat/vcbuild/scripts/clink.pl
377 AR = compat/vcbuild/scripts/lib.pl
378 CFLAGS =
379 BASIC_CFLAGS = -nologo -I. -I../zlib -Icompat/vcbuild -Icompat/vcbuild/include -DWIN32 -D_CONSOLE -DHAVE_STRING_H -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE
380 COMPAT_OBJS = compat/msvc.o compat/winansi.o \
381 compat/win32/pthread.o compat/win32/syslog.o \
382 compat/win32/dirent.o
383 COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
384 BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE
385 EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj
386 PTHREAD_LIBS =
387 lib =
388 BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
389 ifndef DEBUG
390 BASIC_CFLAGS += -GL -Os -MD
391 BASIC_LDFLAGS += -LTCG
392 AR += -LTCG
393 else
394 BASIC_CFLAGS += -Zi -MDd
395 endif
396 X = .exe
397 endif
398 ifeq ($(uname_S),Interix)
399 NO_INITGROUPS = YesPlease
400 NO_IPV6 = YesPlease
401 NO_MEMMEM = YesPlease
402 NO_MKDTEMP = YesPlease
403 NO_STRTOUMAX = YesPlease
404 NO_NSEC = YesPlease
405 NO_MKSTEMPS = YesPlease
406 ifeq ($(uname_R),3.5)
407 NO_INET_NTOP = YesPlease
408 NO_INET_PTON = YesPlease
409 NO_SOCKADDR_STORAGE = YesPlease
410 endif
411 ifeq ($(uname_R),5.2)
412 NO_INET_NTOP = YesPlease
413 NO_INET_PTON = YesPlease
414 NO_SOCKADDR_STORAGE = YesPlease
415 endif
416 endif
417 ifeq ($(uname_S),Minix)
418 NO_IPV6 = YesPlease
419 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
420 NO_NSEC = YesPlease
421 NEEDS_LIBGEN =
422 NEEDS_CRYPTO_WITH_SSL = YesPlease
423 NEEDS_IDN_WITH_CURL = YesPlease
424 NEEDS_SSL_WITH_CURL = YesPlease
425 NEEDS_RESOLV =
426 NO_HSTRERROR = YesPlease
427 NO_MMAP = YesPlease
428 NO_CURL =
429 NO_EXPAT =
430 endif
431 ifeq ($(uname_S),NONSTOP_KERNEL)
432 # Needs some C99 features, "inline" is just one of them.
433 # INLINE='' would just replace one set of warnings with another and
434 # still not compile in c89 mode, due to non-const array initializations.
435 CC = cc -c99
436 # Disable all optimization, seems to result in bad code, with -O or -O2
437 # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
438 # abends on "git push". Needs more investigation.
439 CFLAGS = -g -O0
440 # We'd want it to be here.
441 prefix = /usr/local
442 # Our's are in ${prefix}/bin (perl might also be in /usr/bin/perl).
443 PERL_PATH = ${prefix}/bin/perl
444 PYTHON_PATH = ${prefix}/bin/python
445
446 # As detected by './configure'.
447 # Missdetected, hence commented out, see below.
448 #NO_CURL = YesPlease
449 # Added manually, see above.
450 NEEDS_SSL_WITH_CURL = YesPlease
451 HAVE_LIBCHARSET_H = YesPlease
452 HAVE_STRINGS_H = YesPlease
453 NEEDS_LIBICONV = YesPlease
454 NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
455 NO_SYS_SELECT_H = UnfortunatelyYes
456 NO_D_TYPE_IN_DIRENT = YesPlease
457 NO_HSTRERROR = YesPlease
458 NO_STRCASESTR = YesPlease
459 NO_MEMMEM = YesPlease
460 NO_STRLCPY = YesPlease
461 NO_SETENV = YesPlease
462 NO_UNSETENV = YesPlease
463 NO_MKDTEMP = YesPlease
464 NO_MKSTEMPS = YesPlease
465 # Currently libiconv-1.9.1.
466 OLD_ICONV = UnfortunatelyYes
467 NO_REGEX = YesPlease
468 NO_PTHREADS = UnfortunatelyYes
469
470 # Not detected (nor checked for) by './configure'.
471 # We don't have SA_RESTART on NonStop, unfortunalety.
472 COMPAT_CFLAGS += -DSA_RESTART=0
473 # Apparently needed in compat/fnmatch/fnmatch.c.
474 COMPAT_CFLAGS += -DHAVE_STRING_H=1
475 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
476 NO_NSEC = YesPlease
477 NO_PREAD = YesPlease
478 NO_MMAP = YesPlease
479 NO_POLL = YesPlease
480 NO_INTPTR_T = UnfortunatelyYes
481 # Bug report 10-120822-4477 submitted to HP NonStop development.
482 MKDIR_WO_TRAILING_SLASH = YesPlease
483 # RFE 10-120912-4693 submitted to HP NonStop development.
484 NO_SETITIMER = UnfortunatelyYes
485 SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
486 SHELL_PATH = /usr/local/bin/bash
487 # as of H06.25/J06.14, we might better use this
488 #SHELL_PATH = /usr/coreutils/bin/bash
489 endif
490 ifneq (,$(findstring MINGW,$(uname_S)))
491 pathsep = ;
492 HAVE_ALLOCA_H = YesPlease
493 NO_PREAD = YesPlease
494 NEEDS_CRYPTO_WITH_SSL = YesPlease
495 NO_LIBGEN_H = YesPlease
496 NO_POLL = YesPlease
497 NO_SYMLINK_HEAD = YesPlease
498 NO_UNIX_SOCKETS = YesPlease
499 NO_SETENV = YesPlease
500 NO_STRCASESTR = YesPlease
501 NO_STRLCPY = YesPlease
502 NO_MEMMEM = YesPlease
503 NEEDS_LIBICONV = YesPlease
504 NO_STRTOUMAX = YesPlease
505 NO_MKDTEMP = YesPlease
506 NO_MKSTEMPS = YesPlease
507 NO_SVN_TESTS = YesPlease
508 NO_PERL_MAKEMAKER = YesPlease
509 RUNTIME_PREFIX = YesPlease
510 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
511 NO_NSEC = YesPlease
512 USE_WIN32_MMAP = YesPlease
513 USE_NED_ALLOCATOR = YesPlease
514 UNRELIABLE_FSTAT = UnfortunatelyYes
515 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
516 NO_REGEX = YesPlease
517 NO_PYTHON = YesPlease
518 BLK_SHA1 = YesPlease
519 ETAGS_TARGET = ETAGS
520 NO_INET_PTON = YesPlease
521 NO_INET_NTOP = YesPlease
522 NO_POSIX_GOODIES = UnfortunatelyYes
523 DEFAULT_HELP_FORMAT = html
524 NO_D_INO_IN_DIRENT = YesPlease
525 COMPAT_CFLAGS += -D__USE_MINGW_ACCESS -D_USE_32BIT_TIME_T -DNOGDI -Icompat -Icompat/win32
526 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
527 COMPAT_OBJS += compat/mingw.o compat/winansi.o \
528 compat/win32/pthread.o compat/win32/syslog.o \
529 compat/win32/dirent.o
530 BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
531 BASIC_LDFLAGS += -Wl,--large-address-aware
532 EXTLIBS += -lws2_32
533 GITLIBS += git.res
534 PTHREAD_LIBS =
535 RC = windres -O coff
536 NATIVE_CRLF = YesPlease
537 X = .exe
538 SPARSE_FLAGS = -Wno-one-bit-signed-bitfield
539 ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
540 htmldir = doc/git/html/
541 prefix =
542 INSTALL = /bin/install
543 EXTLIBS += /mingw/lib/libz.a
544 NO_R_TO_GCC_LINKER = YesPlease
545 INTERNAL_QSORT = YesPlease
546 HAVE_LIBCHARSET_H = YesPlease
547 NO_GETTEXT = YesPlease
548 else
549 NO_CURL = YesPlease
550 endif
551 endif
552 ifeq ($(uname_S),QNX)
553 COMPAT_CFLAGS += -DSA_RESTART=0
554 EXPAT_NEEDS_XMLPARSE_H = YesPlease
555 HAVE_STRINGS_H = YesPlease
556 NEEDS_SOCKET = YesPlease
557 NO_GETPAGESIZE = YesPlease
558 NO_ICONV = YesPlease
559 NO_MEMMEM = YesPlease
560 NO_MKDTEMP = YesPlease
561 NO_MKSTEMPS = YesPlease
562 NO_NSEC = YesPlease
563 NO_PTHREADS = YesPlease
564 NO_R_TO_GCC_LINKER = YesPlease
565 NO_STRCASESTR = YesPlease
566 NO_STRLCPY = YesPlease
567 endif