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