blob: f179d7a1dc98d091f915dcca9ceb05dda5491549 [file] [log] [blame]
Jeff Kinge1b6dbb2013-01-03 16:05:41 -05001# 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
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050020ifeq ($(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)
Kirill Smelkov61f76a32014-03-27 18:22:50 +040028 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050029 NO_STRLCPY = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050030 HAVE_PATHS_H = YesPlease
31 LIBC_CONTAINS_LIBINTL = YesPlease
32 HAVE_DEV_TTY = YesPlease
Karsten Blees148d6772014-07-12 02:05:42 +020033 HAVE_CLOCK_GETTIME = YesPlease
Reuben Hawkinsa6c3c632015-01-08 12:00:56 -080034 HAVE_CLOCK_MONOTONIC = YesPlease
Eric Wong52fcec72016-07-10 22:16:44 +000035 # -lrt is needed for clock_gettime on glibc <= 2.16
36 NEEDS_LIBRT = YesPlease
Jeff King0cc30e02015-04-16 05:01:38 -040037 HAVE_GETDELIM = YesPlease
Junio C Hamano71b40102016-03-08 15:47:57 -080038 SANE_TEXT_GREP=-a
Nguyễn Thái Ngọc Duye2d90fd2017-05-03 17:16:48 +070039 FREAD_READS_DIRECTORIES = UnfortunatelyYes
Nguyễn Thái Ngọc Duy9806f5a2018-04-15 17:36:17 +020040 BASIC_CFLAGS += -DHAVE_SYSINFO
Dan Jacques226c0dd2018-04-10 11:05:44 -040041 PROCFS_EXECUTABLE_PATH = /proc/self/exe
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050042endif
43ifeq ($(uname_S),GNU/kFreeBSD)
Kirill Smelkov61f76a32014-03-27 18:22:50 +040044 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050045 NO_STRLCPY = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050046 HAVE_PATHS_H = YesPlease
47 DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease
48 LIBC_CONTAINS_LIBINTL = YesPlease
Nguyễn Thái Ngọc Duye2d90fd2017-05-03 17:16:48 +070049 FREAD_READS_DIRECTORIES = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050050endif
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
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050060 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
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050083 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
Junio C Hamano9eeff2f2014-08-15 10:02:46 -070094 # 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".
Jeff Kinge1b6dbb2013-01-03 16:05:41 -050098 ifeq ($(shell expr "$(uname_R)" : '[15678]\.'),2)
99 OLD_ICONV = UnfortunatelyYes
Kyle J. McKay9c7a0be2014-08-15 00:46:11 -0700100 NO_APPLE_COMMON_CRYPTO = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500101 endif
102 ifeq ($(shell expr "$(uname_R)" : '[15]\.'),2)
103 NO_STRLCPY = YesPlease
104 endif
Eric Sunshine4e368782015-06-02 17:15:43 -0400105 ifeq ($(shell test "`expr "$(uname_R)" : '\([0-9][0-9]*\)\.'`" -ge 11 && echo 1),1)
106 HAVE_GETDELIM = YesPlease
107 endif
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500108 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
Jeff Kinga42643a2014-12-15 18:15:20 -0500113 BASIC_CFLAGS += -DPROTECT_HFS_DEFAULT=1
Kyle J. McKay95290802015-03-07 23:14:36 -0800114 HAVE_BSD_SYSCTL = YesPlease
Junio C Hamano8e178ec2017-05-09 21:44:33 -0700115 FREAD_READS_DIRECTORIES = UnfortunatelyYes
Dan Jacques226c0dd2018-04-10 11:05:44 -0400116 HAVE_NS_GET_EXECUTABLE_PATH = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500117endif
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
Kirill Smelkov61f76a32014-03-27 18:22:50 +0400123 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500124 NO_STRCASESTR = YesPlease
125 NO_MEMMEM = YesPlease
126 NO_MKDTEMP = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500127 NO_REGEX = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500128 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
Kirill Smelkov61f76a32014-03-27 18:22:50 +0400165 BASIC_CFLAGS += -D__EXTENSIONS__ -D__sun__
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500166endif
167ifeq ($(uname_O),Cygwin)
168 ifeq ($(shell expr "$(uname_R)" : '1\.[1-6]\.'),4)
169 NO_D_TYPE_IN_DIRENT = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500170 NO_STRCASESTR = YesPlease
171 NO_MEMMEM = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500172 NO_SYMLINK_HEAD = YesPlease
173 NO_IPV6 = YesPlease
174 OLD_ICONV = UnfortunatelyYes
Mark Levedahlf593ef72013-07-19 19:08:30 -0400175 # 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
Mark Levedahl92f63d22013-07-19 19:08:28 -0400179 else
180 NO_REGEX = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500181 endif
Kirill Smelkov61f76a32014-03-27 18:22:50 +0400182 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500183 NEEDS_LIBICONV = YesPlease
184 NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500185 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500186 X = .exe
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500187 UNRELIABLE_FSTAT = UnfortunatelyYes
Adam Dinwoodiee53a64b2015-08-07 21:30:28 +0100188 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
Michael Haggerty5b633612017-09-25 10:00:10 +0200189 MMAP_PREVENTS_DELETE = UnfortunatelyYes
Torsten Bögershausen496f2562017-07-03 16:41:37 +0200190 COMPAT_OBJS += compat/cygwin.o
Ramsay Jonesa5956d62017-07-21 19:43:17 +0100191 FREAD_READS_DIRECTORIES = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500192endif
193ifeq ($(uname_S),FreeBSD)
194 NEEDS_LIBICONV = YesPlease
Eric Sunshine6c6ce212018-08-31 04:33:42 -0400195 # 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
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500206 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
Nguyễn Thái Ngọc Duy259f22a2016-07-25 18:21:25 +0200217 PERL_PATH = /usr/local/bin/perl
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500218 HAVE_PATHS_H = YesPlease
Jeff King66547542014-04-01 17:28:42 -0400219 GMTIME_UNRELIABLE_ERRORS = UnfortunatelyYes
Kyle J. McKay95290802015-03-07 23:14:36 -0800220 HAVE_BSD_SYSCTL = YesPlease
Dan Jacques226c0dd2018-04-10 11:05:44 -0400221 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
Eric Wong995bc222016-08-04 11:40:25 +0000222 PAGER_ENV = LESS=FRX LV=-c MORE=FRX
Nguyễn Thái Ngọc Duye2d90fd2017-05-03 17:16:48 +0700223 FREAD_READS_DIRECTORIES = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500224endif
225ifeq ($(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
Kyle J. McKay95290802015-03-07 23:14:36 -0800233 HAVE_BSD_SYSCTL = YesPlease
Dan Jacques226c0dd2018-04-10 11:05:44 -0400234 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
235 PROCFS_EXECUTABLE_PATH = /proc/curproc/file
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500236endif
Benny Siegert92164af2013-12-31 14:36:45 +0000237ifeq ($(uname_S),MirBSD)
238 NO_STRCASESTR = YesPlease
239 NO_MEMMEM = YesPlease
240 USE_ST_TIMESPEC = YesPlease
241 NEEDS_LIBICONV = YesPlease
242 HAVE_PATHS_H = YesPlease
Kyle J. McKay95290802015-03-07 23:14:36 -0800243 HAVE_BSD_SYSCTL = YesPlease
Benny Siegert92164af2013-12-31 14:36:45 +0000244endif
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500245ifeq ($(uname_S),NetBSD)
246 ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2)
247 NEEDS_LIBICONV = YesPlease
248 endif
249 BASIC_CFLAGS += -I/usr/pkg/include
250 BASIC_LDFLAGS += -L/usr/pkg/lib $(CC_LD_DYNPATH)/usr/pkg/lib
251 USE_ST_TIMESPEC = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500252 HAVE_PATHS_H = YesPlease
Kyle J. McKay95290802015-03-07 23:14:36 -0800253 HAVE_BSD_SYSCTL = YesPlease
Dan Jacques226c0dd2018-04-10 11:05:44 -0400254 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
255 PROCFS_EXECUTABLE_PATH = /proc/curproc/exe
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500256endif
257ifeq ($(uname_S),AIX)
258 DEFAULT_PAGER = more
259 NO_STRCASESTR = YesPlease
260 NO_MEMMEM = YesPlease
261 NO_MKDTEMP = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500262 NO_STRLCPY = YesPlease
263 NO_NSEC = YesPlease
Ævar Arnfjörð Bjarmason0e6d8992017-05-03 13:54:30 +0000264 NO_REGEX = NeedsStartEnd
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500265 FREAD_READS_DIRECTORIES = UnfortunatelyYes
266 INTERNAL_QSORT = UnfortunatelyYes
267 NEEDS_LIBICONV = YesPlease
268 BASIC_CFLAGS += -D_LARGE_FILES
269 ifeq ($(shell expr "$(uname_V)" : '[1234]'),1)
270 NO_PTHREADS = YesPlease
271 else
272 PTHREAD_LIBS = -lpthread
273 endif
274 ifeq ($(shell expr "$(uname_V).$(uname_R)" : '5\.1'),3)
275 INLINE = ''
276 endif
277 GIT_TEST_CMP = cmp
278endif
279ifeq ($(uname_S),GNU)
280 # GNU/Hurd
Kirill Smelkov61f76a32014-03-27 18:22:50 +0400281 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500282 NO_STRLCPY = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500283 HAVE_PATHS_H = YesPlease
284 LIBC_CONTAINS_LIBINTL = YesPlease
285endif
286ifeq ($(uname_S),IRIX)
287 NO_SETENV = YesPlease
288 NO_UNSETENV = YesPlease
289 NO_STRCASESTR = YesPlease
290 NO_MEMMEM = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500291 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
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500300 SNPRINTF_RETURNS_BOGUS = YesPlease
301 SHELL_PATH = /usr/gnu/bin/bash
302 NEEDS_LIBGEN = YesPlease
303endif
304ifeq ($(uname_S),IRIX64)
305 NO_SETENV = YesPlease
306 NO_UNSETENV = YesPlease
307 NO_STRCASESTR = YesPlease
308 NO_MEMMEM = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500309 NO_MKDTEMP = YesPlease
310 # When compiled with the MIPSpro 7.4.4m compiler, and without pthreads
311 # (i.e. NO_PTHREADS is set), and _with_ MMAP (i.e. NO_MMAP is not set),
312 # git dies with a segmentation fault when trying to access the first
313 # entry of a reflog. The conservative choice is made to always set
314 # NO_MMAP. If you suspect that your compiler is not affected by this
315 # issue, comment out the NO_MMAP statement.
316 NO_MMAP = YesPlease
317 NO_REGEX = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500318 SNPRINTF_RETURNS_BOGUS = YesPlease
319 SHELL_PATH = /usr/gnu/bin/bash
320 NEEDS_LIBGEN = YesPlease
321endif
322ifeq ($(uname_S),HP-UX)
323 INLINE = __inline
324 NO_IPV6 = YesPlease
325 NO_SETENV = YesPlease
326 NO_STRCASESTR = YesPlease
327 NO_MEMMEM = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500328 NO_STRLCPY = YesPlease
329 NO_MKDTEMP = YesPlease
330 NO_UNSETENV = YesPlease
331 NO_HSTRERROR = YesPlease
332 NO_SYS_SELECT_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500333 SNPRINTF_RETURNS_BOGUS = YesPlease
334 NO_NSEC = YesPlease
335 ifeq ($(uname_R),B.11.00)
336 NO_INET_NTOP = YesPlease
337 NO_INET_PTON = YesPlease
338 endif
339 ifeq ($(uname_R),B.10.20)
340 # Override HP-UX 11.x setting:
341 INLINE =
342 SOCKLEN_T = size_t
343 NO_PREAD = YesPlease
344 NO_INET_NTOP = YesPlease
345 NO_INET_PTON = YesPlease
346 endif
347 GIT_TEST_CMP = cmp
348endif
349ifeq ($(uname_S),Windows)
350 GIT_VERSION := $(GIT_VERSION).MSVC
351 pathsep = ;
Kirill Smelkov61f76a32014-03-27 18:22:50 +0400352 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500353 NO_PREAD = YesPlease
354 NEEDS_CRYPTO_WITH_SSL = YesPlease
355 NO_LIBGEN_H = YesPlease
356 NO_POLL = YesPlease
357 NO_SYMLINK_HEAD = YesPlease
358 NO_IPV6 = YesPlease
359 NO_UNIX_SOCKETS = YesPlease
360 NO_SETENV = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500361 NO_STRCASESTR = YesPlease
362 NO_STRLCPY = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500363 NO_MEMMEM = YesPlease
364 # NEEDS_LIBICONV = YesPlease
365 NO_ICONV = YesPlease
366 NO_STRTOUMAX = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500367 NO_MKDTEMP = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500368 SNPRINTF_RETURNS_BOGUS = YesPlease
369 NO_SVN_TESTS = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500370 RUNTIME_PREFIX = YesPlease
Johannes Schindelin86e25452018-04-10 11:05:46 -0400371 HAVE_WPGMPTR = YesWeDo
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500372 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500373 USE_WIN32_MMAP = YesPlease
Michael Haggerty5b633612017-09-25 10:00:10 +0200374 MMAP_PREVENTS_DELETE = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500375 # USE_NED_ALLOCATOR = YesPlease
376 UNRELIABLE_FSTAT = UnfortunatelyYes
377 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
378 NO_REGEX = YesPlease
Karsten Bleesbad866a2013-09-11 01:21:53 +0200379 NO_GETTEXT = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500380 NO_PYTHON = YesPlease
381 BLK_SHA1 = YesPlease
Ramsay Jonese0492c52013-01-31 18:33:57 +0000382 ETAGS_TARGET = ETAGS
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500383 NO_POSIX_GOODIES = UnfortunatelyYes
384 NATIVE_CRLF = YesPlease
385 DEFAULT_HELP_FORMAT = html
386
387 CC = compat/vcbuild/scripts/clink.pl
388 AR = compat/vcbuild/scripts/lib.pl
389 CFLAGS =
390 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
391 COMPAT_OBJS = compat/msvc.o compat/winansi.o \
392 compat/win32/pthread.o compat/win32/syslog.o \
393 compat/win32/dirent.o
Kirill Smelkov61f76a32014-03-27 18:22:50 +0400394 COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
Karsten Bleesa08e8032011-01-07 17:20:21 +0100395 BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE
Marat Radchenko4b623d82014-03-29 00:08:02 +0400396 EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500397 PTHREAD_LIBS =
398 lib =
Johannes Schindelin2b4c6ef2014-12-16 23:46:59 +0100399 BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500400ifndef DEBUG
Karsten Bleesa08e8032011-01-07 17:20:21 +0100401 BASIC_CFLAGS += -GL -Os -MD
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500402 BASIC_LDFLAGS += -LTCG
403 AR += -LTCG
404else
Karsten Bleesa08e8032011-01-07 17:20:21 +0100405 BASIC_CFLAGS += -Zi -MDd
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500406endif
407 X = .exe
408endif
409ifeq ($(uname_S),Interix)
410 NO_INITGROUPS = YesPlease
411 NO_IPV6 = YesPlease
412 NO_MEMMEM = YesPlease
413 NO_MKDTEMP = YesPlease
414 NO_STRTOUMAX = YesPlease
415 NO_NSEC = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500416 ifeq ($(uname_R),3.5)
417 NO_INET_NTOP = YesPlease
418 NO_INET_PTON = YesPlease
419 NO_SOCKADDR_STORAGE = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500420 endif
421 ifeq ($(uname_R),5.2)
422 NO_INET_NTOP = YesPlease
423 NO_INET_PTON = YesPlease
424 NO_SOCKADDR_STORAGE = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500425 endif
426endif
427ifeq ($(uname_S),Minix)
428 NO_IPV6 = YesPlease
429 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
430 NO_NSEC = YesPlease
431 NEEDS_LIBGEN =
432 NEEDS_CRYPTO_WITH_SSL = YesPlease
433 NEEDS_IDN_WITH_CURL = YesPlease
434 NEEDS_SSL_WITH_CURL = YesPlease
435 NEEDS_RESOLV =
436 NO_HSTRERROR = YesPlease
437 NO_MMAP = YesPlease
438 NO_CURL =
439 NO_EXPAT =
440endif
441ifeq ($(uname_S),NONSTOP_KERNEL)
442 # Needs some C99 features, "inline" is just one of them.
443 # INLINE='' would just replace one set of warnings with another and
444 # still not compile in c89 mode, due to non-const array initializations.
445 CC = cc -c99
446 # Disable all optimization, seems to result in bad code, with -O or -O2
447 # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
448 # abends on "git push". Needs more investigation.
449 CFLAGS = -g -O0
450 # We'd want it to be here.
451 prefix = /usr/local
452 # Our's are in ${prefix}/bin (perl might also be in /usr/bin/perl).
453 PERL_PATH = ${prefix}/bin/perl
454 PYTHON_PATH = ${prefix}/bin/python
455
456 # As detected by './configure'.
457 # Missdetected, hence commented out, see below.
458 #NO_CURL = YesPlease
459 # Added manually, see above.
460 NEEDS_SSL_WITH_CURL = YesPlease
461 HAVE_LIBCHARSET_H = YesPlease
462 HAVE_STRINGS_H = YesPlease
463 NEEDS_LIBICONV = YesPlease
464 NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
465 NO_SYS_SELECT_H = UnfortunatelyYes
466 NO_D_TYPE_IN_DIRENT = YesPlease
467 NO_HSTRERROR = YesPlease
468 NO_STRCASESTR = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500469 NO_MEMMEM = YesPlease
470 NO_STRLCPY = YesPlease
471 NO_SETENV = YesPlease
472 NO_UNSETENV = YesPlease
473 NO_MKDTEMP = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500474 # Currently libiconv-1.9.1.
475 OLD_ICONV = UnfortunatelyYes
476 NO_REGEX = YesPlease
477 NO_PTHREADS = UnfortunatelyYes
478
479 # Not detected (nor checked for) by './configure'.
480 # We don't have SA_RESTART on NonStop, unfortunalety.
481 COMPAT_CFLAGS += -DSA_RESTART=0
482 # Apparently needed in compat/fnmatch/fnmatch.c.
483 COMPAT_CFLAGS += -DHAVE_STRING_H=1
484 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
485 NO_NSEC = YesPlease
486 NO_PREAD = YesPlease
487 NO_MMAP = YesPlease
488 NO_POLL = YesPlease
489 NO_INTPTR_T = UnfortunatelyYes
490 # Bug report 10-120822-4477 submitted to HP NonStop development.
491 MKDIR_WO_TRAILING_SLASH = YesPlease
492 # RFE 10-120912-4693 submitted to HP NonStop development.
493 NO_SETITIMER = UnfortunatelyYes
494 SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
495 SHELL_PATH = /usr/local/bin/bash
496 # as of H06.25/J06.14, we might better use this
497 #SHELL_PATH = /usr/coreutils/bin/bash
498endif
499ifneq (,$(findstring MINGW,$(uname_S)))
500 pathsep = ;
Kirill Smelkov22f4c272014-04-09 16:48:27 +0400501 HAVE_ALLOCA_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500502 NO_PREAD = YesPlease
503 NEEDS_CRYPTO_WITH_SSL = YesPlease
504 NO_LIBGEN_H = YesPlease
505 NO_POLL = YesPlease
506 NO_SYMLINK_HEAD = YesPlease
507 NO_UNIX_SOCKETS = YesPlease
508 NO_SETENV = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500509 NO_STRCASESTR = YesPlease
510 NO_STRLCPY = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500511 NO_MEMMEM = YesPlease
512 NEEDS_LIBICONV = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500513 NO_STRTOUMAX = YesPlease
514 NO_MKDTEMP = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500515 NO_SVN_TESTS = YesPlease
516 NO_PERL_MAKEMAKER = YesPlease
517 RUNTIME_PREFIX = YesPlease
Johannes Schindelin86e25452018-04-10 11:05:46 -0400518 HAVE_WPGMPTR = YesWeDo
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500519 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500520 USE_WIN32_MMAP = YesPlease
Michael Haggerty5b633612017-09-25 10:00:10 +0200521 MMAP_PREVENTS_DELETE = UnfortunatelyYes
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500522 USE_NED_ALLOCATOR = YesPlease
523 UNRELIABLE_FSTAT = UnfortunatelyYes
524 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
525 NO_REGEX = YesPlease
526 NO_PYTHON = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500527 ETAGS_TARGET = ETAGS
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500528 NO_POSIX_GOODIES = UnfortunatelyYes
Pat Thoyts65db0442012-06-21 12:24:14 +0100529 DEFAULT_HELP_FORMAT = html
Johannes Schindelin7b40ae82016-01-13 14:31:01 +0100530 COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500531 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
532 COMPAT_OBJS += compat/mingw.o compat/winansi.o \
533 compat/win32/pthread.o compat/win32/syslog.o \
534 compat/win32/dirent.o
Johannes Schindelinb4d991d2018-07-30 08:42:51 -0700535 BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500536 EXTLIBS += -lws2_32
Pat Thoytsce39c2e2012-05-24 00:56:24 +0100537 GITLIBS += git.res
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500538 PTHREAD_LIBS =
Pat Thoytsce39c2e2012-05-24 00:56:24 +0100539 RC = windres -O coff
Jonathan Nieder95f31e92010-09-04 03:25:09 -0500540 NATIVE_CRLF = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500541 X = .exe
542 SPARSE_FLAGS = -Wno-one-bit-signed-bitfield
543ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
544 htmldir = doc/git/html/
545 prefix =
546 INSTALL = /bin/install
547 EXTLIBS += /mingw/lib/libz.a
548 NO_R_TO_GCC_LINKER = YesPlease
549 INTERNAL_QSORT = YesPlease
550 HAVE_LIBCHARSET_H = YesPlease
Johannes Schindelinca354872012-01-05 16:41:41 -0600551 NO_GETTEXT = YesPlease
Johannes Schindelindf5218b2016-01-13 14:30:53 +0100552 COMPAT_CLFAGS += -D__USE_MINGW_ACCESS
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500553else
Johannes Schindelindf5218b2016-01-13 14:30:53 +0100554 ifeq ($(shell expr "$(uname_R)" : '2\.'),2)
555 # MSys2
Johannes Schindelin7b40ae82016-01-13 14:31:01 +0100556 prefix = /usr/
557 ifeq (MINGW32,$(MSYSTEM))
558 prefix = /mingw32
559 endif
560 ifeq (MINGW64,$(MSYSTEM))
561 prefix = /mingw64
562 else
563 COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
564 BASIC_LDFLAGS += -Wl,--large-address-aware
565 endif
Johannes Schindelindf5218b2016-01-13 14:30:53 +0100566 CC = gcc
Karsten Bleesf7f90e02016-04-27 17:16:37 +0200567 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY
568 EXTLIBS += -lntdll
Johannes Schindelindf5218b2016-01-13 14:30:53 +0100569 INSTALL = /bin/install
570 NO_R_TO_GCC_LINKER = YesPlease
571 INTERNAL_QSORT = YesPlease
572 HAVE_LIBCHARSET_H = YesPlease
Johannes Schindelinf9206ce2016-01-26 15:34:16 +0100573 NO_GETTEXT =
Johannes Schindelinb640b772016-01-26 15:34:30 +0100574 USE_GETTEXT_SCHEME = fallthrough
Johannes Schindelindf5218b2016-01-13 14:30:53 +0100575 USE_LIBPCRE= YesPlease
Ævar Arnfjörð Bjarmasonfb95e2e2017-06-01 18:20:55 +0000576 NO_LIBPCRE1_JIT = UnfortunatelyYes
Johannes Schindelindf5218b2016-01-13 14:30:53 +0100577 NO_CURL =
578 USE_NED_ALLOCATOR = YesPlease
579 else
580 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO
581 NO_CURL = YesPlease
582 endif
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500583endif
584endif
585ifeq ($(uname_S),QNX)
586 COMPAT_CFLAGS += -DSA_RESTART=0
Matt Kraai081fd8d2013-02-11 14:03:45 -0800587 EXPAT_NEEDS_XMLPARSE_H = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500588 HAVE_STRINGS_H = YesPlease
589 NEEDS_SOCKET = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500590 NO_GETPAGESIZE = YesPlease
591 NO_ICONV = YesPlease
592 NO_MEMMEM = YesPlease
593 NO_MKDTEMP = YesPlease
Jeff Kinge1b6dbb2013-01-03 16:05:41 -0500594 NO_NSEC = YesPlease
595 NO_PTHREADS = YesPlease
596 NO_R_TO_GCC_LINKER = YesPlease
597 NO_STRCASESTR = YesPlease
598 NO_STRLCPY = YesPlease
599endif