diff options
author | Kyle J. McKay <mackyle@gmail.com> | 2015-02-06 01:35:31 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-09 14:09:21 -0800 |
commit | 88c03eb5775546a2cae0d8cc9025ef7969b23485 (patch) | |
tree | f646c28a2ac2496c8790516543f41a3c515a685e /Documentation/RelNotes/1.6.3.3.txt | |
parent | git-compat-util: suppress unavoidable Apple-specific deprecation warnings (diff) | |
download | tgif-88c03eb5775546a2cae0d8cc9025ef7969b23485.tar.xz |
git-compat-util: do not step on MAC_OS_X_VERSION_MIN_REQUIRED
MAC_OS_X_VERSION_MIN_REQUIRED may be defined by the builder to a
specific version in order to produce compatible binaries for a
particular system. Blindly defining it to MAC_OS_X_VERSION_10_6
is bad.
Additionally MAC_OS_X_VERSION_10_6 will not be defined on older
systems and should AvailabilityMacros.h be included on such as
system an error will result. However, using the explicit value
of 1060 (which is what MAC_OS_X_VERSION_10_6 is defined to) does
not solve the problem.
The changes that introduced stepping on MAC_OS_X_VERSION_MIN were
made in b195aa00 (git-compat-util: suppress unavoidable
Apple-specific deprecation warnings) to avoid deprecation
warnings.
Instead of blindly setting MAC_OS_X_VERSION_MIN to 1060 change
the definition of DEPRECATED_ATTRIBUTE to empty to avoid the
warnings. This preserves any MAC_OS_X_VERSION_MIN_REQUIRED
setting while avoiding the warnings as intended by b195aa00.
Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes/1.6.3.3.txt')
0 files changed, 0 insertions, 0 deletions