From 92bea30e28f62ea4c5d335420e2a328ff64598bc Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Wed, 10 Aug 2011 19:22:41 +0200 Subject: Ignore deprecation warnings on OS X Starting with Lion, Apple decided to deprecate the system openssl. We can start requiring users to install their own openssl once OS X doesn't ship with it anymore. --- configure.in | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index aa2233d4eb..4e84298456 100644 --- a/configure.in +++ b/configure.in @@ -906,6 +906,15 @@ else enable_gcc_warnings_advisory=no fi +# OS X Lion started deprecating the system openssl. Let's just disable +# all deprecation warnings on OS X. +case "$host_os" in + + darwin*) + CFLAGS="$CFLAGS -Wno-deprecated-declarations" + ;; +esac + # Add some more warnings which we use in development but not in the # released versions. (Some relevant gcc versions can't handle these.) if test x$enable_gcc_warnings = xyes || test x$enable_gcc_warnings_advisory = xyes; then -- cgit v1.2.3-54-g00ecf