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