2 # Process this file with autoconf to produce a configure script.
4 ## Definitions of private macros.
6 # GIT_CONF_SUBST(VAL, VAR)
7 # ------------------------
8 # Cause the line "VAR=VAL" to be eventually appended to ${config_file}.
9 AC_DEFUN([GIT_CONF_SUBST],
10 [AC_REQUIRE([GIT_CONF_SUBST_INIT])
11 config_appended_defs="$config_appended_defs${newline}$1=$2"])
15 # Prepare shell variables and autoconf machine required by later calls
17 AC_DEFUN([GIT_CONF_SUBST_INIT],
18 [config_appended_defs=; newline='
20 AC_CONFIG_COMMANDS([$config_file],
21 [echo "$config_appended_defs" >> "$config_file"],
22 [config_file=$config_file
23 config_appended_defs="$config_appended_defs"])])
25 # GIT_ARG_SET_PATH(PROGRAM)
26 # -------------------------
27 # Provide --with-PROGRAM=PATH option to set PATH to PROGRAM
28 # Optional second argument allows setting NO_PROGRAM=YesPlease if
29 # --without-PROGRAM version used.
30 AC_DEFUN([GIT_ARG_SET_PATH],
32 [AS_HELP_STRING([--with-$1=PATH],
33 [provide PATH to $1])],
34 [GIT_CONF_APPEND_PATH([$1], [$2])],
37 # GIT_CONF_APPEND_PATH(PROGRAM)
38 # -----------------------------
39 # Parse --with-PROGRAM=PATH option to set PROGRAM_PATH=PATH
40 # Used by GIT_ARG_SET_PATH(PROGRAM)
41 # Optional second argument allows setting NO_PROGRAM=YesPlease if
42 # --without-PROGRAM is used.
43 AC_DEFUN([GIT_CONF_APPEND_PATH],
44 [m4_pushdef([GIT_UC_PROGRAM], m4_toupper([$1]))dnl
45 if test "$withval" = "no"; then
47 GIT_UC_PROGRAM[]_PATH=$withval
48 AC_MSG_NOTICE([Disabling use of GIT_UC_PROGRAM])
49 GIT_CONF_SUBST([NO_]GIT_UC_PROGRAM, [YesPlease])
50 GIT_CONF_SUBST(GIT_UC_PROGRAM[]_PATH, [])
52 AC_MSG_ERROR([You cannot use git without $1])
55 if test "$withval" = "yes"; then
56 AC_MSG_WARN([You should provide path for --with-$1=PATH])
58 GIT_UC_PROGRAM[]_PATH=$withval
59 AC_MSG_NOTICE([Setting GIT_UC_PROGRAM[]_PATH to $withval])
60 GIT_CONF_SUBST(GIT_UC_PROGRAM[]_PATH, [$withval])
63 m4_popdef([GIT_UC_PROGRAM])])
65 # GIT_PARSE_WITH(PACKAGE)
66 # -----------------------
67 # For use in AC_ARG_WITH action-if-found, for packages default ON.
68 # * Set NO_PACKAGE=YesPlease for --without-PACKAGE
69 # * Set PACKAGEDIR=PATH for --with-PACKAGE=PATH
70 # * Unset NO_PACKAGE for --with-PACKAGE without ARG
71 AC_DEFUN([GIT_PARSE_WITH],
72 [m4_pushdef([GIT_UC_PACKAGE], m4_toupper([$1]))dnl
73 if test "$withval" = "no"; then
74 NO_[]GIT_UC_PACKAGE=YesPlease
75 elif test "$withval" = "yes"; then
79 GIT_UC_PACKAGE[]DIR=$withval
80 AC_MSG_NOTICE([Setting GIT_UC_PACKAGE[]DIR to $withval])
81 GIT_CONF_SUBST(GIT_UC_PACKAGE[DIR], [$withval])
83 m4_popdef([GIT_UC_PACKAGE])])
85 # GIT_PARSE_WITH_SET_MAKE_VAR(WITHNAME, VAR, HELP_TEXT)
86 # -----------------------------------------------------
87 # Set VAR to the value specied by --with-WITHNAME.
88 # No verification of arguments is performed, but warnings are issued
89 # if either 'yes' or 'no' is specified.
90 # HELP_TEXT is presented when --help is called.
91 # This is a direct way to allow setting variables in the Makefile.
92 AC_DEFUN([GIT_PARSE_WITH_SET_MAKE_VAR],
94 [AS_HELP_STRING([--with-$1=VALUE], $3)],
95 if test -n "$withval"; then
96 if test "$withval" = "yes" -o "$withval" = "no"; then
97 AC_MSG_WARN([You likely do not want either 'yes' or 'no' as]
98 [a value for $1 ($2). Maybe you do...?])
100 AC_MSG_NOTICE([Setting $2 to $withval])
101 GIT_CONF_SUBST([$2], [$withval])
102 fi)])# GIT_PARSE_WITH_SET_MAKE_VAR
105 # GIT_CHECK_FUNC(FUNCTION, IFTRUE, IFFALSE)
106 # -----------------------------------------
107 # Similar to AC_CHECK_FUNC, but on systems that do not generate
108 # warnings for missing prototypes (e.g. FreeBSD when compiling without
109 # -Wall), it does not work. By looking for function definition in
110 # libraries, this problem can be worked around.
111 AC_DEFUN([GIT_CHECK_FUNC],[AC_CHECK_FUNC([$1],[
112 AC_SEARCH_LIBS([$1],,
117 # GIT_STASH_FLAGS(BASEPATH_VAR)
118 # -----------------------------
119 # Allow for easy stashing of LDFLAGS and CPPFLAGS before running
120 # tests that may want to take user settings into account.
121 AC_DEFUN([GIT_STASH_FLAGS],[
122 if test -n "$1"; then
123 old_CPPFLAGS="$CPPFLAGS"
124 old_LDFLAGS="$LDFLAGS"
125 CPPFLAGS="-I$1/include $CPPFLAGS"
126 LDFLAGS="-L$1/$lib $LDFLAGS"
131 dnl GIT_UNSTASH_FLAGS(BASEPATH_VAR)
132 dnl -----------------------------
133 dnl Restore the stashed *FLAGS values.
134 AC_DEFUN([GIT_UNSTASH_FLAGS],[
135 if test -n "$1"; then
136 CPPFLAGS="$old_CPPFLAGS"
137 LDFLAGS="$old_LDFLAGS"
141 ## Configure body starts here.
144 AC_INIT([git], [@@GIT_VERSION@@], [git@vger.kernel.org])
146 AC_CONFIG_SRCDIR([git.c])
148 config_file=config.mak.autogen
149 config_in=config.mak.in
151 GIT_CONF_SUBST([AUTOCONFIGURED], [YesPlease])
153 # Directories holding "saner" versions of common or POSIX binaries.
154 AC_ARG_WITH([sane-tool-path],
156 [--with-sane-tool-path=DIR-1[[:DIR-2...:DIR-n]]],
157 [Directories to prepend to PATH in build system and generated scripts])],
158 [if test "$withval" = "no"; then
161 AC_MSG_NOTICE([Setting SANE_TOOL_PATH to '$withval'])
163 GIT_CONF_SUBST([SANE_TOOL_PATH], [$withval])],
164 [# If the "--with-sane-tool-path" option was not given, don't touch
165 # SANE_TOOL_PATH here, but let defaults in Makefile take care of it.
166 # This should minimize spurious differences in the behaviour of the
167 # Git build system when configure is used w.r.t. when it is not.
170 ## Site configuration related to programs (before tests)
171 ## --with-PACKAGE[=ARG] and --without-PACKAGE
173 # Set lib to alternative name of lib directory (e.g. lib64)
175 [AS_HELP_STRING([--with-lib=ARG],
176 [ARG specifies alternative name for lib directory])],
177 [if test "$withval" = "no" || test "$withval" = "yes"; then
178 AC_MSG_WARN([You should provide name for --with-lib=ARG])
181 AC_MSG_NOTICE([Setting lib to '$lib'])
182 GIT_CONF_SUBST([lib], [$withval])
185 if test -z "$lib"; then
186 AC_MSG_NOTICE([Setting lib to 'lib' (the default)])
190 AC_ARG_ENABLE([pthreads],
191 [AS_HELP_STRING([--enable-pthreads=FLAGS],
192 [FLAGS is the value to pass to the compiler to enable POSIX Threads.]
193 [The default if FLAGS is not specified is to try first -pthread]
194 [and then -lpthread.]
195 [--without-pthreads will disable threading.])],
197 if test "x$enableval" = "xyes"; then
198 AC_MSG_NOTICE([Will try -pthread then -lpthread to enable POSIX Threads])
199 elif test "x$enableval" != "xno"; then
200 PTHREAD_CFLAGS=$enableval
201 AC_MSG_NOTICE([Setting '$PTHREAD_CFLAGS' as the FLAGS to enable POSIX Threads])
203 AC_MSG_NOTICE([POSIX Threads will be disabled.])
204 NO_PTHREADS=YesPlease
208 AC_MSG_NOTICE([Will try -pthread then -lpthread to enable POSIX Threads.])
211 # Define option to enable JavaScript minification
212 AC_ARG_ENABLE([jsmin],
213 [AS_HELP_STRING([--enable-jsmin=PATH],
214 [PATH is the name of a JavaScript minifier or the absolute path to one.])],
217 AC_MSG_NOTICE([Setting JSMIN to '$JSMIN' to enable JavaScript minifying])
218 GIT_CONF_SUBST([JSMIN], [$enableval])
221 # Define option to enable CSS minification
222 AC_ARG_ENABLE([cssmin],
223 [AS_HELP_STRING([--enable-cssmin=PATH],
224 [PATH is the name of a CSS minifier or the absolute path to one.])],
227 AC_MSG_NOTICE([Setting CSSMIN to '$CSSMIN' to enable CSS minifying])
228 GIT_CONF_SUBST([CSSMIN], [$enableval])
231 ## Site configuration (override autodetection)
232 ## --with-PACKAGE[=ARG] and --without-PACKAGE
233 AC_MSG_NOTICE([CHECKS for site configuration])
235 # Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
236 # tests. These tests take up a significant amount of the total test time
237 # but are not needed unless you plan to talk to SVN repos.
239 # Define PPC_SHA1 environment variable when running make to make use of
240 # a bundled SHA1 routine optimized for PowerPC.
242 # Define NO_OPENSSL environment variable if you do not have OpenSSL.
243 # This also implies BLK_SHA1.
245 # Define OPENSSLDIR=/foo/bar if your openssl header and library files are in
246 # /foo/bar/include and /foo/bar/lib directories.
248 AS_HELP_STRING([--with-openssl],[use OpenSSL library (default is YES)])
249 AS_HELP_STRING([], [ARG can be prefix for openssl library and headers]),
250 GIT_PARSE_WITH([openssl]))
252 # Define USE_LIBPCRE if you have and want to use libpcre. git-grep will be
253 # able to use Perl-compatible regular expressions.
255 # Define LIBPCREDIR=/foo/bar if your libpcre header and library files are in
256 # /foo/bar/include and /foo/bar/lib directories.
259 AS_HELP_STRING([--with-libpcre],[support Perl-compatible regexes (default is NO)])
260 AS_HELP_STRING([], [ARG can be also prefix for libpcre library and headers]),
261 if test "$withval" = "no"; then
263 elif test "$withval" = "yes"; then
264 USE_LIBPCRE=YesPlease
266 USE_LIBPCRE=YesPlease
268 AC_MSG_NOTICE([Setting LIBPCREDIR to $withval])
269 GIT_CONF_SUBST([LIBPCREDIR], [$withval])
272 # Define NO_CURL if you do not have curl installed. git-http-pull and
273 # git-http-push are not built, and you cannot use http:// and https://
276 # Define CURLDIR=/foo/bar if your curl header and library files are in
277 # /foo/bar/include and /foo/bar/lib directories.
279 AS_HELP_STRING([--with-curl],[support http(s):// transports (default is YES)])
280 AS_HELP_STRING([], [ARG can be also prefix for curl library and headers]),
281 GIT_PARSE_WITH(curl))
283 # Define NO_EXPAT if you do not have expat installed. git-http-push is
284 # not built, and you cannot push using http:// and https:// transports.
286 # Define EXPATDIR=/foo/bar if your expat header and library files are in
287 # /foo/bar/include and /foo/bar/lib directories.
289 AS_HELP_STRING([--with-expat],
290 [support git-push using http:// and https:// transports via WebDAV (default is YES)])
291 AS_HELP_STRING([], [ARG can be also prefix for expat library and headers]),
292 GIT_PARSE_WITH(expat))
294 # Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
295 # installed in /sw, but don't want GIT to link against any libraries
296 # installed there. If defined you may specify your own (or Fink's)
297 # include directories and library directories by defining CFLAGS
298 # and LDFLAGS appropriately.
300 # Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
301 # have DarwinPorts installed in /opt/local, but don't want GIT to
302 # link against any libraries installed there. If defined you may
303 # specify your own (or DarwinPort's) include directories and
304 # library directories by defining CFLAGS and LDFLAGS appropriately.
306 # Define NO_MMAP if you want to avoid mmap.
308 # Define NO_ICONV if your libc does not properly support iconv.
310 AS_HELP_STRING([--without-iconv],
311 [if your architecture doesn't properly support iconv])
312 AS_HELP_STRING([--with-iconv=PATH],
313 [PATH is prefix for libiconv library and headers])
315 [used only if you need linking with libiconv]),
316 GIT_PARSE_WITH(iconv))
318 ## --enable-FEATURE[=ARG] and --disable-FEATURE
320 # Define USE_NSEC below if you want git to care about sub-second file mtimes
321 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
322 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
323 # randomly break unless your underlying filesystem supports those sub-second
324 # times (my ext3 doesn't).
326 # Define USE_STDEV below if you want git to care about the underlying device
327 # change being considered an inode change from the update-index perspective.
330 # Allow user to set ETC_GITCONFIG variable
331 GIT_PARSE_WITH_SET_MAKE_VAR(gitconfig, ETC_GITCONFIG,
332 Use VALUE instead of /etc/gitconfig as the
333 global git configuration file.
334 If VALUE is not fully qualified it will be interpreted
335 as a path relative to the computed prefix at runtime.)
338 # Allow user to set ETC_GITATTRIBUTES variable
339 GIT_PARSE_WITH_SET_MAKE_VAR(gitattributes, ETC_GITATTRIBUTES,
340 Use VALUE instead of /etc/gitattributes as the
341 global git attributes file.
342 If VALUE is not fully qualified it will be interpreted
343 as a path relative to the computed prefix at runtime.)
346 # Allow user to set the default pager
347 GIT_PARSE_WITH_SET_MAKE_VAR(pager, DEFAULT_PAGER,
348 Use VALUE as the fall-back pager instead of 'less'.
349 This is used by things like 'git log' when the user
350 does not specify a pager to use through alternate
351 methods. eg: /usr/bin/pager)
353 # Allow user to set the default editor
354 GIT_PARSE_WITH_SET_MAKE_VAR(editor, DEFAULT_EDITOR,
355 Use VALUE as the fall-back editor instead of 'vi'.
356 This is used by things like 'git commit' when the user
357 does not specify a preferred editor through other
358 methods. eg: /usr/bin/editor)
361 # Define SHELL_PATH to provide path to shell.
362 GIT_ARG_SET_PATH(shell)
364 # Define PERL_PATH to provide path to Perl.
365 GIT_ARG_SET_PATH(perl)
367 # Define PYTHON_PATH to provide path to Python.
368 GIT_ARG_SET_PATH(python, allow-without)
370 # Define ZLIB_PATH to provide path to zlib.
371 GIT_ARG_SET_PATH(zlib)
373 # Declare the with-tcltk/without-tcltk options.
375 AS_HELP_STRING([--with-tcltk],[use Tcl/Tk GUI (default is YES)])
376 AS_HELP_STRING([],[ARG is the full path to the Tcl/Tk interpreter.])
377 AS_HELP_STRING([],[Bare --with-tcltk will make the GUI part only if])
378 AS_HELP_STRING([],[Tcl/Tk interpreter will be found in a system.]),
379 GIT_PARSE_WITH(tcltk))
383 ## Checks for programs.
384 AC_MSG_NOTICE([CHECKS for programs])
388 case $ac_cv_c_inline in
389 inline | yes | no) ;;
390 *) AC_SUBST([INLINE], [$ac_cv_c_inline]) ;;
393 # which switch to pass runtime path to dynamic libraries to the linker
394 AC_CACHE_CHECK([if linker supports -R], git_cv_ld_dashr, [
395 SAVE_LDFLAGS="${LDFLAGS}"
396 LDFLAGS="${SAVE_LDFLAGS} -R /"
397 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [git_cv_ld_dashr=yes], [git_cv_ld_dashr=no])
398 LDFLAGS="${SAVE_LDFLAGS}"
400 if test "$git_cv_ld_dashr" = "yes"; then
401 AC_SUBST(CC_LD_DYNPATH, [-R])
403 AC_CACHE_CHECK([if linker supports -Wl,-rpath,], git_cv_ld_wl_rpath, [
404 SAVE_LDFLAGS="${LDFLAGS}"
405 LDFLAGS="${SAVE_LDFLAGS} -Wl,-rpath,/"
406 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [git_cv_ld_wl_rpath=yes], [git_cv_ld_wl_rpath=no])
407 LDFLAGS="${SAVE_LDFLAGS}"
409 if test "$git_cv_ld_wl_rpath" = "yes"; then
410 AC_SUBST(CC_LD_DYNPATH, [-Wl,-rpath,])
412 AC_CACHE_CHECK([if linker supports -rpath], git_cv_ld_rpath, [
413 SAVE_LDFLAGS="${LDFLAGS}"
414 LDFLAGS="${SAVE_LDFLAGS} -rpath /"
415 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [git_cv_ld_rpath=yes], [git_cv_ld_rpath=no])
416 LDFLAGS="${SAVE_LDFLAGS}"
418 if test "$git_cv_ld_rpath" = "yes"; then
419 AC_SUBST(CC_LD_DYNPATH, [-rpath])
421 AC_MSG_WARN([linker does not support runtime path to dynamic libraries])
425 #AC_PROG_INSTALL # needs install-sh or install.sh in sources
426 AC_CHECK_TOOLS(AR, [gar ar], :)
427 AC_CHECK_PROGS(TAR, [gtar tar])
428 AC_CHECK_PROGS(DIFF, [gnudiff gdiff diff])
429 # TCLTK_PATH will be set to some value if we want Tcl/Tk
430 # or will be empty otherwise.
431 if test -z "$NO_TCLTK"; then
432 if test "$with_tcltk" = ""; then
433 # No Tcl/Tk switches given. Do not check for Tcl/Tk, use bare 'wish'.
436 elif test "$with_tcltk" = "yes"; then
437 # Tcl/Tk check requested.
438 AC_CHECK_PROGS(TCLTK_PATH, [wish], )
440 AC_MSG_RESULT([Using Tcl/Tk interpreter $with_tcltk])
441 TCLTK_PATH="$with_tcltk"
445 AC_CHECK_PROGS(ASCIIDOC, [asciidoc])
446 if test -n "$ASCIIDOC"; then
447 AC_MSG_CHECKING([for asciidoc version])
448 asciidoc_version=`$ASCIIDOC --version 2>/dev/null`
449 case "${asciidoc_version}" in
451 AC_MSG_RESULT([${asciidoc_version}])
454 AC_MSG_RESULT([${asciidoc_version} (unknown)])
460 ## Checks for libraries.
461 AC_MSG_NOTICE([CHECKS for libraries])
463 # Define NO_OPENSSL environment variable if you do not have OpenSSL.
464 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
466 GIT_STASH_FLAGS($OPENSSLDIR)
468 AC_CHECK_LIB([crypto], [SHA1_Init],
469 [NEEDS_SSL_WITH_CRYPTO=],
470 [AC_CHECK_LIB([ssl], [SHA1_Init],
471 [NEEDS_SSL_WITH_CRYPTO=YesPlease],
472 [NEEDS_SSL_WITH_CRYPTO= NO_OPENSSL=YesPlease])])
474 GIT_UNSTASH_FLAGS($OPENSSLDIR)
476 AC_SUBST(NEEDS_SSL_WITH_CRYPTO)
480 # Define USE_LIBPCRE if you have and want to use libpcre. git-grep will be
481 # able to use Perl-compatible regular expressions.
484 if test -n "$USE_LIBPCRE"; then
486 GIT_STASH_FLAGS($LIBPCREDIR)
488 AC_CHECK_LIB([pcre], [pcre_version],
489 [USE_LIBPCRE=YesPlease],
492 GIT_UNSTASH_FLAGS($LIBPCREDIR)
494 AC_SUBST(USE_LIBPCRE)
499 # Define NO_CURL if you do not have libcurl installed. git-http-pull and
500 # git-http-push are not built, and you cannot use http:// and https://
503 GIT_STASH_FLAGS($CURLDIR)
505 AC_CHECK_LIB([curl], [curl_global_init],
509 GIT_UNSTASH_FLAGS($CURLDIR)
514 # Define NO_EXPAT if you do not have expat installed. git-http-push is
515 # not built, and you cannot push using http:// and https:// transports.
517 GIT_STASH_FLAGS($EXPATDIR)
519 AC_CHECK_LIB([expat], [XML_ParserCreate],
521 [NO_EXPAT=YesPlease])
523 GIT_UNSTASH_FLAGS($EXPATDIR)
528 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin and
529 # some Solaris installations).
530 # Define NO_ICONV if neither libc nor libiconv support iconv.
532 if test -z "$NO_ICONV"; then
534 GIT_STASH_FLAGS($ICONVDIR)
536 AC_DEFUN([ICONVTEST_SRC],
537 [AC_LANG_PROGRAM([#include <iconv.h>],
538 [iconv_open("", "");])])
540 if test -n "$ICONVDIR"; then
541 lib_order="-liconv -lc"
543 lib_order="-lc -liconv"
548 for l in $lib_order; do
549 if test "$l" = "-liconv"; then
550 NEEDS_LIBICONV=YesPlease
557 AC_MSG_CHECKING([for iconv in $l])
558 AC_LINK_IFELSE([ICONVTEST_SRC],
559 [AC_MSG_RESULT([yes])
562 [AC_MSG_RESULT([no])])
569 GIT_UNSTASH_FLAGS($ICONVDIR)
571 AC_SUBST(NEEDS_LIBICONV)
574 if test -n "$NO_ICONV"; then
581 # Define NO_DEFLATE_BOUND if deflateBound is missing from zlib.
583 GIT_STASH_FLAGS($ZLIB_PATH)
585 AC_DEFUN([ZLIBTEST_SRC], [
586 AC_LANG_PROGRAM([#include <zlib.h>],
587 [deflateBound(0, 0);])])
588 AC_MSG_CHECKING([for deflateBound in -lz])
591 AC_LINK_IFELSE([ZLIBTEST_SRC],
592 [AC_MSG_RESULT([yes])],
594 NO_DEFLATE_BOUND=yes])
597 GIT_UNSTASH_FLAGS($ZLIB_PATH)
599 AC_SUBST(NO_DEFLATE_BOUND)
602 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
604 AC_CHECK_LIB([c], [socket],
606 [NEEDS_SOCKET=YesPlease])
607 AC_SUBST(NEEDS_SOCKET)
608 test -n "$NEEDS_SOCKET" && LIBS="$LIBS -lsocket"
611 # The next few tests will define NEEDS_RESOLV if linking with
612 # libresolv provides some of the functions we would normally get
615 AC_SUBST(NEEDS_RESOLV)
617 # Define NO_INET_NTOP if linking with -lresolv is not enough.
618 # Solaris 2.7 in particular hos inet_ntop in -lresolv.
620 AC_SUBST(NO_INET_NTOP)
621 AC_CHECK_FUNC([inet_ntop],
623 [AC_CHECK_LIB([resolv], [inet_ntop],
624 [NEEDS_RESOLV=YesPlease],
625 [NO_INET_NTOP=YesPlease])
628 # Define NO_INET_PTON if linking with -lresolv is not enough.
629 # Solaris 2.7 in particular hos inet_pton in -lresolv.
631 AC_SUBST(NO_INET_PTON)
632 AC_CHECK_FUNC([inet_pton],
634 [AC_CHECK_LIB([resolv], [inet_pton],
635 [NEEDS_RESOLV=YesPlease],
636 [NO_INET_PTON=YesPlease])
639 # Define NO_HSTRERROR if linking with -lresolv is not enough.
640 # Solaris 2.6 in particular has no hstrerror, even in -lresolv.
642 AC_CHECK_FUNC([hstrerror],
644 [AC_CHECK_LIB([resolv], [hstrerror],
645 [NEEDS_RESOLV=YesPlease],
646 [NO_HSTRERROR=YesPlease])
648 AC_SUBST(NO_HSTRERROR)
650 # If any of the above tests determined that -lresolv is needed at
651 # build-time, also set it here for remaining configure-time checks.
652 test -n "$NEEDS_RESOLV" && LIBS="$LIBS -lresolv"
654 AC_CHECK_LIB([c], [basename],
656 [NEEDS_LIBGEN=YesPlease])
657 AC_SUBST(NEEDS_LIBGEN)
658 test -n "$NEEDS_LIBGEN" && LIBS="$LIBS -lgen"
660 AC_CHECK_LIB([c], [gettext],
661 [LIBC_CONTAINS_LIBINTL=YesPlease],
662 [LIBC_CONTAINS_LIBINTL=])
663 AC_SUBST(LIBC_CONTAINS_LIBINTL)
666 # Define NO_GETTEXT if you don't want Git output to be translated.
667 # A translated Git requires GNU libintl or another gettext implementation
668 AC_CHECK_HEADER([libintl.h],
670 [NO_GETTEXT=YesPlease])
673 if test -z "$NO_GETTEXT"; then
674 test -n "$LIBC_CONTAINS_LIBINTL" || LIBS="$LIBS -lintl"
677 ## Checks for header files.
678 AC_MSG_NOTICE([CHECKS for header files])
680 # Define NO_SYS_SELECT_H if you don't have sys/select.h.
681 AC_CHECK_HEADER([sys/select.h],
683 [NO_SYS_SELECT_H=UnfortunatelyYes])
684 AC_SUBST(NO_SYS_SELECT_H)
686 # Define NO_SYS_POLL_H if you don't have sys/poll.h
687 AC_CHECK_HEADER([sys/poll.h],
689 [NO_SYS_POLL_H=UnfortunatelyYes])
690 AC_SUBST(NO_SYS_POLL_H)
692 # Define NO_INTTYPES_H if you don't have inttypes.h
693 AC_CHECK_HEADER([inttypes.h],
695 [NO_INTTYPES_H=UnfortunatelyYes])
696 AC_SUBST(NO_INTTYPES_H)
698 # Define OLD_ICONV if your library has an old iconv(), where the second
699 # (input buffer pointer) parameter is declared with type (const char **).
700 AC_DEFUN([OLDICONVTEST_SRC], [
704 extern size_t iconv(iconv_t cd,
705 char **inbuf, size_t *inbytesleft,
706 char **outbuf, size_t *outbytesleft);
709 GIT_STASH_FLAGS($ICONVDIR)
711 AC_MSG_CHECKING([for old iconv()])
712 AC_COMPILE_IFELSE([OLDICONVTEST_SRC],
713 [AC_MSG_RESULT([no])],
714 [AC_MSG_RESULT([yes])
715 OLD_ICONV=UnfortunatelyYes])
717 GIT_UNSTASH_FLAGS($ICONVDIR)
721 ## Checks for typedefs, structures, and compiler characteristics.
722 AC_MSG_NOTICE([CHECKS for typedefs, structures, and compiler characteristics])
725 case $ac_cv_type_socklen_t in
727 *) AC_SUBST([SOCKLEN_T], [$git_cv_socklen_t_equiv]) ;;
730 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
731 AC_CHECK_MEMBER(struct dirent.d_ino,
732 [NO_D_INO_IN_DIRENT=],
733 [NO_D_INO_IN_DIRENT=YesPlease],
734 [#include <dirent.h>])
735 AC_SUBST(NO_D_INO_IN_DIRENT)
737 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
738 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
739 AC_CHECK_MEMBER(struct dirent.d_type,
740 [NO_D_TYPE_IN_DIRENT=],
741 [NO_D_TYPE_IN_DIRENT=YesPlease],
742 [#include <dirent.h>])
743 AC_SUBST(NO_D_TYPE_IN_DIRENT)
745 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
747 AC_CHECK_TYPE(struct sockaddr_storage,
748 [NO_SOCKADDR_STORAGE=],
749 [NO_SOCKADDR_STORAGE=YesPlease],[
750 #include <sys/types.h>
751 #include <sys/socket.h>
753 AC_SUBST(NO_SOCKADDR_STORAGE)
755 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
756 AC_CHECK_TYPE([struct addrinfo],[
757 GIT_CHECK_FUNC([getaddrinfo],
760 ],[NO_IPV6=YesPlease],[
761 #include <sys/types.h>
762 #include <sys/socket.h>
767 # Define NO_REGEX if you have no or inferior regex support in your C library.
768 AC_CACHE_CHECK([whether the platform regex can handle null bytes],
769 [ac_cv_c_excellent_regex], [
770 AC_EGREP_CPP(yippeeyeswehaveit,
771 AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
778 [ac_cv_c_excellent_regex=yes],
779 [ac_cv_c_excellent_regex=no])
781 if test $ac_cv_c_excellent_regex = yes; then
788 # Define FREAD_READS_DIRECTORIES if your are on a system which succeeds
789 # when attempting to read from an fopen'ed directory.
790 AC_CACHE_CHECK([whether system succeeds to read fopen'ed directory],
791 [ac_cv_fread_reads_directories],
794 [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
796 FILE *f = fopen(".", "r");
797 return f && fread(&c, 1, 1, f)]])],
798 [ac_cv_fread_reads_directories=no],
799 [ac_cv_fread_reads_directories=yes])
801 if test $ac_cv_fread_reads_directories = yes; then
802 FREAD_READS_DIRECTORIES=UnfortunatelyYes
804 FREAD_READS_DIRECTORIES=
806 AC_SUBST(FREAD_READS_DIRECTORIES)
808 # Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf()
809 # or vsnprintf() return -1 instead of number of characters which would
810 # have been written to the final string if enough space had been available.
811 AC_CACHE_CHECK([whether snprintf() and/or vsnprintf() return bogus value],
812 [ac_cv_snprintf_returns_bogus],
815 [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
818 int test_vsnprintf(char *str, size_t maxsize, const char *format, ...)
822 va_start(ap, format);
823 ret = vsnprintf(str, maxsize, format, ap);
828 if (test_vsnprintf(buf, 3, "%s", "12345") != 5
829 || strcmp(buf, "12")) return 1;
830 if (snprintf(buf, 3, "%s", "12345") != 5
831 || strcmp(buf, "12")) return 1]])],
832 [ac_cv_snprintf_returns_bogus=no],
833 [ac_cv_snprintf_returns_bogus=yes])
835 if test $ac_cv_snprintf_returns_bogus = yes; then
836 SNPRINTF_RETURNS_BOGUS=UnfortunatelyYes
838 SNPRINTF_RETURNS_BOGUS=
840 AC_SUBST(SNPRINTF_RETURNS_BOGUS)
843 ## Checks for library functions.
844 ## (in default C library and libraries checked by AC_CHECK_LIB)
845 AC_MSG_NOTICE([CHECKS for library functions])
847 # Define NO_LIBGEN_H if you don't have libgen.h.
848 AC_CHECK_HEADER([libgen.h],
850 [NO_LIBGEN_H=YesPlease])
851 AC_SUBST(NO_LIBGEN_H)
853 # Define HAVE_PATHS_H if you have paths.h.
854 AC_CHECK_HEADER([paths.h],
855 [HAVE_PATHS_H=YesPlease],
857 AC_SUBST(HAVE_PATHS_H)
859 # Define HAVE_LIBCHARSET_H if have libcharset.h
860 AC_CHECK_HEADER([libcharset.h],
861 [HAVE_LIBCHARSET_H=YesPlease],
862 [HAVE_LIBCHARSET_H=])
863 AC_SUBST(HAVE_LIBCHARSET_H)
864 # Define CHARSET_LIB if libiconv does not export the locale_charset symbol
865 # and libcharset does
867 AC_CHECK_LIB([iconv], [locale_charset],
869 [AC_CHECK_LIB([charset], [locale_charset],
870 [CHARSET_LIB=-lcharset])
873 AC_SUBST(CHARSET_LIB)
875 # Define NO_STRCASESTR if you don't have strcasestr.
876 GIT_CHECK_FUNC(strcasestr,
878 [NO_STRCASESTR=YesPlease])
879 AC_SUBST(NO_STRCASESTR)
881 # Define NO_STRTOK_R if you don't have strtok_r
882 GIT_CHECK_FUNC(strtok_r,
884 [NO_STRTOK_R=YesPlease])
885 AC_SUBST(NO_STRTOK_R)
887 # Define NO_FNMATCH if you don't have fnmatch
888 GIT_CHECK_FUNC(fnmatch,
890 [NO_FNMATCH=YesPlease])
893 # Define NO_FNMATCH_CASEFOLD if your fnmatch function doesn't have the
894 # FNM_CASEFOLD GNU extension.
895 AC_CACHE_CHECK([whether the fnmatch function supports the FNMATCH_CASEFOLD GNU extension],
896 [ac_cv_c_excellent_fnmatch], [
897 AC_EGREP_CPP(yippeeyeswehaveit,
905 [ac_cv_c_excellent_fnmatch=yes],
906 [ac_cv_c_excellent_fnmatch=no])
908 if test $ac_cv_c_excellent_fnmatch = yes; then
911 NO_FNMATCH_CASEFOLD=YesPlease
913 AC_SUBST(NO_FNMATCH_CASEFOLD)
915 # Define NO_MEMMEM if you don't have memmem.
916 GIT_CHECK_FUNC(memmem,
918 [NO_MEMMEM=YesPlease])
921 # Define NO_STRLCPY if you don't have strlcpy.
922 GIT_CHECK_FUNC(strlcpy,
924 [NO_STRLCPY=YesPlease])
927 # Define NO_UINTMAX_T if your platform does not have uintmax_t
928 AC_CHECK_TYPE(uintmax_t,
930 [NO_UINTMAX_T=YesPlease],[
931 #include <inttypes.h>
933 AC_SUBST(NO_UINTMAX_T)
935 # Define NO_STRTOUMAX if you don't have strtoumax in the C library.
936 GIT_CHECK_FUNC(strtoumax,
938 [NO_STRTOUMAX=YesPlease])
939 AC_SUBST(NO_STRTOUMAX)
941 # Define NO_SETENV if you don't have setenv in the C library.
942 GIT_CHECK_FUNC(setenv,
944 [NO_SETENV=YesPlease])
947 # Define NO_UNSETENV if you don't have unsetenv in the C library.
948 GIT_CHECK_FUNC(unsetenv,
950 [NO_UNSETENV=YesPlease])
951 AC_SUBST(NO_UNSETENV)
953 # Define NO_MKDTEMP if you don't have mkdtemp in the C library.
954 GIT_CHECK_FUNC(mkdtemp,
956 [NO_MKDTEMP=YesPlease])
959 # Define NO_MKSTEMPS if you don't have mkstemps in the C library.
960 GIT_CHECK_FUNC(mkstemps,
962 [NO_MKSTEMPS=YesPlease])
963 AC_SUBST(NO_MKSTEMPS)
965 # Define NO_INITGROUPS if you don't have initgroups in the C library.
966 GIT_CHECK_FUNC(initgroups,
968 [NO_INITGROUPS=YesPlease])
969 AC_SUBST(NO_INITGROUPS)
972 # Define NO_MMAP if you want to avoid mmap.
974 # Define NO_ICONV if your libc does not properly support iconv.
978 # Define USE_PIC if you need the main git objects to be built with -fPIC
979 # in order to build and link perl/Git.so. x86-64 seems to need this.
981 # Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
982 # Enable it on Windows. By default, symrefs are still used.
984 # Define NO_PTHREADS if we do not have pthreads.
986 # Define PTHREAD_LIBS to the linker flag used for Pthread support.
987 AC_DEFUN([PTHREADTEST_SRC], [
991 pthread_mutex_t test_mutex;
992 pthread_key_t test_key;
994 retcode |= pthread_key_create(&test_key, (void *)0);
995 retcode |= pthread_mutex_init(&test_mutex,(void *)0);
996 retcode |= pthread_mutex_lock(&test_mutex);
997 retcode |= pthread_mutex_unlock(&test_mutex);
1001 dnl AC_LANG_CONFTEST([AC_LANG_PROGRAM(
1002 dnl [[#include <pthread.h>]],
1003 dnl [[pthread_mutex_t test_mutex;]]
1006 NO_PTHREADS=UnfortunatelyYes
1009 if test -n "$USER_NOPTHREAD"; then
1010 AC_MSG_NOTICE([Skipping POSIX Threads at user request.])
1011 # handle these separately since PTHREAD_CFLAGS could be '-lpthreads
1012 # -D_REENTRANT' or some such.
1013 elif test -z "$PTHREAD_CFLAGS"; then
1015 for opt in -mt -pthread -lpthread; do
1016 old_CFLAGS="$CFLAGS"
1017 CFLAGS="$opt $CFLAGS"
1018 AC_MSG_CHECKING([Checking for POSIX Threads with '$opt'])
1019 AC_LINK_IFELSE([PTHREADTEST_SRC],
1020 [AC_MSG_RESULT([yes])
1023 PTHREAD_CFLAGS="$opt"
1027 [AC_MSG_RESULT([no])])
1028 CFLAGS="$old_CFLAGS"
1030 if test $threads_found != yes; then
1031 AC_CHECK_LIB([pthread], [pthread_create],
1032 [PTHREAD_LIBS="-lpthread"],
1033 [NO_PTHREADS=UnfortunatelyYes])
1036 old_CFLAGS="$CFLAGS"
1037 CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
1038 AC_MSG_CHECKING([Checking for POSIX Threads with '$PTHREAD_CFLAGS'])
1039 AC_LINK_IFELSE([PTHREADTEST_SRC],
1040 [AC_MSG_RESULT([yes])
1042 PTHREAD_LIBS="$PTHREAD_CFLAGS"
1044 [AC_MSG_RESULT([no])])
1046 CFLAGS="$old_CFLAGS"
1049 CFLAGS="$old_CFLAGS"
1051 AC_SUBST(PTHREAD_CFLAGS)
1052 AC_SUBST(PTHREAD_LIBS)
1053 AC_SUBST(NO_PTHREADS)
1056 AC_CONFIG_FILES(["${config_file}":"${config_in}"])