2 # Process this file with autoconf to produce a configure script.
5 AC_INIT([git], [@@GIT_VERSION@@], [git@vger.kernel.org])
7 AC_CONFIG_SRCDIR([git.c])
9 config_file=config.mak.autogen
10 config_append=config.mak.append
11 config_in=config.mak.in
13 echo "# ${config_append}. Generated by configure." > "${config_append}"
16 ## Definitions of macros
17 # GIT_CONF_APPEND_LINE(LINE)
18 # --------------------------
19 # Append LINE to file ${config_append}
20 AC_DEFUN([GIT_CONF_APPEND_LINE],
21 [echo "$1" >> "${config_append}"])# GIT_CONF_APPEND_LINE
23 # GIT_ARG_SET_PATH(PROGRAM)
24 # -------------------------
25 # Provide --with-PROGRAM=PATH option to set PATH to PROGRAM
26 AC_DEFUN([GIT_ARG_SET_PATH],
28 [AS_HELP_STRING([--with-$1=PATH],
29 [provide PATH to $1])],
30 [GIT_CONF_APPEND_PATH($1)],[])
33 # GIT_CONF_APPEND_PATH(PROGRAM)
34 # ------------------------------
35 # Parse --with-PROGRAM=PATH option to set PROGRAM_PATH=PATH
36 # Used by GIT_ARG_SET_PATH(PROGRAM)
37 AC_DEFUN([GIT_CONF_APPEND_PATH],
38 [PROGRAM=m4_toupper($1); \
39 if test "$withval" = "no"; then \
40 AC_MSG_ERROR([You cannot use git without $1]); \
42 if test "$withval" = "yes"; then \
43 AC_MSG_WARN([You should provide path for --with-$1=PATH]); \
45 m4_toupper($1)_PATH=$withval; \
46 AC_MSG_NOTICE([Setting m4_toupper($1)_PATH to $withval]); \
47 GIT_CONF_APPEND_LINE(${PROGRAM}_PATH=$withval); \
50 ]) # GIT_CONF_APPEND_PATH
52 # GIT_PARSE_WITH(PACKAGE)
53 # -----------------------
54 # For use in AC_ARG_WITH action-if-found, for packages default ON.
55 # * Set NO_PACKAGE=YesPlease for --without-PACKAGE
56 # * Set PACKAGEDIR=PATH for --with-PACKAGE=PATH
57 # * Unset NO_PACKAGE for --with-PACKAGE without ARG
58 AC_DEFUN([GIT_PARSE_WITH],
59 [PACKAGE=m4_toupper($1); \
60 if test "$withval" = "no"; then \
61 m4_toupper(NO_$1)=YesPlease; \
62 elif test "$withval" = "yes"; then \
66 m4_toupper($1)DIR=$withval; \
67 AC_MSG_NOTICE([Setting m4_toupper($1)DIR to $withval]); \
68 GIT_CONF_APPEND_LINE(${PACKAGE}DIR=$withval); \
73 dnl GIT_CHECK_FUNC(FUNCTION, IFTRUE, IFFALSE)
74 dnl -----------------------------------------
75 dnl Similar to AC_CHECK_FUNC, but on systems that do not generate
76 dnl warnings for missing prototypes (e.g. FreeBSD when compiling without
77 dnl -Wall), it does not work. By looking for function definition in
78 dnl libraries, this problem can be worked around.
79 AC_DEFUN([GIT_CHECK_FUNC],[AC_CHECK_FUNC([$1],[
85 dnl GIT_STASH_FLAGS(BASEPATH_VAR)
86 dnl -----------------------------
87 dnl Allow for easy stashing of LDFLAGS and CPPFLAGS before running
88 dnl tests that may want to take user settings into account.
89 AC_DEFUN([GIT_STASH_FLAGS],[
91 old_CPPFLAGS="$CPPFLAGS"
92 old_LDFLAGS="$LDFLAGS"
93 CPPFLAGS="-I$1/include $CPPFLAGS"
94 LDFLAGS="-L$1/$lib $LDFLAGS"
99 dnl GIT_UNSTASH_FLAGS(BASEPATH_VAR)
100 dnl -----------------------------
101 dnl Restore the stashed *FLAGS values.
102 AC_DEFUN([GIT_UNSTASH_FLAGS],[
103 if test -n "$1"; then
104 CPPFLAGS="$old_CPPFLAGS"
105 LDFLAGS="$old_LDFLAGS"
109 ## Site configuration related to programs (before tests)
110 ## --with-PACKAGE[=ARG] and --without-PACKAGE
112 # Set lib to alternative name of lib directory (e.g. lib64)
114 [AS_HELP_STRING([--with-lib=ARG],
115 [ARG specifies alternative name for lib directory])],
116 [if test "$withval" = "no" || test "$withval" = "yes"; then \
117 AC_MSG_WARN([You should provide name for --with-lib=ARG]); \
120 AC_MSG_NOTICE([Setting lib to '$lib']); \
121 GIT_CONF_APPEND_LINE(lib=$withval); \
125 if test -z "$lib"; then
126 AC_MSG_NOTICE([Setting lib to 'lib' (the default)])
130 AC_ARG_ENABLE([pthreads],
131 [AS_HELP_STRING([--enable-pthreads=FLAGS],
132 [FLAGS is the value to pass to the compiler to enable POSIX Threads.]
133 [The default if FLAGS is not specified is to try first -pthread]
134 [and then -lpthread.]
135 [--without-pthreads will disable threading.])],
137 if test "x$enableval" = "xyes"; then
138 AC_MSG_NOTICE([Will try -pthread then -lpthread to enable POSIX Threads])
139 elif test "x$enableval" != "xno"; then
140 PTHREAD_CFLAGS=$enableval
141 AC_MSG_NOTICE([Setting '$PTHREAD_CFLAGS' as the FLAGS to enable POSIX Threads])
143 AC_MSG_NOTICE([POSIX Threads will be disabled.])
144 NO_PTHREADS=YesPlease
148 AC_MSG_NOTICE([Will try -pthread then -lpthread to enable POSIX Threads.])
151 ## Site configuration (override autodetection)
152 ## --with-PACKAGE[=ARG] and --without-PACKAGE
153 AC_MSG_NOTICE([CHECKS for site configuration])
155 # Define NO_SVN_TESTS if you want to skip time-consuming SVN interoperability
156 # tests. These tests take up a significant amount of the total test time
157 # but are not needed unless you plan to talk to SVN repos.
159 # Define PPC_SHA1 environment variable when running make to make use of
160 # a bundled SHA1 routine optimized for PowerPC.
162 # Define NO_OPENSSL environment variable if you do not have OpenSSL.
163 # This also implies BLK_SHA1.
165 # Define OPENSSLDIR=/foo/bar if your openssl header and library files are in
166 # /foo/bar/include and /foo/bar/lib directories.
168 AS_HELP_STRING([--with-openssl],[use OpenSSL library (default is YES)])
169 AS_HELP_STRING([], [ARG can be prefix for openssl library and headers]),\
170 GIT_PARSE_WITH(openssl))
172 # Define NO_CURL if you do not have curl installed. git-http-pull and
173 # git-http-push are not built, and you cannot use http:// and https://
176 # Define CURLDIR=/foo/bar if your curl header and library files are in
177 # /foo/bar/include and /foo/bar/lib directories.
179 AS_HELP_STRING([--with-curl],[support http(s):// transports (default is YES)])
180 AS_HELP_STRING([], [ARG can be also prefix for curl library and headers]),
181 GIT_PARSE_WITH(curl))
183 # Define NO_EXPAT if you do not have expat installed. git-http-push is
184 # not built, and you cannot push using http:// and https:// transports.
186 # Define EXPATDIR=/foo/bar if your expat header and library files are in
187 # /foo/bar/include and /foo/bar/lib directories.
189 AS_HELP_STRING([--with-expat],
190 [support git-push using http:// and https:// transports via WebDAV (default is YES)])
191 AS_HELP_STRING([], [ARG can be also prefix for expat library and headers]),
192 GIT_PARSE_WITH(expat))
194 # Define NO_FINK if you are building on Darwin/Mac OS X, have Fink
195 # installed in /sw, but don't want GIT to link against any libraries
196 # installed there. If defined you may specify your own (or Fink's)
197 # include directories and library directories by defining CFLAGS
198 # and LDFLAGS appropriately.
200 # Define NO_DARWIN_PORTS if you are building on Darwin/Mac OS X,
201 # have DarwinPorts installed in /opt/local, but don't want GIT to
202 # link against any libraries installed there. If defined you may
203 # specify your own (or DarwinPort's) include directories and
204 # library directories by defining CFLAGS and LDFLAGS appropriately.
206 # Define NO_MMAP if you want to avoid mmap.
208 # Define NO_ICONV if your libc does not properly support iconv.
210 AS_HELP_STRING([--without-iconv],
211 [if your architecture doesn't properly support iconv])
212 AS_HELP_STRING([--with-iconv=PATH],
213 [PATH is prefix for libiconv library and headers])
215 [used only if you need linking with libiconv]),
216 GIT_PARSE_WITH(iconv))
218 ## --enable-FEATURE[=ARG] and --disable-FEATURE
220 # Define USE_NSEC below if you want git to care about sub-second file mtimes
221 # and ctimes. Note that you need recent glibc (at least 2.2.4) for this, and
222 # it will BREAK YOUR LOCAL DIFFS! show-diff and anything using it will likely
223 # randomly break unless your underlying filesystem supports those sub-second
224 # times (my ext3 doesn't).
226 # Define USE_STDEV below if you want git to care about the underlying device
227 # change being considered an inode change from the update-index perspective.
230 # Define SHELL_PATH to provide path to shell.
231 GIT_ARG_SET_PATH(shell)
233 # Define PERL_PATH to provide path to Perl.
234 GIT_ARG_SET_PATH(perl)
236 # Define ZLIB_PATH to provide path to zlib.
237 GIT_ARG_SET_PATH(zlib)
239 # Declare the with-tcltk/without-tcltk options.
241 AS_HELP_STRING([--with-tcltk],[use Tcl/Tk GUI (default is YES)])
242 AS_HELP_STRING([],[ARG is the full path to the Tcl/Tk interpreter.])
243 AS_HELP_STRING([],[Bare --with-tcltk will make the GUI part only if])
244 AS_HELP_STRING([],[Tcl/Tk interpreter will be found in a system.]),\
245 GIT_PARSE_WITH(tcltk))
249 ## Checks for programs.
250 AC_MSG_NOTICE([CHECKS for programs])
253 # which switch to pass runtime path to dynamic libraries to the linker
254 AC_CACHE_CHECK([if linker supports -R], git_cv_ld_dashr, [
255 SAVE_LDFLAGS="${LDFLAGS}"
256 LDFLAGS="${SAVE_LDFLAGS} -R /"
257 AC_LINK_IFELSE(AC_LANG_PROGRAM([], []), [git_cv_ld_dashr=yes], [git_cv_ld_dashr=no])
258 LDFLAGS="${SAVE_LDFLAGS}"
260 if test "$git_cv_ld_dashr" = "yes"; then
261 AC_SUBST(CC_LD_DYNPATH, [-R])
263 AC_CACHE_CHECK([if linker supports -Wl,-rpath,], git_cv_ld_wl_rpath, [
264 SAVE_LDFLAGS="${LDFLAGS}"
265 LDFLAGS="${SAVE_LDFLAGS} -Wl,-rpath,/"
266 AC_LINK_IFELSE(AC_LANG_PROGRAM([], []), [git_cv_ld_wl_rpath=yes], [git_cv_ld_wl_rpath=no])
267 LDFLAGS="${SAVE_LDFLAGS}"
269 if test "$git_cv_ld_wl_rpath" = "yes"; then
270 AC_SUBST(CC_LD_DYNPATH, [-Wl,-rpath,])
272 AC_CACHE_CHECK([if linker supports -rpath], git_cv_ld_rpath, [
273 SAVE_LDFLAGS="${LDFLAGS}"
274 LDFLAGS="${SAVE_LDFLAGS} -rpath /"
275 AC_LINK_IFELSE(AC_LANG_PROGRAM([], []), [git_cv_ld_rpath=yes], [git_cv_ld_rpath=no])
276 LDFLAGS="${SAVE_LDFLAGS}"
278 if test "$git_cv_ld_rpath" = "yes"; then
279 AC_SUBST(CC_LD_DYNPATH, [-rpath])
281 AC_MSG_WARN([linker does not support runtime path to dynamic libraries])
285 #AC_PROG_INSTALL # needs install-sh or install.sh in sources
286 AC_CHECK_TOOLS(AR, [gar ar], :)
287 AC_CHECK_PROGS(TAR, [gtar tar])
288 # TCLTK_PATH will be set to some value if we want Tcl/Tk
289 # or will be empty otherwise.
290 if test -z "$NO_TCLTK"; then
291 if test "$with_tcltk" = ""; then
292 # No Tcl/Tk switches given. Do not check for Tcl/Tk, use bare 'wish'.
295 elif test "$with_tcltk" = "yes"; then
296 # Tcl/Tk check requested.
297 AC_CHECK_PROGS(TCLTK_PATH, [wish], )
299 AC_MSG_RESULT([Using Tcl/Tk interpreter $with_tcltk])
300 TCLTK_PATH="$with_tcltk"
304 AC_CHECK_PROGS(ASCIIDOC, [asciidoc])
305 if test -n "$ASCIIDOC"; then
306 AC_MSG_CHECKING([for asciidoc version])
307 asciidoc_version=`$ASCIIDOC --version 2>/dev/null`
308 case "${asciidoc_version}" in
311 AC_MSG_RESULT([${asciidoc_version} > 7])
315 AC_MSG_RESULT([${asciidoc_version}])
319 AC_MSG_RESULT([${asciidoc_version} (unknown)])
326 ## Checks for libraries.
327 AC_MSG_NOTICE([CHECKS for libraries])
329 # Define NO_OPENSSL environment variable if you do not have OpenSSL.
330 # Define NEEDS_SSL_WITH_CRYPTO if you need -lcrypto with -lssl (Darwin).
332 GIT_STASH_FLAGS($OPENSSLDIR)
334 AC_CHECK_LIB([crypto], [SHA1_Init],
335 [NEEDS_SSL_WITH_CRYPTO=],
336 [AC_CHECK_LIB([ssl], [SHA1_Init],
337 [NEEDS_SSL_WITH_CRYPTO=YesPlease],
338 [NEEDS_SSL_WITH_CRYPTO= NO_OPENSSL=YesPlease])])
340 GIT_UNSTASH_FLAGS($OPENSSLDIR)
342 AC_SUBST(NEEDS_SSL_WITH_CRYPTO)
346 # Define NO_CURL if you do not have libcurl installed. git-http-pull and
347 # git-http-push are not built, and you cannot use http:// and https://
350 GIT_STASH_FLAGS($CURLDIR)
352 AC_CHECK_LIB([curl], [curl_global_init],
356 GIT_UNSTASH_FLAGS($CURLDIR)
361 # Define NO_EXPAT if you do not have expat installed. git-http-push is
362 # not built, and you cannot push using http:// and https:// transports.
364 GIT_STASH_FLAGS($EXPATDIR)
366 AC_CHECK_LIB([expat], [XML_ParserCreate],
368 [NO_EXPAT=YesPlease])
370 GIT_UNSTASH_FLAGS($EXPATDIR)
375 # Define NEEDS_LIBICONV if linking with libc is not enough (Darwin and
376 # some Solaris installations).
377 # Define NO_ICONV if neither libc nor libiconv support iconv.
379 if test -z "$NO_ICONV"; then
381 GIT_STASH_FLAGS($ICONVDIR)
383 AC_DEFUN([ICONVTEST_SRC], [
393 if test -n "$ICONVDIR"; then
394 lib_order="-liconv -lc"
396 lib_order="-lc -liconv"
401 for l in $lib_order; do
402 if test "$l" = "-liconv"; then
403 NEEDS_LIBICONV=YesPlease
410 AC_MSG_CHECKING([for iconv in $l])
411 AC_LINK_IFELSE(ICONVTEST_SRC,
412 [AC_MSG_RESULT([yes])
415 [AC_MSG_RESULT([no])])
422 GIT_UNSTASH_FLAGS($ICONVDIR)
424 AC_SUBST(NEEDS_LIBICONV)
427 if test -n "$NO_ICONV"; then
434 # Define NO_DEFLATE_BOUND if deflateBound is missing from zlib.
436 GIT_STASH_FLAGS($ZLIB_PATH)
438 AC_DEFUN([ZLIBTEST_SRC], [
447 AC_MSG_CHECKING([for deflateBound in -lz])
450 AC_LINK_IFELSE(ZLIBTEST_SRC,
451 [AC_MSG_RESULT([yes])],
453 NO_DEFLATE_BOUND=yes])
456 GIT_UNSTASH_FLAGS($ZLIB_PATH)
458 AC_SUBST(NO_DEFLATE_BOUND)
461 # Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
463 AC_CHECK_LIB([c], [socket],
465 [NEEDS_SOCKET=YesPlease])
466 AC_SUBST(NEEDS_SOCKET)
467 test -n "$NEEDS_SOCKET" && LIBS="$LIBS -lsocket"
470 # Define NEEDS_RESOLV if linking with -lnsl and/or -lsocket is not enough.
471 # Notably on Solaris hstrerror resides in libresolv and on Solaris 7
472 # inet_ntop and inet_pton additionally reside there.
473 AC_CHECK_LIB([c], [hstrerror],
475 [NEEDS_RESOLV=YesPlease])
476 AC_SUBST(NEEDS_RESOLV)
477 test -n "$NEEDS_RESOLV" && LIBS="$LIBS -lresolv"
479 AC_CHECK_LIB([c], [basename],
481 [NEEDS_LIBGEN=YesPlease])
482 AC_SUBST(NEEDS_LIBGEN)
483 test -n "$NEEDS_LIBGEN" && LIBS="$LIBS -lgen"
485 ## Checks for header files.
486 AC_MSG_NOTICE([CHECKS for header files])
488 # Define NO_SYS_SELECT_H if you don't have sys/select.h.
489 AC_CHECK_HEADER([sys/select.h],
491 [NO_SYS_SELECT_H=UnfortunatelyYes])
492 AC_SUBST(NO_SYS_SELECT_H)
494 # Define OLD_ICONV if your library has an old iconv(), where the second
495 # (input buffer pointer) parameter is declared with type (const char **).
496 AC_DEFUN([OLDICONVTEST_SRC], [[
499 extern size_t iconv(iconv_t cd,
500 char **inbuf, size_t *inbytesleft,
501 char **outbuf, size_t *outbytesleft);
509 GIT_STASH_FLAGS($ICONVDIR)
511 AC_MSG_CHECKING([for old iconv()])
512 AC_COMPILE_IFELSE(OLDICONVTEST_SRC,
513 [AC_MSG_RESULT([no])],
514 [AC_MSG_RESULT([yes])
515 OLD_ICONV=UnfortunatelyYes])
517 GIT_UNSTASH_FLAGS($ICONVDIR)
521 ## Checks for typedefs, structures, and compiler characteristics.
522 AC_MSG_NOTICE([CHECKS for typedefs, structures, and compiler characteristics])
524 # Define NO_D_INO_IN_DIRENT if you don't have d_ino in your struct dirent.
525 AC_CHECK_MEMBER(struct dirent.d_ino,
526 [NO_D_INO_IN_DIRENT=],
527 [NO_D_INO_IN_DIRENT=YesPlease],
528 [#include <dirent.h>])
529 AC_SUBST(NO_D_INO_IN_DIRENT)
531 # Define NO_D_TYPE_IN_DIRENT if your platform defines DT_UNKNOWN but lacks
532 # d_type in struct dirent (latest Cygwin -- will be fixed soonish).
533 AC_CHECK_MEMBER(struct dirent.d_type,
534 [NO_D_TYPE_IN_DIRENT=],
535 [NO_D_TYPE_IN_DIRENT=YesPlease],
536 [#include <dirent.h>])
537 AC_SUBST(NO_D_TYPE_IN_DIRENT)
539 # Define NO_SOCKADDR_STORAGE if your platform does not have struct
541 AC_CHECK_TYPE(struct sockaddr_storage,
542 [NO_SOCKADDR_STORAGE=],
543 [NO_SOCKADDR_STORAGE=YesPlease],[
544 #include <sys/types.h>
545 #include <sys/socket.h>
547 AC_SUBST(NO_SOCKADDR_STORAGE)
549 # Define NO_IPV6 if you lack IPv6 support and getaddrinfo().
550 AC_CHECK_TYPE([struct addrinfo],[
551 GIT_CHECK_FUNC([getaddrinfo],
554 ],[NO_IPV6=YesPlease],[
555 #include <sys/types.h>
556 #include <sys/socket.h>
561 # Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
562 # do not support the 'size specifiers' introduced by C99, namely ll, hh,
563 # j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
564 # some C compilers supported these specifiers prior to C99 as an extension.
565 AC_CACHE_CHECK([whether formatted IO functions support C99 size specifiers],
566 [ac_cv_c_c99_format],
567 [# Actually git uses only %z (%zu) in alloc.c, and %t (%td) in mktag.c
569 [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
571 if (sprintf(buf, "%lld%hhd%jd%zd%td", (long long int)1, (char)2, (intmax_t)3, (size_t)4, (ptrdiff_t)5) != 5)
573 else if (strcmp(buf, "12345"))
575 [ac_cv_c_c99_format=yes],
576 [ac_cv_c_c99_format=no])
578 if test $ac_cv_c_c99_format = no; then
579 NO_C99_FORMAT=YesPlease
583 AC_SUBST(NO_C99_FORMAT)
585 # Define FREAD_READS_DIRECTORIES if your are on a system which succeeds
586 # when attempting to read from an fopen'ed directory.
587 AC_CACHE_CHECK([whether system succeeds to read fopen'ed directory],
588 [ac_cv_fread_reads_directories],
591 [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
593 FILE *f = fopen(".", "r");
594 return f && fread(&c, 1, 1, f)]])],
595 [ac_cv_fread_reads_directories=no],
596 [ac_cv_fread_reads_directories=yes])
598 if test $ac_cv_fread_reads_directories = yes; then
599 FREAD_READS_DIRECTORIES=UnfortunatelyYes
601 FREAD_READS_DIRECTORIES=
603 AC_SUBST(FREAD_READS_DIRECTORIES)
605 # Define SNPRINTF_RETURNS_BOGUS if your are on a system which snprintf()
606 # or vsnprintf() return -1 instead of number of characters which would
607 # have been written to the final string if enough space had been available.
608 AC_CACHE_CHECK([whether snprintf() and/or vsnprintf() return bogus value],
609 [ac_cv_snprintf_returns_bogus],
612 [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT
615 int test_vsnprintf(char *str, size_t maxsize, const char *format, ...)
619 va_start(ap, format);
620 ret = vsnprintf(str, maxsize, format, ap);
625 if (test_vsnprintf(buf, 3, "%s", "12345") != 5
626 || strcmp(buf, "12")) return 1;
627 if (snprintf(buf, 3, "%s", "12345") != 5
628 || strcmp(buf, "12")) return 1]])],
629 [ac_cv_snprintf_returns_bogus=no],
630 [ac_cv_snprintf_returns_bogus=yes])
632 if test $ac_cv_snprintf_returns_bogus = yes; then
633 SNPRINTF_RETURNS_BOGUS=UnfortunatelyYes
635 SNPRINTF_RETURNS_BOGUS=
637 AC_SUBST(SNPRINTF_RETURNS_BOGUS)
640 ## Checks for library functions.
641 ## (in default C library and libraries checked by AC_CHECK_LIB)
642 AC_MSG_NOTICE([CHECKS for library functions])
644 # Define NO_LIBGEN_H if you don't have libgen.h.
645 AC_CHECK_HEADER([libgen.h],
647 [NO_LIBGEN_H=YesPlease])
648 AC_SUBST(NO_LIBGEN_H)
650 # Define NO_STRCASESTR if you don't have strcasestr.
651 GIT_CHECK_FUNC(strcasestr,
653 [NO_STRCASESTR=YesPlease])
654 AC_SUBST(NO_STRCASESTR)
656 # Define NO_MEMMEM if you don't have memmem.
657 GIT_CHECK_FUNC(memmem,
659 [NO_MEMMEM=YesPlease])
662 # Define NO_STRLCPY if you don't have strlcpy.
663 GIT_CHECK_FUNC(strlcpy,
665 [NO_STRLCPY=YesPlease])
668 # Define NO_UINTMAX_T if your platform does not have uintmax_t
669 AC_CHECK_TYPE(uintmax_t,
671 [NO_UINTMAX_T=YesPlease],[
672 #include <inttypes.h>
674 AC_SUBST(NO_UINTMAX_T)
676 # Define NO_STRTOUMAX if you don't have strtoumax in the C library.
677 GIT_CHECK_FUNC(strtoumax,
679 [NO_STRTOUMAX=YesPlease])
680 AC_SUBST(NO_STRTOUMAX)
682 # Define NO_SETENV if you don't have setenv in the C library.
683 GIT_CHECK_FUNC(setenv,
685 [NO_SETENV=YesPlease])
688 # Define NO_UNSETENV if you don't have unsetenv in the C library.
689 GIT_CHECK_FUNC(unsetenv,
691 [NO_UNSETENV=YesPlease])
692 AC_SUBST(NO_UNSETENV)
694 # Define NO_MKDTEMP if you don't have mkdtemp in the C library.
695 GIT_CHECK_FUNC(mkdtemp,
697 [NO_MKDTEMP=YesPlease])
700 # Define NO_MKSTEMPS if you don't have mkstemps in the C library.
701 GIT_CHECK_FUNC(mkstemps,
703 [NO_MKSTEMPS=YesPlease])
704 AC_SUBST(NO_MKSTEMPS)
707 # Define NO_MMAP if you want to avoid mmap.
709 # Define NO_ICONV if your libc does not properly support iconv.
713 # Define USE_PIC if you need the main git objects to be built with -fPIC
714 # in order to build and link perl/Git.so. x86-64 seems to need this.
716 # Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link.
717 # Enable it on Windows. By default, symrefs are still used.
719 # Define NO_PTHREADS if we do not have pthreads
721 # Define PTHREAD_LIBS to the linker flag used for Pthread support and define
722 # THREADED_DELTA_SEARCH if Pthreads are available.
723 AC_DEFUN([PTHREADTEST_SRC], [
728 pthread_mutex_t test_mutex;
733 dnl AC_LANG_CONFTEST([AC_LANG_PROGRAM(
734 dnl [[#include <pthread.h>]],
735 dnl [[pthread_mutex_t test_mutex;]]
738 NO_PTHREADS=UnfortunatelyYes
739 THREADED_DELTA_SEARCH=
742 if test -n "$USER_NOPTHREAD"; then
743 AC_MSG_NOTICE([Skipping POSIX Threads at user request.])
744 # handle these separately since PTHREAD_CFLAGS could be '-lpthreads
745 # -D_REENTRANT' or some such.
746 elif test -z "$PTHREAD_CFLAGS"; then
747 for opt in -pthread -lpthread; do
749 CFLAGS="$opt $CFLAGS"
750 AC_MSG_CHECKING([Checking for POSIX Threads with '$opt'])
751 AC_LINK_IFELSE(PTHREADTEST_SRC,
752 [AC_MSG_RESULT([yes])
755 THREADED_DELTA_SEARCH=YesPlease
758 [AC_MSG_RESULT([no])])
763 CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
764 AC_MSG_CHECKING([Checking for POSIX Threads with '$PTHREAD_CFLAGS'])
765 AC_LINK_IFELSE(PTHREADTEST_SRC,
766 [AC_MSG_RESULT([yes])
768 PTHREAD_LIBS="$PTHREAD_CFLAGS"
769 THREADED_DELTA_SEARCH=YesPlease
771 [AC_MSG_RESULT([no])])
778 AC_SUBST(PTHREAD_LIBS)
779 AC_SUBST(NO_PTHREADS)
780 AC_SUBST(THREADED_DELTA_SEARCH)
783 AC_CONFIG_FILES(["${config_file}":"${config_in}":"${config_append}"])
788 rm -f "${config_append}"