8d676d85f7
* gv/portable: test-lib: use DIFF definition from GIT-BUILD-OPTIONS build: propagate $DIFF to scripts Makefile: Tru64 portability fix Makefile: HP-UX 10.20 portability fixes Makefile: HPUX11 portability fixes Makefile: SunOS 5.6 portability fix inline declaration does not work on AIX Allow disabling "inline" Some platforms lack socklen_t type Make NO_{INET_NTOP,INET_PTON} configured independently Makefile: some platforms do not have hstrerror anywhere git-compat-util.h: some platforms with mmap() lack MAP_FAILED definition test_cmp: do not use "diff -u" on platforms that lack one fixup: do not unconditionally disable "diff -u" tests: use "test_cmp", not "diff", when verifying the result Do not use "diff" found on PATH while building and installing enums: omit trailing comma for portability Makefile: -lpthread may still be necessary when libc has only pthread stubs Rewrite dynamic structure initializations to runtime assignment Makefile: pass CPPFLAGS through to fllow customization Conflicts: Makefile wt-status.h
69 lines
1.7 KiB
Makefile
69 lines
1.7 KiB
Makefile
# git Makefile configuration, included in main Makefile
|
|
# @configure_input@
|
|
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
CC_LD_DYNPATH = @CC_LD_DYNPATH@
|
|
AR = @AR@
|
|
TAR = @TAR@
|
|
DIFF = @DIFF@
|
|
#INSTALL = @INSTALL@ # needs install-sh or install.sh in sources
|
|
TCLTK_PATH = @TCLTK_PATH@
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
gitexecdir = @libexecdir@/git-core
|
|
datarootdir = @datarootdir@
|
|
template_dir = @datadir@/git-core/templates
|
|
|
|
mandir=@mandir@
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
export exec_prefix mandir
|
|
export srcdir VPATH
|
|
|
|
ASCIIDOC8=@ASCIIDOC8@
|
|
NEEDS_SSL_WITH_CRYPTO=@NEEDS_SSL_WITH_CRYPTO@
|
|
NO_OPENSSL=@NO_OPENSSL@
|
|
NO_CURL=@NO_CURL@
|
|
NO_EXPAT=@NO_EXPAT@
|
|
NO_LIBGEN_H=@NO_LIBGEN_H@
|
|
HAVE_PATHS_H=@HAVE_PATHS_H@
|
|
NEEDS_LIBICONV=@NEEDS_LIBICONV@
|
|
NEEDS_SOCKET=@NEEDS_SOCKET@
|
|
NEEDS_RESOLV=@NEEDS_RESOLV@
|
|
NEEDS_LIBGEN=@NEEDS_LIBGEN@
|
|
NO_SYS_SELECT_H=@NO_SYS_SELECT_H@
|
|
NO_D_INO_IN_DIRENT=@NO_D_INO_IN_DIRENT@
|
|
NO_D_TYPE_IN_DIRENT=@NO_D_TYPE_IN_DIRENT@
|
|
NO_SOCKADDR_STORAGE=@NO_SOCKADDR_STORAGE@
|
|
NO_IPV6=@NO_IPV6@
|
|
NO_C99_FORMAT=@NO_C99_FORMAT@
|
|
NO_HSTRERROR=@NO_HSTRERROR@
|
|
NO_STRCASESTR=@NO_STRCASESTR@
|
|
NO_MEMMEM=@NO_MEMMEM@
|
|
NO_STRLCPY=@NO_STRLCPY@
|
|
NO_UINTMAX_T=@NO_UINTMAX_T@
|
|
NO_STRTOUMAX=@NO_STRTOUMAX@
|
|
NO_SETENV=@NO_SETENV@
|
|
NO_UNSETENV=@NO_UNSETENV@
|
|
NO_MKDTEMP=@NO_MKDTEMP@
|
|
NO_MKSTEMPS=@NO_MKSTEMPS@
|
|
NO_INET_NTOP=@NO_INET_NTOP@
|
|
NO_INET_PTON=@NO_INET_PTON@
|
|
NO_ICONV=@NO_ICONV@
|
|
OLD_ICONV=@OLD_ICONV@
|
|
NO_DEFLATE_BOUND=@NO_DEFLATE_BOUND@
|
|
INLINE=@INLINE@
|
|
SOCKLEN_T=@SOCKLEN_T@
|
|
FREAD_READS_DIRECTORIES=@FREAD_READS_DIRECTORIES@
|
|
SNPRINTF_RETURNS_BOGUS=@SNPRINTF_RETURNS_BOGUS@
|
|
NO_PTHREADS=@NO_PTHREADS@
|
|
PTHREAD_CFLAGS=@PTHREAD_CFLAGS@
|
|
PTHREAD_LIBS=@PTHREAD_LIBS@
|