summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-03-10 21:24:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-03-10 21:24:24 (GMT)
commitfb907176de4657892682c049946ba28caed9adde (patch)
tree2749690297dd0aaab8178b9b88a02ef5847c3cdf /Makefile
parent5886e75489df639ff3ac1f9b53d2c27bd9fe8f0a (diff)
parentb2d593a7797f4f9452e46f722e181604a5582897 (diff)
downloadgit-fb907176de4657892682c049946ba28caed9adde.zip
git-fb907176de4657892682c049946ba28caed9adde.tar.gz
git-fb907176de4657892682c049946ba28caed9adde.tar.bz2
Merge branch 'rj/remove-unused-mktemp'
Code cleanup. * rj/remove-unused-mktemp: wrapper.c: remove unused gitmkstemps() function wrapper.c: remove unused git_mkstemp() function
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 9ec6065..ed68700 100644
--- a/Makefile
+++ b/Makefile
@@ -102,8 +102,6 @@ all::
#
# Define MKDIR_WO_TRAILING_SLASH if your mkdir() can't deal with trailing slash.
#
-# Define NO_MKSTEMPS if you don't have mkstemps in the C library.
-#
# Define NO_GECOS_IN_PWENT if you don't have pw_gecos in struct passwd
# in the C library.
#
@@ -1282,9 +1280,6 @@ ifdef MKDIR_WO_TRAILING_SLASH
COMPAT_CFLAGS += -DMKDIR_WO_TRAILING_SLASH
COMPAT_OBJS += compat/mkdir.o
endif
-ifdef NO_MKSTEMPS
- COMPAT_CFLAGS += -DNO_MKSTEMPS
-endif
ifdef NO_UNSETENV
COMPAT_CFLAGS += -DNO_UNSETENV
COMPAT_OBJS += compat/unsetenv.o