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