author | Junio C Hamano <gitster@pobox.com> | |
Wed, 3 Jun 2009 07:50:05 +0000 (00:50 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 3 Jun 2009 07:50:05 +0000 (00:50 -0700) |
* da/pretty-tempname:
diff: generate pretty filenames in prep_temp_blob()
compat: add a basename() compatibility function
compat: add a mkstemps() compatibility function
Conflicts:
Makefile
diff: generate pretty filenames in prep_temp_blob()
compat: add a basename() compatibility function
compat: add a mkstemps() compatibility function
Conflicts:
Makefile
1 | 2 | |||
---|---|---|---|---|
Makefile | patch | | diff1 | | diff2 | | blob | history |
git-compat-util.h | patch | | diff1 | | diff2 | | blob | history |
diff --cc Makefile
index 0ab1cff30de7b3cc745ce79acca4a3f7cfbd1977,a59f10687bd158757422809ad20022d84ead9b9a..06c39e449d17e8170e2e387caefd51b16ab15e55
+++ b/Makefile
NO_MEMMEM = YesPlease
NO_HSTRERROR = YesPlease
NO_MKDTEMP = YesPlease
- OLD_ICONV = UnfortunatelyYes
+ NO_MKSTEMPS = YesPlease
+ ifneq ($(uname_R),5.11)
+ OLD_ICONV = UnfortunatelyYes
+ endif
ifeq ($(uname_R),5.8)
NO_UNSETENV = YesPlease
NO_SETENV = YesPlease
diff --cc git-compat-util.h
Simple merge