config.mak.uname: OpenBSD uses BSD semantics with fread for directories
[git/debian.git] / config.mak.uname
blob14077994a51fdb42e7c8f2b90c89946b70d10bb0
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_S),OSF1)
21         # Need this for u_short definitions et al
22         BASIC_CFLAGS += -D_OSF_SOURCE
23         SOCKLEN_T = int
24         NO_STRTOULL = YesPlease
25         NO_NSEC = YesPlease
26 endif
27 ifeq ($(uname_S),Linux)
28         HAVE_ALLOCA_H = YesPlease
29         NO_STRLCPY = YesPlease
30         HAVE_PATHS_H = YesPlease
31         LIBC_CONTAINS_LIBINTL = YesPlease
32         HAVE_DEV_TTY = YesPlease
33         HAVE_CLOCK_GETTIME = YesPlease
34         HAVE_CLOCK_MONOTONIC = YesPlease
35         # -lrt is needed for clock_gettime on glibc <= 2.16
36         NEEDS_LIBRT = YesPlease
37         HAVE_GETDELIM = YesPlease
38         SANE_TEXT_GREP=-a
39         FREAD_READS_DIRECTORIES = UnfortunatelyYes
40         BASIC_CFLAGS += -DHAVE_SYSINFO
41         PROCFS_EXECUTABLE_PATH = /proc/self/exe
42 endif
43 ifeq ($(uname_S),GNU/kFreeBSD)
44         HAVE_ALLOCA_H = YesPlease
45         NO_STRLCPY = YesPlease
46         HAVE_PATHS_H = YesPlease
47         DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
48         LIBC_CONTAINS_LIBINTL = YesPlease
49         FREAD_READS_DIRECTORIES = UnfortunatelyYes
50 endif
51 ifeq ($(uname_S),UnixWare)
52         CC = cc
53         NEEDS_SOCKET = YesPlease
54         NEEDS_NSL = YesPlease
55         NEEDS_SSL_WITH_CRYPTO = YesPlease
56         NEEDS_LIBICONV = YesPlease
57         SHELL_PATH = /usr/local/bin/bash
58         NO_IPV6 = YesPlease
59         NO_HSTRERROR = 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         BASIC_CFLAGS += -I/usr/local/include
84         BASIC_LDFLAGS += -L/usr/local/lib
85         NO_STRCASESTR = YesPlease
86         NO_MEMMEM = YesPlease
87         INSTALL = ginstall
88         TAR = gtar
89 endif
90 ifeq ($(uname_S),Darwin)
91         NEEDS_CRYPTO_WITH_SSL = YesPlease
92         NEEDS_SSL_WITH_CRYPTO = YesPlease
93         NEEDS_LIBICONV = YesPlease
94         # Note: $(uname_R) gives us the underlying Darwin version.
95         # - MacOS 10.0.* and MacOS 10.1.0 = Darwin 1.*
96         # - MacOS 10.x.* = Darwin (x+4).* for (1 <= x)
97         # i.e. "begins with [15678] and a dot" means "10.4.* or older".
98         ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
99                 OLD_ICONV = UnfortunatelyYes
100                 NO_APPLE_COMMON_CRYPTO = YesPlease
101         endif
102         ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
103                 NO_STRLCPY = YesPlease
104         endif
105         ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 11 && echo 1),1)
106                 HAVE_GETDELIM = YesPlease
107         endif
108         NO_MEMMEM = YesPlease
109         USE_ST_TIMESPEC = YesPlease
110         HAVE_DEV_TTY = YesPlease
111         COMPAT_OBJS += compat/precompose_utf8.o
112         BASIC_CFLAGS += -DPRECOMPOSE_UNICODE
113         BASIC_CFLAGS += -DPROTECT_HFS_DEFAULT=1
114         HAVE_BSD_SYSCTL = YesPlease
115         FREAD_READS_DIRECTORIES = UnfortunatelyYes
116         HAVE_NS_GET_EXECUTABLE_PATH = YesPlease
117 endif
118 ifeq ($(uname_S),SunOS)
119         NEEDS_SOCKET = YesPlease
120         NEEDS_NSL = YesPlease
121         SHELL_PATH = /bin/bash
122         SANE_TOOL_PATH = /usr/xpg6/bin:/usr/xpg4/bin
123         HAVE_ALLOCA_H = YesPlease
124         NO_STRCASESTR = YesPlease
125         NO_MEMMEM = YesPlease
126         NO_MKDTEMP = 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_STRCASESTR = YesPlease
171                 NO_MEMMEM = YesPlease
172                 NO_SYMLINK_HEAD = YesPlease
173                 NO_IPV6 = YesPlease
174                 OLD_ICONV = UnfortunatelyYes
175                 # There are conflicting reports about this.
176                 # On some boxes NO_MMAP is needed, and not so elsewhere.
177                 # Try commenting this out if you suspect MMAP is more efficient
178                 NO_MMAP = YesPlease
179         else
180                 NO_REGEX = UnfortunatelyYes
181         endif
182         HAVE_ALLOCA_H = YesPlease
183         NEEDS_LIBICONV = YesPlease
184         NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
185         NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
186         X = .exe
187         UNRELIABLE_FSTAT = UnfortunatelyYes
188         OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
189         MMAP_PREVENTS_DELETE = UnfortunatelyYes
190         COMPAT_OBJS += compat/cygwin.o
191         FREAD_READS_DIRECTORIES = UnfortunatelyYes
192 endif
193 ifeq ($(uname_S),FreeBSD)
194         NEEDS_LIBICONV = YesPlease
195         # Versions up to 10.1 require OLD_ICONV; 10.2 and beyond don't.
196         # A typical version string looks like "10.2-RELEASE".
197         ifeq ($(shell expr "$(uname_R)" : '[1-9]\.'),2)
198                 OLD_ICONV = YesPlease
199         endif
200         ifeq ($(firstword $(subst -, ,$(uname_R))),10.0)
201                 OLD_ICONV = YesPlease
202         endif
203         ifeq ($(firstword $(subst -, ,$(uname_R))),10.1)
204                 OLD_ICONV = YesPlease
205         endif
206         NO_MEMMEM = YesPlease
207         BASIC_CFLAGS += -I/usr/local/include
208         BASIC_LDFLAGS += -L/usr/local/lib
209         DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
210         USE_ST_TIMESPEC = YesPlease
211         ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
212                 PTHREAD_LIBS = -pthread
213                 NO_UINTMAX_T = YesPlease
214                 NO_STRTOUMAX = YesPlease
215         endif
216         PYTHON_PATH = /usr/local/bin/python
217         PERL_PATH = /usr/local/bin/perl
218         HAVE_PATHS_H = YesPlease
219         GMTIME_UNRELIABLE_ERRORS = UnfortunatelyYes
220         HAVE_BSD_SYSCTL = YesPlease
221         HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
222         PAGER_ENV = LESS=FRX LV=-c MORE=FRX
223         FREAD_READS_DIRECTORIES = UnfortunatelyYes
224 endif
225 ifeq ($(uname_S),OpenBSD)
226         NO_STRCASESTR = YesPlease
227         NO_MEMMEM = YesPlease
228         USE_ST_TIMESPEC = YesPlease
229         NEEDS_LIBICONV = YesPlease
230         BASIC_CFLAGS += -I/usr/local/include
231         BASIC_LDFLAGS += -L/usr/local/lib
232         HAVE_PATHS_H = YesPlease
233         HAVE_BSD_SYSCTL = YesPlease
234         HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
235         PROCFS_EXECUTABLE_PATH = /proc/curproc/file
236         FREAD_READS_DIRECTORIES = UnfortunatelyYes
237 endif
238 ifeq ($(uname_S),MirBSD)
239         NO_STRCASESTR = YesPlease
240         NO_MEMMEM = YesPlease
241         USE_ST_TIMESPEC = YesPlease
242         NEEDS_LIBICONV = YesPlease
243         HAVE_PATHS_H = YesPlease
244         HAVE_BSD_SYSCTL = YesPlease
245 endif
246 ifeq ($(uname_S),NetBSD)
247         ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
248                 NEEDS_LIBICONV = YesPlease
249         endif
250         BASIC_CFLAGS += -I/usr/pkg/include
251         BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
252         USE_ST_TIMESPEC = YesPlease
253         HAVE_PATHS_H = YesPlease
254         HAVE_BSD_SYSCTL = YesPlease
255         HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
256         PROCFS_EXECUTABLE_PATH = /proc/curproc/exe
257 endif
258 ifeq ($(uname_S),AIX)
259         DEFAULT_PAGER = more
260         NO_STRCASESTR = YesPlease
261         NO_MEMMEM = YesPlease
262         NO_MKDTEMP = YesPlease
263         NO_STRLCPY = YesPlease
264         NO_NSEC = YesPlease
265         NO_REGEX = NeedsStartEnd
266         FREAD_READS_DIRECTORIES = UnfortunatelyYes
267         INTERNAL_QSORT = UnfortunatelyYes
268         NEEDS_LIBICONV = YesPlease
269         BASIC_CFLAGS += -D_LARGE_FILES
270         ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
271                 NO_PTHREADS = YesPlease
272         else
273                 PTHREAD_LIBS = -lpthread
274         endif
275         ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
276                 INLINE = ''
277         endif
278         GIT_TEST_CMP = cmp
279 endif
280 ifeq ($(uname_S),GNU)
281         # GNU/Hurd
282         HAVE_ALLOCA_H = YesPlease
283         NO_STRLCPY = YesPlease
284         HAVE_PATHS_H = YesPlease
285         LIBC_CONTAINS_LIBINTL = YesPlease
286 endif
287 ifeq ($(uname_S),IRIX)
288         NO_SETENV = YesPlease
289         NO_UNSETENV = YesPlease
290         NO_STRCASESTR = YesPlease
291         NO_MEMMEM = YesPlease
292         NO_MKDTEMP = YesPlease
293         # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
294         # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
295         # git dies with a segmentation fault when trying to access the first
296         # entry of a reflog.  The conservative choice is made to always set
297         # NO_MMAP.  If you suspect that your compiler is not affected by this
298         # issue, comment out the NO_MMAP statement.
299         NO_MMAP = YesPlease
300         NO_REGEX = YesPlease
301         SNPRINTF_RETURNS_BOGUS = YesPlease
302         SHELL_PATH = /usr/gnu/bin/bash
303         NEEDS_LIBGEN = YesPlease
304 endif
305 ifeq ($(uname_S),IRIX64)
306         NO_SETENV = YesPlease
307         NO_UNSETENV = YesPlease
308         NO_STRCASESTR = YesPlease
309         NO_MEMMEM = YesPlease
310         NO_MKDTEMP = YesPlease
311         # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
312         # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
313         # git dies with a segmentation fault when trying to access the first
314         # entry of a reflog.  The conservative choice is made to always set
315         # NO_MMAP.  If you suspect that your compiler is not affected by this
316         # issue, comment out the NO_MMAP statement.
317         NO_MMAP = YesPlease
318         NO_REGEX = YesPlease
319         SNPRINTF_RETURNS_BOGUS = YesPlease
320         SHELL_PATH = /usr/gnu/bin/bash
321         NEEDS_LIBGEN = YesPlease
322 endif
323 ifeq ($(uname_S),HP-UX)
324         INLINE = __inline
325         NO_IPV6 = YesPlease
326         NO_SETENV = YesPlease
327         NO_STRCASESTR = YesPlease
328         NO_MEMMEM = YesPlease
329         NO_STRLCPY = YesPlease
330         NO_MKDTEMP = YesPlease
331         NO_UNSETENV = YesPlease
332         NO_HSTRERROR = YesPlease
333         NO_SYS_SELECT_H = YesPlease
334         SNPRINTF_RETURNS_BOGUS = YesPlease
335         NO_NSEC = YesPlease
336         ifeq ($(uname_R),B.11.00)
337                 NO_INET_NTOP = YesPlease
338                 NO_INET_PTON = YesPlease
339         endif
340         ifeq ($(uname_R),B.10.20)
341                 # Override HP-UX 11.x setting:
342                 INLINE =
343                 SOCKLEN_T = size_t
344                 NO_PREAD = YesPlease
345                 NO_INET_NTOP = YesPlease
346                 NO_INET_PTON = YesPlease
347         endif
348         GIT_TEST_CMP = cmp
349 endif
350 ifeq ($(uname_S),Windows)
351         GIT_VERSION := $(GIT_VERSION).MSVC
352         pathsep = ;
353         HAVE_ALLOCA_H = YesPlease
354         NO_PREAD = YesPlease
355         NEEDS_CRYPTO_WITH_SSL = YesPlease
356         NO_LIBGEN_H = YesPlease
357         NO_POLL = YesPlease
358         NO_SYMLINK_HEAD = YesPlease
359         NO_IPV6 = YesPlease
360         NO_UNIX_SOCKETS = YesPlease
361         NO_SETENV = YesPlease
362         NO_STRCASESTR = YesPlease
363         NO_STRLCPY = YesPlease
364         NO_MEMMEM = YesPlease
365         # NEEDS_LIBICONV = YesPlease
366         NO_ICONV = YesPlease
367         NO_STRTOUMAX = YesPlease
368         NO_MKDTEMP = YesPlease
369         SNPRINTF_RETURNS_BOGUS = YesPlease
370         NO_SVN_TESTS = YesPlease
371         RUNTIME_PREFIX = YesPlease
372         HAVE_WPGMPTR = YesWeDo
373         NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
374         NO_NSEC = YesPlease
375         USE_WIN32_MMAP = YesPlease
376         MMAP_PREVENTS_DELETE = UnfortunatelyYes
377         # USE_NED_ALLOCATOR = YesPlease
378         UNRELIABLE_FSTAT = UnfortunatelyYes
379         OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
380         NO_REGEX = YesPlease
381         NO_GETTEXT = YesPlease
382         NO_PYTHON = YesPlease
383         BLK_SHA1 = YesPlease
384         ETAGS_TARGET = ETAGS
385         NO_INET_PTON = YesPlease
386         NO_INET_NTOP = YesPlease
387         NO_POSIX_GOODIES = UnfortunatelyYes
388         NATIVE_CRLF = YesPlease
389         DEFAULT_HELP_FORMAT = html
391         CC = compat/vcbuild/scripts/clink.pl
392         AR = compat/vcbuild/scripts/lib.pl
393         CFLAGS =
394         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
395         COMPAT_OBJS = compat/msvc.o compat/winansi.o \
396                 compat/win32/pthread.o compat/win32/syslog.o \
397                 compat/win32/dirent.o
398         COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
399         BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE
400         EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj
401         PTHREAD_LIBS =
402         lib =
403         BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
404 ifndef DEBUG
405         BASIC_CFLAGS += -GL -Os -MD
406         BASIC_LDFLAGS += -LTCG
407         AR += -LTCG
408 else
409         BASIC_CFLAGS += -Zi -MDd
410 endif
411         X = .exe
412 endif
413 ifeq ($(uname_S),Interix)
414         NO_INITGROUPS = YesPlease
415         NO_IPV6 = YesPlease
416         NO_MEMMEM = YesPlease
417         NO_MKDTEMP = YesPlease
418         NO_STRTOUMAX = YesPlease
419         NO_NSEC = YesPlease
420         ifeq ($(uname_R),3.5)
421                 NO_INET_NTOP = YesPlease
422                 NO_INET_PTON = YesPlease
423                 NO_SOCKADDR_STORAGE = YesPlease
424         endif
425         ifeq ($(uname_R),5.2)
426                 NO_INET_NTOP = YesPlease
427                 NO_INET_PTON = YesPlease
428                 NO_SOCKADDR_STORAGE = YesPlease
429         endif
430 endif
431 ifeq ($(uname_S),Minix)
432         NO_IPV6 = YesPlease
433         NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
434         NO_NSEC = YesPlease
435         NEEDS_LIBGEN =
436         NEEDS_CRYPTO_WITH_SSL = YesPlease
437         NEEDS_IDN_WITH_CURL = YesPlease
438         NEEDS_SSL_WITH_CURL = YesPlease
439         NEEDS_RESOLV =
440         NO_HSTRERROR = YesPlease
441         NO_MMAP = YesPlease
442         NO_CURL =
443         NO_EXPAT =
444 endif
445 ifeq ($(uname_S),NONSTOP_KERNEL)
446         # Needs some C99 features, "inline" is just one of them.
447         # INLINE='' would just replace one set of warnings with another and
448         # still not compile in c89 mode, due to non-const array initializations.
449         CC = cc -c99
450         # Disable all optimization, seems to result in bad code, with -O or -O2
451         # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
452         # abends on "git push". Needs more investigation.
453         CFLAGS = -g -O0
454         # We'd want it to be here.
455         prefix = /usr/local
456         # Our's are in ${prefix}/bin (perl might also be in /usr/bin/perl).
457         PERL_PATH = ${prefix}/bin/perl
458         PYTHON_PATH = ${prefix}/bin/python
460         # As detected by './configure'.
461         # Missdetected, hence commented out, see below.
462         #NO_CURL = YesPlease
463         # Added manually, see above.
464         NEEDS_SSL_WITH_CURL = YesPlease
465         HAVE_LIBCHARSET_H = YesPlease
466         HAVE_STRINGS_H = YesPlease
467         NEEDS_LIBICONV = YesPlease
468         NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
469         NO_SYS_SELECT_H = UnfortunatelyYes
470         NO_D_TYPE_IN_DIRENT = YesPlease
471         NO_HSTRERROR = YesPlease
472         NO_STRCASESTR = YesPlease
473         NO_MEMMEM = YesPlease
474         NO_STRLCPY = YesPlease
475         NO_SETENV = YesPlease
476         NO_UNSETENV = YesPlease
477         NO_MKDTEMP = YesPlease
478         # Currently libiconv-1.9.1.
479         OLD_ICONV = UnfortunatelyYes
480         NO_REGEX = YesPlease
481         NO_PTHREADS = UnfortunatelyYes
483         # Not detected (nor checked for) by './configure'.
484         # We don't have SA_RESTART on NonStop, unfortunalety.
485         COMPAT_CFLAGS += -DSA_RESTART=0
486         # Apparently needed in compat/fnmatch/fnmatch.c.
487         COMPAT_CFLAGS += -DHAVE_STRING_H=1
488         NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
489         NO_NSEC = YesPlease
490         NO_PREAD = YesPlease
491         NO_MMAP = YesPlease
492         NO_POLL = YesPlease
493         NO_INTPTR_T = UnfortunatelyYes
494         # Bug report 10-120822-4477 submitted to HP NonStop development.
495         MKDIR_WO_TRAILING_SLASH = YesPlease
496         # RFE 10-120912-4693 submitted to HP NonStop development.
497         NO_SETITIMER = UnfortunatelyYes
498         SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
499         SHELL_PATH = /usr/local/bin/bash
500         # as of H06.25/J06.14, we might better use this
501         #SHELL_PATH = /usr/coreutils/bin/bash
502 endif
503 ifneq (,$(findstring MINGW,$(uname_S)))
504         pathsep = ;
505         HAVE_ALLOCA_H = YesPlease
506         NO_PREAD = YesPlease
507         NEEDS_CRYPTO_WITH_SSL = YesPlease
508         NO_LIBGEN_H = YesPlease
509         NO_POLL = YesPlease
510         NO_SYMLINK_HEAD = YesPlease
511         NO_UNIX_SOCKETS = YesPlease
512         NO_SETENV = YesPlease
513         NO_STRCASESTR = YesPlease
514         NO_STRLCPY = YesPlease
515         NO_MEMMEM = YesPlease
516         NEEDS_LIBICONV = YesPlease
517         NO_STRTOUMAX = YesPlease
518         NO_MKDTEMP = YesPlease
519         NO_SVN_TESTS = YesPlease
520         NO_PERL_MAKEMAKER = YesPlease
521         RUNTIME_PREFIX = YesPlease
522         HAVE_WPGMPTR = YesWeDo
523         NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
524         NO_NSEC = YesPlease
525         USE_WIN32_MMAP = YesPlease
526         MMAP_PREVENTS_DELETE = UnfortunatelyYes
527         USE_NED_ALLOCATOR = YesPlease
528         UNRELIABLE_FSTAT = UnfortunatelyYes
529         OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
530         NO_REGEX = YesPlease
531         NO_PYTHON = YesPlease
532         ETAGS_TARGET = ETAGS
533         NO_INET_PTON = YesPlease
534         NO_INET_NTOP = YesPlease
535         NO_POSIX_GOODIES = UnfortunatelyYes
536         DEFAULT_HELP_FORMAT = html
537         COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32
538         COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
539         COMPAT_OBJS += compat/mingw.o compat/winansi.o \
540                 compat/win32/pthread.o compat/win32/syslog.o \
541                 compat/win32/dirent.o
542         BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1
543         EXTLIBS += -lws2_32
544         GITLIBS += git.res
545         PTHREAD_LIBS =
546         RC = windres -O coff
547         NATIVE_CRLF = YesPlease
548         X = .exe
549         SPARSE_FLAGS = -Wno-one-bit-signed-bitfield
550 ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
551         htmldir = doc/git/html/
552         prefix =
553         INSTALL = /bin/install
554         EXTLIBS += /mingw/lib/libz.a
555         NO_R_TO_GCC_LINKER = YesPlease
556         INTERNAL_QSORT = YesPlease
557         HAVE_LIBCHARSET_H = YesPlease
558         NO_GETTEXT = YesPlease
559         COMPAT_CLFAGS += -D__USE_MINGW_ACCESS
560 else
561         ifeq ($(shell expr "$(uname_R)" : '2\.'),2)
562                 # MSys2
563                 prefix = /usr/
564                 ifeq (MINGW32,$(MSYSTEM))
565                         prefix = /mingw32
566                 endif
567                 ifeq (MINGW64,$(MSYSTEM))
568                         prefix = /mingw64
569                 else
570                         COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
571                         BASIC_LDFLAGS += -Wl,--large-address-aware
572                 endif
573                 CC = gcc
574                 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY
575                 EXTLIBS += -lntdll
576                 INSTALL = /bin/install
577                 NO_R_TO_GCC_LINKER = YesPlease
578                 INTERNAL_QSORT = YesPlease
579                 HAVE_LIBCHARSET_H = YesPlease
580                 NO_GETTEXT =
581                 USE_GETTEXT_SCHEME = fallthrough
582                 USE_LIBPCRE= YesPlease
583                 NO_LIBPCRE1_JIT = UnfortunatelyYes
584                 NO_CURL =
585                 USE_NED_ALLOCATOR = YesPlease
586         else
587                 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO
588                 NO_CURL = YesPlease
589         endif
590 endif
591 endif
592 ifeq ($(uname_S),QNX)
593         COMPAT_CFLAGS += -DSA_RESTART=0
594         EXPAT_NEEDS_XMLPARSE_H = YesPlease
595         HAVE_STRINGS_H = YesPlease
596         NEEDS_SOCKET = YesPlease
597         NO_GETPAGESIZE = YesPlease
598         NO_ICONV = YesPlease
599         NO_MEMMEM = YesPlease
600         NO_MKDTEMP = YesPlease
601         NO_NSEC = YesPlease
602         NO_PTHREADS = YesPlease
603         NO_R_TO_GCC_LINKER = YesPlease
604         NO_STRCASESTR = YesPlease
605         NO_STRLCPY = YesPlease
606 endif