]> git.ipfire.org Git - thirdparty/git.git/blame - config.mak.uname
git clone <url> C:\cygwin\home\USER\repo' is working (again)
[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
e1b6dbb5
JK
224endif
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
9529080d 233 HAVE_BSD_SYSCTL = YesPlease
226c0ddd
DJ
234 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
235 PROCFS_EXECUTABLE_PATH = /proc/curproc/file
92164af9
BS
236endif
237ifeq ($(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
9529080d 243 HAVE_BSD_SYSCTL = YesPlease
e1b6dbb5
JK
244endif
245ifeq ($(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
e1b6dbb5 252 HAVE_PATHS_H = YesPlease
9529080d 253 HAVE_BSD_SYSCTL = YesPlease
226c0ddd
DJ
254 HAVE_BSD_KERN_PROC_SYSCTL = YesPlease
255 PROCFS_EXECUTABLE_PATH = /proc/curproc/exe
e1b6dbb5
JK
256endif
257ifeq ($(uname_S),AIX)
258 DEFAULT_PAGER = more
259 NO_STRCASESTR = YesPlease
260 NO_MEMMEM = YesPlease
261 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
262 NO_STRLCPY = YesPlease
263 NO_NSEC = YesPlease
0e6d899f 264 NO_REGEX = NeedsStartEnd
e1b6dbb5
JK
265 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
61f76a36 281 HAVE_ALLOCA_H = YesPlease
e1b6dbb5 282 NO_STRLCPY = YesPlease
e1b6dbb5
JK
283 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
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),IRIX64)
305 NO_SETENV = YesPlease
306 NO_UNSETENV = YesPlease
307 NO_STRCASESTR = YesPlease
308 NO_MEMMEM = YesPlease
e1b6dbb5
JK
309 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
e1b6dbb5
JK
318 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
e1b6dbb5
JK
328 NO_STRLCPY = YesPlease
329 NO_MKDTEMP = YesPlease
330 NO_UNSETENV = YesPlease
331 NO_HSTRERROR = YesPlease
332 NO_SYS_SELECT_H = YesPlease
e1b6dbb5
JK
333 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 = ;
61f76a36 352 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
353 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
e1b6dbb5
JK
361 NO_STRCASESTR = YesPlease
362 NO_STRLCPY = YesPlease
e1b6dbb5
JK
363 NO_MEMMEM = YesPlease
364 # NEEDS_LIBICONV = YesPlease
365 NO_ICONV = YesPlease
366 NO_STRTOUMAX = YesPlease
e1b6dbb5 367 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
368 SNPRINTF_RETURNS_BOGUS = YesPlease
369 NO_SVN_TESTS = YesPlease
e1b6dbb5 370 RUNTIME_PREFIX = YesPlease
86e25458 371 HAVE_WPGMPTR = YesWeDo
e1b6dbb5
JK
372 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
373 NO_NSEC = YesPlease
374 USE_WIN32_MMAP = YesPlease
5b633610 375 MMAP_PREVENTS_DELETE = UnfortunatelyYes
e1b6dbb5
JK
376 # USE_NED_ALLOCATOR = YesPlease
377 UNRELIABLE_FSTAT = UnfortunatelyYes
378 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
379 NO_REGEX = YesPlease
bad866a2 380 NO_GETTEXT = YesPlease
e1b6dbb5
JK
381 NO_PYTHON = YesPlease
382 BLK_SHA1 = YesPlease
e0492c5b 383 ETAGS_TARGET = ETAGS
4ab75274
RJ
384 NO_INET_PTON = YesPlease
385 NO_INET_NTOP = YesPlease
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 \
396 compat/win32/dirent.o
61f76a36 397 COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
a08e803d 398 BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE
4b623d80 399 EXTLIBS = user32.lib advapi32.lib shell32.lib wininet.lib ws2_32.lib invalidcontinue.obj
e1b6dbb5
JK
400 PTHREAD_LIBS =
401 lib =
2b4c6efc 402 BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1
e1b6dbb5 403ifndef DEBUG
a08e803d 404 BASIC_CFLAGS += -GL -Os -MD
e1b6dbb5
JK
405 BASIC_LDFLAGS += -LTCG
406 AR += -LTCG
407else
a08e803d 408 BASIC_CFLAGS += -Zi -MDd
e1b6dbb5
JK
409endif
410 X = .exe
411endif
412ifeq ($(uname_S),Interix)
413 NO_INITGROUPS = YesPlease
414 NO_IPV6 = YesPlease
415 NO_MEMMEM = YesPlease
416 NO_MKDTEMP = YesPlease
417 NO_STRTOUMAX = YesPlease
418 NO_NSEC = YesPlease
e1b6dbb5
JK
419 ifeq ($(uname_R),3.5)
420 NO_INET_NTOP = YesPlease
421 NO_INET_PTON = YesPlease
422 NO_SOCKADDR_STORAGE = YesPlease
e1b6dbb5
JK
423 endif
424 ifeq ($(uname_R),5.2)
425 NO_INET_NTOP = YesPlease
426 NO_INET_PTON = YesPlease
427 NO_SOCKADDR_STORAGE = YesPlease
e1b6dbb5
JK
428 endif
429endif
430ifeq ($(uname_S),Minix)
431 NO_IPV6 = YesPlease
432 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
433 NO_NSEC = YesPlease
434 NEEDS_LIBGEN =
435 NEEDS_CRYPTO_WITH_SSL = YesPlease
436 NEEDS_IDN_WITH_CURL = YesPlease
437 NEEDS_SSL_WITH_CURL = YesPlease
438 NEEDS_RESOLV =
439 NO_HSTRERROR = YesPlease
440 NO_MMAP = YesPlease
441 NO_CURL =
442 NO_EXPAT =
443endif
444ifeq ($(uname_S),NONSTOP_KERNEL)
445 # Needs some C99 features, "inline" is just one of them.
446 # INLINE='' would just replace one set of warnings with another and
447 # still not compile in c89 mode, due to non-const array initializations.
448 CC = cc -c99
449 # Disable all optimization, seems to result in bad code, with -O or -O2
450 # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
451 # abends on "git push". Needs more investigation.
452 CFLAGS = -g -O0
453 # We'd want it to be here.
454 prefix = /usr/local
455 # Our's are in ${prefix}/bin (perl might also be in /usr/bin/perl).
456 PERL_PATH = ${prefix}/bin/perl
457 PYTHON_PATH = ${prefix}/bin/python
458
459 # As detected by './configure'.
460 # Missdetected, hence commented out, see below.
461 #NO_CURL = YesPlease
462 # Added manually, see above.
463 NEEDS_SSL_WITH_CURL = YesPlease
464 HAVE_LIBCHARSET_H = YesPlease
465 HAVE_STRINGS_H = YesPlease
466 NEEDS_LIBICONV = YesPlease
467 NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
468 NO_SYS_SELECT_H = UnfortunatelyYes
469 NO_D_TYPE_IN_DIRENT = YesPlease
470 NO_HSTRERROR = YesPlease
471 NO_STRCASESTR = YesPlease
e1b6dbb5
JK
472 NO_MEMMEM = YesPlease
473 NO_STRLCPY = YesPlease
474 NO_SETENV = YesPlease
475 NO_UNSETENV = YesPlease
476 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
477 # Currently libiconv-1.9.1.
478 OLD_ICONV = UnfortunatelyYes
479 NO_REGEX = YesPlease
480 NO_PTHREADS = UnfortunatelyYes
481
482 # Not detected (nor checked for) by './configure'.
483 # We don't have SA_RESTART on NonStop, unfortunalety.
484 COMPAT_CFLAGS += -DSA_RESTART=0
485 # Apparently needed in compat/fnmatch/fnmatch.c.
486 COMPAT_CFLAGS += -DHAVE_STRING_H=1
487 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
488 NO_NSEC = YesPlease
489 NO_PREAD = YesPlease
490 NO_MMAP = YesPlease
491 NO_POLL = YesPlease
492 NO_INTPTR_T = UnfortunatelyYes
493 # Bug report 10-120822-4477 submitted to HP NonStop development.
494 MKDIR_WO_TRAILING_SLASH = YesPlease
495 # RFE 10-120912-4693 submitted to HP NonStop development.
496 NO_SETITIMER = UnfortunatelyYes
497 SANE_TOOL_PATH = /usr/coreutils/bin:/usr/local/bin
498 SHELL_PATH = /usr/local/bin/bash
499 # as of H06.25/J06.14, we might better use this
500 #SHELL_PATH = /usr/coreutils/bin/bash
501endif
502ifneq (,$(findstring MINGW,$(uname_S)))
503 pathsep = ;
22f4c27e 504 HAVE_ALLOCA_H = YesPlease
e1b6dbb5
JK
505 NO_PREAD = YesPlease
506 NEEDS_CRYPTO_WITH_SSL = YesPlease
507 NO_LIBGEN_H = YesPlease
508 NO_POLL = YesPlease
509 NO_SYMLINK_HEAD = YesPlease
510 NO_UNIX_SOCKETS = YesPlease
511 NO_SETENV = YesPlease
e1b6dbb5
JK
512 NO_STRCASESTR = YesPlease
513 NO_STRLCPY = YesPlease
e1b6dbb5
JK
514 NO_MEMMEM = YesPlease
515 NEEDS_LIBICONV = YesPlease
e1b6dbb5
JK
516 NO_STRTOUMAX = YesPlease
517 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
518 NO_SVN_TESTS = YesPlease
519 NO_PERL_MAKEMAKER = YesPlease
520 RUNTIME_PREFIX = YesPlease
86e25458 521 HAVE_WPGMPTR = YesWeDo
e1b6dbb5
JK
522 NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
523 NO_NSEC = YesPlease
524 USE_WIN32_MMAP = YesPlease
5b633610 525 MMAP_PREVENTS_DELETE = UnfortunatelyYes
e1b6dbb5
JK
526 USE_NED_ALLOCATOR = YesPlease
527 UNRELIABLE_FSTAT = UnfortunatelyYes
528 OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
529 NO_REGEX = YesPlease
530 NO_PYTHON = YesPlease
e1b6dbb5
JK
531 ETAGS_TARGET = ETAGS
532 NO_INET_PTON = YesPlease
533 NO_INET_NTOP = YesPlease
534 NO_POSIX_GOODIES = UnfortunatelyYes
65db0443 535 DEFAULT_HELP_FORMAT = html
7b40ae86 536 COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32
e1b6dbb5
JK
537 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\"
538 COMPAT_OBJS += compat/mingw.o compat/winansi.o \
1cadad6f 539 compat/win32/path-utils.o \
e1b6dbb5
JK
540 compat/win32/pthread.o compat/win32/syslog.o \
541 compat/win32/dirent.o
b4d991d1 542 BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1
e1b6dbb5 543 EXTLIBS += -lws2_32
ce39c2e0 544 GITLIBS += git.res
e1b6dbb5 545 PTHREAD_LIBS =
ce39c2e0 546 RC = windres -O coff
95f31e9a 547 NATIVE_CRLF = YesPlease
e1b6dbb5
JK
548 X = .exe
549 SPARSE_FLAGS = -Wno-one-bit-signed-bitfield
550ifneq (,$(wildcard ../THIS_IS_MSYSGIT))
551 htmldir = doc/git/html/
552 prefix =
553 INSTALL = /bin/install
554 EXTLIBS += /mingw/lib/libz.a
555 NO_R_TO_GCC_LINKER = YesPlease
556 INTERNAL_QSORT = YesPlease
557 HAVE_LIBCHARSET_H = YesPlease
ca354871 558 NO_GETTEXT = YesPlease
df5218b4 559 COMPAT_CLFAGS += -D__USE_MINGW_ACCESS
e1b6dbb5 560else
df5218b4
JS
561 ifeq ($(shell expr "$(uname_R)" : '2\.'),2)
562 # MSys2
7b40ae86
JS
563 prefix = /usr/
564 ifeq (MINGW32,$(MSYSTEM))
565 prefix = /mingw32
566 endif
567 ifeq (MINGW64,$(MSYSTEM))
568 prefix = /mingw64
569 else
570 COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
571 BASIC_LDFLAGS += -Wl,--large-address-aware
572 endif
df5218b4 573 CC = gcc
f7f90e0f
KB
574 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY
575 EXTLIBS += -lntdll
df5218b4
JS
576 INSTALL = /bin/install
577 NO_R_TO_GCC_LINKER = YesPlease
578 INTERNAL_QSORT = YesPlease
579 HAVE_LIBCHARSET_H = YesPlease
f9206ce2 580 NO_GETTEXT =
b640b77f 581 USE_GETTEXT_SCHEME = fallthrough
df5218b4 582 USE_LIBPCRE= YesPlease
fb95e2e3 583 NO_LIBPCRE1_JIT = UnfortunatelyYes
df5218b4
JS
584 NO_CURL =
585 USE_NED_ALLOCATOR = YesPlease
586 else
587 COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO
588 NO_CURL = YesPlease
589 endif
e1b6dbb5
JK
590endif
591endif
592ifeq ($(uname_S),QNX)
593 COMPAT_CFLAGS += -DSA_RESTART=0
081fd8d0 594 EXPAT_NEEDS_XMLPARSE_H = YesPlease
e1b6dbb5
JK
595 HAVE_STRINGS_H = YesPlease
596 NEEDS_SOCKET = YesPlease
e1b6dbb5
JK
597 NO_GETPAGESIZE = YesPlease
598 NO_ICONV = YesPlease
599 NO_MEMMEM = YesPlease
600 NO_MKDTEMP = YesPlease
e1b6dbb5
JK
601 NO_NSEC = YesPlease
602 NO_PTHREADS = YesPlease
603 NO_R_TO_GCC_LINKER = YesPlease
604 NO_STRCASESTR = YesPlease
605 NO_STRLCPY = YesPlease
606endif