aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKyle J. McKay <mackyle@gmail.com>2015-03-07 23:14:36 -0800
committerJunio C Hamano <gitster@pobox.com>2015-03-10 15:13:25 -0700
commit9529080de253b89474402f323e10470656764b3a (patch)
tree7154b4495465156ceab9d7595d03492e0a8a3d50 /Makefile
parent9874fca7122563e28d699a911404fc49d2a24f1c (diff)
downloadgit-9529080de253b89474402f323e10470656764b3a.tar.gz
git-9529080de253b89474402f323e10470656764b3a.tar.xz
configure: support HAVE_BSD_SYSCTL option
On BSD-compatible systems some information such as the number of available CPUs may only be available via the sysctl function. Add support for a HAVE_BSD_SYSCTL option complete with autoconf support and include the sys/syctl.h header when the option is enabled to make the sysctl function available. Signed-off-by: Kyle J. McKay <mackyle@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c44eb3a85..fdac1b980 100644
--- a/Makefile
+++ b/Makefile
@@ -348,6 +348,8 @@ all::
#
# Define NO_HMAC_CTX_CLEANUP if your OpenSSL is version 0.9.6b or earlier to
# cleanup the HMAC context with the older HMAC_cleanup function.
+#
+# Define HAVE_BSD_SYSCTL if your platform has a BSD-compatible sysctl function.
GIT-VERSION-FILE: FORCE
@$(SHELL_PATH) ./GIT-VERSION-GEN
@@ -1414,6 +1416,10 @@ ifdef HAVE_CLOCK_MONOTONIC
BASIC_CFLAGS += -DHAVE_CLOCK_MONOTONIC
endif
+ifdef HAVE_BSD_SYSCTL
+ BASIC_CFLAGS += -DHAVE_BSD_SYSCTL
+endif
+
ifeq ($(TCLTK_PATH),)
NO_TCLTK = NoThanks
endif