Merge branch 'lt/merge-tree'
authorJunio C Hamano <junkio@cox.net>
Tue, 21 Feb 2006 08:49:38 +0000 (00:49 -0800)
committerJunio C Hamano <junkio@cox.net>
Tue, 21 Feb 2006 08:49:38 +0000 (00:49 -0800)
* lt/merge-tree:
  git-merge-tree: generalize the "traverse <n> trees in sync" functionality
  Handling large files with GIT
  Handling large files with GIT

1  2 
Makefile

diff --combined Makefile
+++ b/Makefile
@@@ -53,8 -53,6 +53,8 @@@ all
  # Define NO_SOCKADDR_STORAGE if your platform does not have struct
  # sockaddr_storage.
  #
 +# Define NO_ICONV if your libc does not properly support iconv.
 +#
  # Define COLLISION_CHECK below if you believe that SHA1's
  # 1461501637330902918203684832716283019655932542976 hashes do not give you
  # sufficient guarantee that no collisions between objects will ever happen.
@@@ -153,7 -151,7 +153,7 @@@ PROGRAMS = 
        git-upload-pack$X git-verify-pack$X git-write-tree$X \
        git-update-ref$X git-symbolic-ref$X git-check-ref-format$X \
        git-name-rev$X git-pack-redundant$X git-repo-config$X git-var$X \
-       git-describe$X
+       git-describe$X git-merge-tree$X
  
  # what 'all' will build and 'install' will install, in gitexecdir
  ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
@@@ -382,10 -380,6 +382,10 @@@ els
  endif
  endif
  
 +ifdef NO_ICONV
 +      ALL_CFLAGS += -DNO_ICONV
 +endif
 +
  ifdef PPC_SHA1
        SHA1_HEADER = "ppc/sha1.h"
        LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o