From fd22c0271b33227e651be456beb4cead934f5624 Mon Sep 17 00:00:00 2001 From: Jakub Narebski Date: Sat, 8 Jul 2006 23:07:13 +0200 Subject: autoconf: Checks for some programs ./configure script checks now for the following programs: * CC - using AC_PROG_CC * AR - using AC_CHECK_TOOL among ar * TAR - among gtar, tar Checks not implemented: * INSTALL - needs install-sh or install.sh in sources * RPMBUILD - not known alternatives for rpmbuild * PYTHON - no PYTHON variable in Makefile, has to set NO_PYTHON if not present Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- config.mak.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config.mak.in') diff --git a/config.mak.in b/config.mak.in index 82c9781f0d..89520ebefe 100644 --- a/config.mak.in +++ b/config.mak.in @@ -1,6 +1,11 @@ # 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@ -- cgit v1.2.3