mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
424adc50b7
Move detected NO_STH and NEED_STH variables, which we always output, either setting or unsetting (setting to empty string) to config.mak.in and use setting appropriately named variables and doing AC_SUBST instead of adding them via GIT_CONF_APPEND_LINE macro and config.mak.append temporary file. Variables which might and might not be set are still added via config.mak.append; this include all STH_PATH variables. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
40 lines
933 B
Makefile
40 lines
933 B
Makefile
# git Makefile configuration, included in main Makefile
|
|
# @configure_input@
|
|
|
|
CC = @CC@
|
|
AR = @AR@
|
|
TAR = @TAR@
|
|
#INSTALL = @INSTALL@ # needs install-sh or install.sh in sources
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
#gitexecdir = @libexecdir@/git-core/
|
|
datarootdir = @datarootdir@
|
|
template_dir = @datadir@/git-core/templates/
|
|
GIT_PYTHON_DIR = @datadir@/git-core/python
|
|
|
|
mandir=@mandir@
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
export exec_prefix mandir
|
|
export srcdir VPATH
|
|
|
|
NO_PYTHON=@NO_PYTHON@
|
|
NEEDS_SSL_WITH_CRYPTO=@NEEDS_SSL_WITH_CRYPTO@
|
|
NO_OPENSSL=@NO_OPENSSL@
|
|
NO_CURL=@NO_CURL@
|
|
NO_EXPAT=@NO_EXPAT@
|
|
NEEDS_LIBICONV=@NEEDS_LIBICONV@
|
|
NEEDS_SOCKET=@NEEDS_SOCKET@
|
|
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_STRCASESTR=@NO_STRCASESTR@
|
|
NO_STRLCPY=@NO_STRLCPY@
|
|
NO_SETENV=@NO_SETENV@
|
|
|