Merge branch 'hn/reftable'
The "reftable" backend for the refs API, without integrating into the refs subsystem, has been added. * hn/reftable: Add "test-tool dump-reftable" command. reftable: add dump utility reftable: implement stack, a mutable database of reftable files. reftable: implement refname validation reftable: add merged table view reftable: add a heap-based priority queue for reftable records reftable: reftable file level tests reftable: read reftable files reftable: generic interface to tables reftable: write reftable files reftable: a generic binary tree implementation reftable: reading/writing blocks Provide zlib's uncompress2 from compat/zlib-compat.c reftable: (de)serialization for the polymorphic record type. reftable: add blocksource, an abstraction for random access reads reftable: utility functions reftable: add error related functionality reftable: add LICENSE hash.h: provide constants for the hash IDs
This commit is contained in:
13
configure.ac
13
configure.ac
@ -664,9 +664,22 @@ AC_LINK_IFELSE([ZLIBTEST_SRC],
|
||||
NO_DEFLATE_BOUND=yes])
|
||||
LIBS="$old_LIBS"
|
||||
|
||||
AC_DEFUN([ZLIBTEST_UNCOMPRESS2_SRC], [
|
||||
AC_LANG_PROGRAM([#include <zlib.h>],
|
||||
[uncompress2(NULL,NULL,NULL,NULL);])])
|
||||
AC_MSG_CHECKING([for uncompress2 in -lz])
|
||||
old_LIBS="$LIBS"
|
||||
LIBS="$LIBS -lz"
|
||||
AC_LINK_IFELSE([ZLIBTEST_UNCOMPRESS2_SRC],
|
||||
[AC_MSG_RESULT([yes])],
|
||||
[AC_MSG_RESULT([no])
|
||||
NO_UNCOMPRESS2=yes])
|
||||
LIBS="$old_LIBS"
|
||||
|
||||
GIT_UNSTASH_FLAGS($ZLIB_PATH)
|
||||
|
||||
GIT_CONF_SUBST([NO_DEFLATE_BOUND])
|
||||
GIT_CONF_SUBST([NO_UNCOMPRESS2])
|
||||
|
||||
#
|
||||
# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
|
||||
|
Reference in New Issue
Block a user