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