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