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