~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-security

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
## Site configuration related to programs (before tests)
70
70
## --with-PACKAGE[=ARG] and --without-PACKAGE
71
71
#
 
72
# Set lib to alternative name of lib directory (e.g. lib64)
 
73
AC_ARG_WITH([lib],
 
74
 [AS_HELP_STRING([--with-lib=ARG],
 
75
                 [ARG specifies alternative name for lib directory])],
 
76
 [if test "$withval" = "no" -o "$withval" = "yes"; then \
 
77
        AC_MSG_WARN([You should provide name for --with-lib=ARG]); \
 
78
else \
 
79
        GIT_CONF_APPEND_LINE(lib=$withval); \
 
80
fi; \
 
81
],[])
 
82
#
72
83
# Define SHELL_PATH to provide path to shell.
73
84
GIT_ARG_SET_PATH(shell)
74
85
#
75
86
# Define PERL_PATH to provide path to Perl.
76
87
GIT_ARG_SET_PATH(perl)
77
88
#
 
89
# Define ZLIB_PATH to provide path to zlib.
 
90
GIT_ARG_SET_PATH(zlib)
 
91
#
78
92
# Declare the with-tcltk/without-tcltk options.
79
93
AC_ARG_WITH(tcltk,
80
94
AS_HELP_STRING([--with-tcltk],[use Tcl/Tk GUI (default is YES)])
90
104
#
91
105
AC_PROG_CC([cc gcc])
92
106
#AC_PROG_INSTALL                # needs install-sh or install.sh in sources
93
 
AC_CHECK_TOOL(AR, ar, :)
 
107
AC_CHECK_TOOLS(AR, [gar ar], :)
94
108
AC_CHECK_PROGS(TAR, [gtar tar])
95
109
# TCLTK_PATH will be set to some value if we want Tcl/Tk
96
110
# or will be empty otherwise.