]> git.ipfire.org Git - thirdparty/git.git/blame - config.mak.uname
grep tests: move binary pattern tests into their own file
[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
9806f5a7 40 BASIC_CFLAGS += -DHAVE_SYSINFO
226c0ddd 41 PROCFS_EXECUTABLE_PATH = /proc/self/exe
e1b6dbb5
JK
42endif
43ifeq ($(uname_S),GNU/kFreeBSD)
61f76a36 44 HAVE_ALLOCA_H = YesPlease
e1b6dbb5 45 NO_STRLCPY = YesPlease
e1b6dbb5
JK
46 HAVE_PATHS_H = YesPlease
47 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
48 LIBC_CONTAINS_LIBINTL = YesPlease
e2d90fd1 49 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
50endif
51ifeq ($(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
e1b6dbb5
JK
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
67endif
68ifeq ($(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
e1b6dbb5
JK
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
89endif
90ifeq ($(uname_S),Darwin)
91 NEEDS_CRYPTO_WITH_SSL = YesPlease
92 NEEDS_SSL_WITH_CRYPTO = YesPlease
93 NEEDS_LIBICONV = YesPlease
9eeff2f6
JH
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".
e1b6dbb5
JK
98 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
99 OLD_ICONV = UnfortunatelyYes
9c7a0bee 100 NO_APPLE_COMMON_CRYPTO = YesPlease
e1b6dbb5
JK
101 endif
102 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
103 NO_STRLCPY = YesPlease
104 endif
4e368785
ES
105 ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 11 && echo 1),1)
106 HAVE_GETDELIM = YesPlease
107 endif
e1b6dbb5
JK
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
a42643aa 113 BASIC_CFLAGS += -DPROTECT_HFS_DEFAULT=1
9529080d 114 HAVE_BSD_SYSCTL = YesPlease
8e178ec4 115 FREAD_READS_DIRECTORIES = UnfortunatelyYes
226c0ddd 116 HAVE_NS_GET_EXECUTABLE_PATH = YesPlease
92a1377a
JS
117 BASIC_CFLAGS += -I/usr/local/include
118 BASIC_LDFLAGS += -L/usr/local/lib
e1b6dbb5
JK
119endif
120ifeq ($(uname_S),SunOS)
121 NEEDS_SOCKET = YesPlease
122 NEEDS_NSL = YesPlease
123 SHELL_PATH = /bin/bash
124 SANE_TOOL_PATH = /usr/xpg6/bin:/usr/xpg4/bin
61f76a36 125 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
126 NO_STRCASESTR = YesPlease
127 NO_MEMMEM = YesPlease
128 NO_MKDTEMP = YesPlease
e1b6dbb5 129 NO_REGEX = YesPlease
e1b6dbb5
JK
130 NO_MSGFMT_EXTENDED_OPTIONS = YesPlease
131 HAVE_DEV_TTY = YesPlease
132 ifeq ($(uname_R),5.6)
133 SOCKLEN_T = int
134 NO_HSTRERROR = YesPlease
135 NO_IPV6 = YesPlease
136 NO_SOCKADDR_STORAGE = YesPlease
137 NO_UNSETENV = YesPlease
138 NO_SETENV = YesPlease
139 NO_STRLCPY = YesPlease
140 NO_STRTOUMAX = YesPlease
141 GIT_TEST_CMP = cmp
142 endif
143 ifeq ($(uname_R),5.7)
144 NEEDS_RESOLV = YesPlease
145 NO_IPV6 = YesPlease
146 NO_SOCKADDR_STORAGE = YesPlease
147 NO_UNSETENV = YesPlease
148 NO_SETENV = YesPlease
149 NO_STRLCPY = YesPlease
150 NO_STRTOUMAX = YesPlease
151 GIT_TEST_CMP = cmp
152 endif
153 ifeq ($(uname_R),5.8)
154 NO_UNSETENV = YesPlease
155 NO_SETENV = YesPlease
156 NO_STRTOUMAX = YesPlease
157 GIT_TEST_CMP = cmp
158 endif
159 ifeq ($(uname_R),5.9)
160 NO_UNSETENV = YesPlease
161 NO_SETENV = YesPlease
162 NO_STRTOUMAX = YesPlease
163 GIT_TEST_CMP = cmp
164 endif
165 INSTALL = /usr/ucb/install
166 TAR = gtar
61f76a36 167 BASIC_CFLAGS += -D__EXTENSIONS__ -D__sun__
e1b6dbb5
JK
168endif
169ifeq ($(uname_O),Cygwin)
170 ifeq ($(shell expr "$(uname_R)" : '1\.[1-6]\.'),4)
171 NO_D_TYPE_IN_DIRENT = YesPlease
e1b6dbb5
JK
172 NO_STRCASESTR = YesPlease
173 NO_MEMMEM = YesPlease
e1b6dbb5
JK
174 NO_SYMLINK_HEAD = YesPlease
175 NO_IPV6 = YesPlease
176 OLD_ICONV = UnfortunatelyYes
f593ef77
ML
177 # There are conflicting reports about this.
178 # On some boxes NO_MMAP is needed, and not so elsewhere.
179 # Try commenting this out if you suspect MMAP is more efficient
180 NO_MMAP = YesPlease
92f63d2b
ML
181 else
182 NO_REGEX = UnfortunatelyYes
e1b6dbb5 183 endif
61f76a36 184 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
185 NEEDS_LIBICONV = YesPlease
186 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
e1b6dbb5 187 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
e1b6dbb5 188 X = .exe
e1b6dbb5 189 UNRELIABLE_FSTAT = UnfortunatelyYes
e53a64b9 190 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
5b633610 191 MMAP_PREVENTS_DELETE = UnfortunatelyYes
1cadad6f 192 COMPAT_OBJS += compat/win32/path-utils.o
a5956d6a 193 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
194endif
195ifeq ($(uname_S),FreeBSD)
196 NEEDS_LIBICONV = YesPlease
6c6ce21b
ES
197 # Versions up to 10.1 require OLD_ICONV; 10.2 and beyond don't.
198 # A typical version string looks like "10.2-RELEASE".
199 ifeq ($(shell expr "$(uname_R)" : '[1-9]\.'),2)
200 OLD_ICONV = YesPlease
201 endif
202 ifeq ($(firstword $(subst -, ,$(uname_R))),10.0)
203 OLD_ICONV = YesPlease
204 endif
205 ifeq ($(firstword $(subst -, ,$(uname_R))),10.1)
206 OLD_ICONV = YesPlease
207 endif
e1b6dbb5
JK
208 NO_MEMMEM = YesPlease
209 BASIC_CFLAGS += -I/usr/local/include
210 BASIC_LDFLAGS += -L/usr/local/lib
211 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
212 USE_ST_TIMESPEC = YesPlease
213 ifeq ($(shell expr "$(uname_R)" : '4\.'),2)
214 PTHREAD_LIBS = -pthread
215 NO_UINTMAX_T = YesPlease
216 NO_STRTOUMAX = YesPlease
217 endif
218 PYTHON_PATH = /usr/local/bin/python
259f22af 219 PERL_PATH = /usr/local/bin/perl
e1b6dbb5 220 HAVE_PATHS_H = YesPlease
66547547 221 GMTIME_UNRELIABLE_ERRORS = UnfortunatelyYes
9529080d 222 HAVE_BSD_SYSCTL = YesPlease
226c0ddd 223 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
995bc22d 224 PAGER_ENV = LESS=FRX LV=-c MORE=FRX
e2d90fd1 225 FREAD_READS_DIRECTORIES = UnfortunatelyYes
18a4f6be 226 FILENO_IS_A_MACRO = UnfortunatelyYes
e1b6dbb5
JK
227endif
228ifeq ($(uname_S),OpenBSD)
229 NO_STRCASESTR = YesPlease
230 NO_MEMMEM = YesPlease
231 USE_ST_TIMESPEC = YesPlease
232 NEEDS_LIBICONV = YesPlease
233 BASIC_CFLAGS += -I/usr/local/include
234 BASIC_LDFLAGS += -L/usr/local/lib
235 HAVE_PATHS_H = YesPlease
9529080d 236 HAVE_BSD_SYSCTL = YesPlease
226c0ddd
DJ
237 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
238 PROCFS_EXECUTABLE_PATH = /proc/curproc/file
4e3ecbd4 239 FREAD_READS_DIRECTORIES = UnfortunatelyYes
18a4f6be 240 FILENO_IS_A_MACRO = UnfortunatelyYes
92164af9
BS
241endif
242ifeq ($(uname_S),MirBSD)
243 NO_STRCASESTR = YesPlease
244 NO_MEMMEM = YesPlease
245 USE_ST_TIMESPEC = YesPlease
246 NEEDS_LIBICONV = YesPlease
247 HAVE_PATHS_H = YesPlease
9529080d 248 HAVE_BSD_SYSCTL = YesPlease
e1b6dbb5
JK
249endif
250ifeq ($(uname_S),NetBSD)
251 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
252 NEEDS_LIBICONV = YesPlease
253 endif
254 BASIC_CFLAGS += -I/usr/pkg/include
255 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
256 USE_ST_TIMESPEC = YesPlease
e1b6dbb5 257 HAVE_PATHS_H = YesPlease
9529080d 258 HAVE_BSD_SYSCTL = YesPlease
226c0ddd
DJ
259 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
260 PROCFS_EXECUTABLE_PATH = /proc/curproc/exe
e1b6dbb5
JK
261endif
262ifeq ($(uname_S),AIX)
263 DEFAULT_PAGER = more
264 NO_STRCASESTR = YesPlease
265 NO_MEMMEM = YesPlease
266 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
267 NO_STRLCPY = YesPlease
268 NO_NSEC = YesPlease
0e6d899f 269 NO_REGEX = NeedsStartEnd
e1b6dbb5
JK
270 FREAD_READS_DIRECTORIES = UnfortunatelyYes
271 INTERNAL_QSORT = UnfortunatelyYes
272 NEEDS_LIBICONV = YesPlease
273 BASIC_CFLAGS += -D_LARGE_FILES
ee662bf5 274 FILENO_IS_A_MACRO = UnfortunatelyYes
400caafb 275 NEED_ACCESS_ROOT_HANDLER = UnfortunatelyYes
e1b6dbb5
JK
276 ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
277 NO_PTHREADS = YesPlease
278 else
279 PTHREAD_LIBS = -lpthread
280 endif
281 ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
282 INLINE = ''
283 endif
284 GIT_TEST_CMP = cmp
285endif
286ifeq ($(uname_S),GNU)
287 # GNU/Hurd
61f76a36 288 HAVE_ALLOCA_H = YesPlease
e1b6dbb5 289 NO_STRLCPY = YesPlease
e1b6dbb5
JK
290 HAVE_PATHS_H = YesPlease
291 LIBC_CONTAINS_LIBINTL = YesPlease
292endif
293ifeq ($(uname_S),IRIX)
294 NO_SETENV = YesPlease
295 NO_UNSETENV = YesPlease
296 NO_STRCASESTR = YesPlease
297 NO_MEMMEM = YesPlease
e1b6dbb5
JK
298 NO_MKDTEMP = YesPlease
299 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
300 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
301 # git dies with a segmentation fault when trying to access the first
302 # entry of a reflog. The conservative choice is made to always set
303 # NO_MMAP. If you suspect that your compiler is not affected by this
304 # issue, comment out the NO_MMAP statement.
305 NO_MMAP = YesPlease
306 NO_REGEX = YesPlease
e1b6dbb5
JK
307 SNPRINTF_RETURNS_BOGUS = YesPlease
308 SHELL_PATH = /usr/gnu/bin/bash
309 NEEDS_LIBGEN = YesPlease
310endif
311ifeq ($(uname_S),IRIX64)
312 NO_SETENV = YesPlease
313 NO_UNSETENV = YesPlease
314 NO_STRCASESTR = YesPlease
315 NO_MEMMEM = YesPlease
e1b6dbb5
JK
316 NO_MKDTEMP = YesPlease
317 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
318 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
319 # git dies with a segmentation fault when trying to access the first
320 # entry of a reflog. The conservative choice is made to always set
321 # NO_MMAP. If you suspect that your compiler is not affected by this
322 # issue, comment out the NO_MMAP statement.
323 NO_MMAP = YesPlease
324 NO_REGEX = YesPlease
e1b6dbb5
JK
325 SNPRINTF_RETURNS_BOGUS = YesPlease
326 SHELL_PATH = /usr/gnu/bin/bash
327 NEEDS_LIBGEN = YesPlease
328endif
329ifeq ($(uname_S),HP-UX)
330 INLINE = __inline
331 NO_IPV6 = YesPlease
332 NO_SETENV = YesPlease
333 NO_STRCASESTR = YesPlease
334 NO_MEMMEM = YesPlease
e1b6dbb5
JK
335 NO_STRLCPY = YesPlease
336 NO_MKDTEMP = YesPlease
337 NO_UNSETENV = YesPlease
338 NO_HSTRERROR = YesPlease
339 NO_SYS_SELECT_H = YesPlease
e1b6dbb5
JK
340 SNPRINTF_RETURNS_BOGUS = YesPlease
341 NO_NSEC = YesPlease
342 ifeq ($(uname_R),B.11.00)
343 NO_INET_NTOP = YesPlease
344 NO_INET_PTON = YesPlease
345 endif
346 ifeq ($(uname_R),B.10.20)
347 # Override HP-UX 11.x setting:
348 INLINE =
349 SOCKLEN_T = size_t
350 NO_PREAD = YesPlease
351 NO_INET_NTOP = YesPlease
352 NO_INET_PTON = YesPlease
353 endif
354 GIT_TEST_CMP = cmp
355endif
356ifeq ($(uname_S),Windows)
357 GIT_VERSION := $(GIT_VERSION).MSVC
358 pathsep = ;
61f76a36 359 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
360 NO_PREAD = YesPlease
361 NEEDS_CRYPTO_WITH_SSL = YesPlease
362 NO_LIBGEN_H = YesPlease
363 NO_POLL = YesPlease
364 NO_SYMLINK_HEAD = YesPlease
365 NO_IPV6 = YesPlease
366 NO_UNIX_SOCKETS = YesPlease
367 NO_SETENV = YesPlease
e1b6dbb5
JK
368 NO_STRCASESTR = YesPlease
369 NO_STRLCPY = YesPlease
e1b6dbb5
JK
370 NO_MEMMEM = YesPlease
371 # NEEDS_LIBICONV = YesPlease
372 NO_ICONV = YesPlease
373 NO_STRTOUMAX = YesPlease
e1b6dbb5 374 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
375 SNPRINTF_RETURNS_BOGUS = YesPlease
376 NO_SVN_TESTS = YesPlease
e1b6dbb5 377 RUNTIME_PREFIX = YesPlease
86e25458 378 HAVE_WPGMPTR = YesWeDo
e1b6dbb5 379 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
e1b6dbb5 380 USE_WIN32_MMAP = YesPlease
5b633610 381 MMAP_PREVENTS_DELETE = UnfortunatelyYes
e1b6dbb5
JK
382 # USE_NED_ALLOCATOR = YesPlease
383 UNRELIABLE_FSTAT = UnfortunatelyYes
384 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
385 NO_REGEX = YesPlease
bad866a2 386 NO_GETTEXT = YesPlease
e1b6dbb5
JK
387 NO_PYTHON = YesPlease
388 BLK_SHA1 = YesPlease
e0492c5b 389 ETAGS_TARGET = ETAGS
e1b6dbb5
JK
390 NO_POSIX_GOODIES = UnfortunatelyYes
391 NATIVE_CRLF = YesPlease
392 DEFAULT_HELP_FORMAT = html
393
394 CC = compat/vcbuild/scripts/clink.pl
395 AR = compat/vcbuild/scripts/lib.pl
396 CFLAGS =
397 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
398 COMPAT_OBJS = compat/msvc.o compat/winansi.o \
22c3634c 399 compat/win32/path-utils.o \
e1b6dbb5 400 compat/win32/pthread.o compat/win32/syslog.o \
353d3d77 401 compat/win32/trace2_win32_process_info.o \
e1b6dbb5 402 compat/win32/dirent.o
61f76a36 403 COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
a08e803d 404 BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE
4b623d80 405 EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj
e1b6dbb5
JK
406 PTHREAD_LIBS =
407 lib =
2b4c6efc 408 BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
e1b6dbb5 409ifndef DEBUG
a08e803d 410 BASIC_CFLAGS += -GL -Os -MD
e1b6dbb5
JK
411 BASIC_LDFLAGS += -LTCG
412 AR += -LTCG
413else
a08e803d 414 BASIC_CFLAGS += -Zi -MDd
e1b6dbb5
JK
415endif
416 X = .exe
417endif
418ifeq ($(uname_S),Interix)
419 NO_INITGROUPS = YesPlease
420 NO_IPV6 = YesPlease
421 NO_MEMMEM = YesPlease
422 NO_MKDTEMP = YesPlease
423 NO_STRTOUMAX = YesPlease
424 NO_NSEC = YesPlease
e1b6dbb5
JK
425 ifeq ($(uname_R),3.5)
426 NO_INET_NTOP = YesPlease
427 NO_INET_PTON = YesPlease
428 NO_SOCKADDR_STORAGE = YesPlease
e1b6dbb5
JK
429 endif
430 ifeq ($(uname_R),5.2)
431 NO_INET_NTOP = YesPlease
432 NO_INET_PTON = YesPlease
433 NO_SOCKADDR_STORAGE = YesPlease
e1b6dbb5
JK
434 endif
435endif
436ifeq ($(uname_S),Minix)
437 NO_IPV6 = YesPlease
438 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
439 NO_NSEC = YesPlease
440 NEEDS_LIBGEN =
441 NEEDS_CRYPTO_WITH_SSL = YesPlease
e1b6dbb5
JK
442 NEEDS_RESOLV =
443 NO_HSTRERROR = YesPlease
444 NO_MMAP = YesPlease
445 NO_CURL =
446 NO_EXPAT =
447endif
448ifeq ($(uname_S),NONSTOP_KERNEL)
449 # Needs some C99 features, "inline" is just one of them.
450 # INLINE='' would just replace one set of warnings with another and
451 # still not compile in c89 mode, due to non-const array initializations.
452 CC = cc -c99
71fb089c
RB
453 # Build down-rev compatible objects that don't use our new getopt_long.
454 ifeq ($(uname_R).$(uname_V),J06.21)
455 CC += -WRVU=J06.20
456 endif
457 ifeq ($(uname_R).$(uname_V),L17.02)
458 CC += -WRVU=L16.05
459 endif
e1b6dbb5
JK
460 # Disable all optimization, seems to result in bad code, with -O or -O2
461 # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
462 # abends on "git push". Needs more investigation.
71fb089c 463 CFLAGS = -g -O0 -Winline
e1b6dbb5
JK
464 # We'd want it to be here.
465 prefix = /usr/local
71fb089c
RB
466 # perl and python must be in /usr/bin on NonStop - supplied by HPE
467 # with operating system in that managed directory.
468 PERL_PATH = /usr/bin/perl
469 PYTHON_PATH = /usr/bin/python
470 # The current /usr/coreutils/rm at lowest support level does not work
471 # with the git test structure. Long paths as in
472 # 'trash directory...' cause rm to terminate prematurely without fully
473 # removing the directory at OS releases J06.21 and L17.02.
474 # Default to the older rm until those two releases are deprecated.
475 RM = /bin/rm -f
e1b6dbb5
JK
476 # As detected by './configure'.
477 # Missdetected, hence commented out, see below.
478 #NO_CURL = YesPlease
479 # Added manually, see above.
71fb089c
RB
480 NEEDS_SSL_WITH_CURL = YesPlease
481 NEEDS_CRYPTO_WITH_SSL = YesPlease
482 HAVE_DEV_TTY = YesPlease
e1b6dbb5
JK
483 HAVE_LIBCHARSET_H = YesPlease
484 HAVE_STRINGS_H = YesPlease
485 NEEDS_LIBICONV = YesPlease
486 NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
487 NO_SYS_SELECT_H = UnfortunatelyYes
488 NO_D_TYPE_IN_DIRENT = YesPlease
71fb089c 489 NO_GETTEXT = YesPlease
e1b6dbb5
JK
490 NO_HSTRERROR = YesPlease
491 NO_STRCASESTR = YesPlease
e1b6dbb5
JK
492 NO_MEMMEM = YesPlease
493 NO_STRLCPY = YesPlease
494 NO_SETENV = YesPlease
495 NO_UNSETENV = YesPlease
496 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
497 # Currently libiconv-1.9.1.
498 OLD_ICONV = UnfortunatelyYes
71fb089c 499 NO_REGEX = NeedsStartEnd
e1b6dbb5 500 NO_PTHREADS = UnfortunatelyYes
243a4c7e 501 FREAD_READS_DIRECTORIES = UnfortunatelyYes
e1b6dbb5
JK
502
503 # Not detected (nor checked for) by './configure'.
504 # We don't have SA_RESTART on NonStop, unfortunalety.
505 COMPAT_CFLAGS += -DSA_RESTART=0
506 # Apparently needed in compat/fnmatch/fnmatch.c.
507 COMPAT_CFLAGS += -DHAVE_STRING_H=1
508 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
509 NO_NSEC = YesPlease
510 NO_PREAD = YesPlease
511 NO_MMAP = YesPlease
512 NO_POLL = YesPlease
513 NO_INTPTR_T = UnfortunatelyYes
514 # Bug report 10-120822-4477 submitted to HP NonStop development.
515 MKDIR_WO_TRAILING_SLASH = YesPlease
516 # RFE 10-120912-4693 submitted to HP NonStop development.
517 NO_SETITIMER = UnfortunatelyYes
518 SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
f0ec22bb 519 SHELL_PATH = /usr/coreutils/bin/bash
e1b6dbb5
JK
520endif
521ifneq (,$(findstring MINGW,$(uname_S)))
522 pathsep = ;
22f4c27e 523 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
524 NO_PREAD = YesPlease
525 NEEDS_CRYPTO_WITH_SSL = YesPlease
526 NO_LIBGEN_H = YesPlease
527 NO_POLL = YesPlease
528 NO_SYMLINK_HEAD = YesPlease
529 NO_UNIX_SOCKETS = YesPlease
530 NO_SETENV = YesPlease
e1b6dbb5
JK
531 NO_STRCASESTR = YesPlease
532 NO_STRLCPY = YesPlease
e1b6dbb5
JK
533 NO_MEMMEM = YesPlease
534 NEEDS_LIBICONV = YesPlease
e1b6dbb5
JK
535 NO_STRTOUMAX = YesPlease
536 NO_MKDTEMP = YesPlease
e1b6dbb5 537 NO_SVN_TESTS = YesPlease
e1b6dbb5 538 RUNTIME_PREFIX = YesPlease
86e25458 539 HAVE_WPGMPTR = YesWeDo
e1b6dbb5 540 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
e1b6dbb5 541 USE_WIN32_MMAP = YesPlease
5b633610 542 MMAP_PREVENTS_DELETE = UnfortunatelyYes
e1b6dbb5
JK
543 USE_NED_ALLOCATOR = YesPlease
544 UNRELIABLE_FSTAT = UnfortunatelyYes
545 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
546 NO_REGEX = YesPlease
547 NO_PYTHON = YesPlease
e1b6dbb5 548 ETAGS_TARGET = ETAGS
e1b6dbb5 549 NO_POSIX_GOODIES = UnfortunatelyYes
65db0443 550 DEFAULT_HELP_FORMAT = html
7b40ae86 551 COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32
e1b6dbb5
JK
552 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
553 COMPAT_OBJS += compat/mingw.o compat/winansi.o \
353d3d77 554 compat/win32/trace2_win32_process_info.o \
1cadad6f 555 compat/win32/path-utils.o \
e1b6dbb5
JK
556 compat/win32/pthread.o compat/win32/syslog.o \
557 compat/win32/dirent.o
b4d991d1 558 BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1
e1b6dbb5 559 EXTLIBS += -lws2_32
ce39c2e0 560 GITLIBS += git.res
e1b6dbb5 561 PTHREAD_LIBS =
ce39c2e0 562 RC = windres -O coff
95f31e9a 563 NATIVE_CRLF = YesPlease
e1b6dbb5 564 X = .exe
e1b6dbb5
JK
565ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
566 htmldir = doc/git/html/
567 prefix =
568 INSTALL = /bin/install
569 EXTLIBS += /mingw/lib/libz.a
570 NO_R_TO_GCC_LINKER = YesPlease
571 INTERNAL_QSORT = YesPlease
572 HAVE_LIBCHARSET_H = YesPlease
ca354871 573 NO_GETTEXT = YesPlease
df5218b4 574 COMPAT_CLFAGS += -D__USE_MINGW_ACCESS
e1b6dbb5 575else
aeb582a9 576 ifneq ($(shell expr "$(uname_R)" : '1\.'),2)
df5218b4 577 # MSys2
7b40ae86 578 prefix = /usr/
ce6a1585
İD
579 # Enable DEP
580 BASIC_LDFLAGS += -Wl,--nxcompat
581 # Enable ASLR (unless debugging)
582 ifneq (,$(findstring -O,$(filter-out -O0 -Og,$(CFLAGS))))
583 BASIC_LDFLAGS += -Wl,--dynamicbase
584 endif
7b40ae86
JS
585 ifeq (MINGW32,$(MSYSTEM))
586 prefix = /mingw32
bb02e7a5 587 HOST_CPU = i686
598b6c3a 588 BASIC_LDFLAGS += -Wl,--pic-executable,-e,_mainCRTStartup
7b40ae86
JS
589 endif
590 ifeq (MINGW64,$(MSYSTEM))
591 prefix = /mingw64
bb02e7a5 592 HOST_CPU = x86_64
598b6c3a 593 BASIC_LDFLAGS += -Wl,--pic-executable,-e,mainCRTStartup
7b40ae86
JS
594 else
595 COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
596 BASIC_LDFLAGS += -Wl,--large-address-aware
597 endif
df5218b4 598 CC = gcc
f7f90e0f
KB
599 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY
600 EXTLIBS += -lntdll
df5218b4
JS
601 INSTALL = /bin/install
602 NO_R_TO_GCC_LINKER = YesPlease
603 INTERNAL_QSORT = YesPlease
604 HAVE_LIBCHARSET_H = YesPlease
f9206ce2 605 NO_GETTEXT =
b640b77f 606 USE_GETTEXT_SCHEME = fallthrough
df5218b4 607 USE_LIBPCRE= YesPlease
fb95e2e3 608 NO_LIBPCRE1_JIT = UnfortunatelyYes
df5218b4
JS
609 NO_CURL =
610 USE_NED_ALLOCATOR = YesPlease
611 else
612 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO
613 NO_CURL = YesPlease
614 endif
e1b6dbb5
JK
615endif
616endif
617ifeq ($(uname_S),QNX)
618 COMPAT_CFLAGS += -DSA_RESTART=0
081fd8d0 619 EXPAT_NEEDS_XMLPARSE_H = YesPlease
e1b6dbb5
JK
620 HAVE_STRINGS_H = YesPlease
621 NEEDS_SOCKET = YesPlease
e1b6dbb5
JK
622 NO_GETPAGESIZE = YesPlease
623 NO_ICONV = YesPlease
624 NO_MEMMEM = YesPlease
625 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
626 NO_NSEC = YesPlease
627 NO_PTHREADS = YesPlease
628 NO_R_TO_GCC_LINKER = YesPlease
629 NO_STRCASESTR = YesPlease
630 NO_STRLCPY = YesPlease
631endif