Kaydet (Commit) 386d7762 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Avoid pointless warning when building experimental code anyway

Change-Id: Ied9a4fb4eed0a7fda8e6b1bd03a3dbc476797587
üst 3be8c227
...@@ -2732,22 +2732,24 @@ if test "$_os" = "Darwin"; then ...@@ -2732,22 +2732,24 @@ if test "$_os" = "Darwin"; then
esac esac
fi fi
case "$with_macosx_version_min_required" in if test "$BITNESS_OVERRIDE" == ""; then
10.4) case "$with_macosx_version_min_required" in
case "$with_macosx_sdk" in
10.4) 10.4)
case "$with_macosx_sdk" in
10.4)
;;
*)
AC_MSG_WARN([Building with a SDK > 10.4 possibly breaks 10.4 compatibility. Do not use for deliverable build until verified that it really works])
add_warning "Building with a SDK > 10.4 possibly breaks 10.4 compatibility. Do not use for deliverable build until verified that it really works"
;;
esac
;; ;;
*) *)
AC_MSG_WARN([Building with a SDK > 10.4 possibly breaks 10.4 compatibility. Do not use for deliverable build until verified that it really works]) AC_MSG_WARN([Building with a minimum version requirement > 10.4 breaks 10.4 compatibility. Do not use for deliverable build])
add_warning "Building with a SDK > 10.4 possibly breaks 10.4 compatibility. Do not use for deliverable build until verified that it really works" add_warning "Building with a minimum version requirement > 10.4 breaks 10.4 compatibility. Do not use for deliverable build"
;; ;;
esac esac
;; fi
*)
AC_MSG_WARN([Building with a minimum version requirement > 10.4 breaks 10.4 compatibility. Do not use for deliverable build])
add_warning "Building with a minimum version requirement > 10.4 breaks 10.4 compatibility. Do not use for deliverable build"
;;
esac
# If no CC and CXX environment vars, try to guess where the compiler is # If no CC and CXX environment vars, try to guess where the compiler is
if test -z "$save_CC"; then if test -z "$save_CC"; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment