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