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