]> granicus.if.org Git - libevent/commitdiff
build: do not disable deprecation warnings on macOS
authorPierce Lopez <pierce.lopez@gmail.com>
Sat, 4 Jul 2020 19:55:22 +0000 (15:55 -0400)
committerPierce Lopez <pierce.lopez@gmail.com>
Sat, 4 Jul 2020 20:01:41 +0000 (16:01 -0400)
this was for using openssl-0.9.8 included in macOS 10.7 - 10.12,
but it is long since time you really should not use that openssl

CMakeLists.txt
configure.ac

index a76c714ffa2501f4578a403fdc66176fce9995e5..960e2e1e6c0fc83591e9db66dd649806092640f6 100644 (file)
@@ -325,9 +325,8 @@ if (${GNUC})
 endif()
 
 if (APPLE)
-    # Get rid of deprecated warnings for OpenSSL on OSX 10.7 and greater.
+    # Clang on macOS emits warnings for each directory specified which isn't used
     add_compiler_flags(
-        -Wno-error=deprecated-declarations
         -Qunused-arguments
     )
 endif()
index 1b647ed8a1310494a14eb97f3c4aebf88f2a5c22..fb813306b6700a38295bb2ea00926eda427ca311 100644 (file)
@@ -900,9 +900,6 @@ if test x$enable_gcc_warnings != xno && test "$GCC" = "yes"; then
             dnl Clang on macOS emits warnings for each directory specified which
             dnl isn't "used", generating a lot of build noise.
             CFLAGS="$CFLAGS -Qunused-arguments"
-            dnl macOS Lion started deprecating the system OpenSSL. Let's just
-            dnl disable all deprecation warnings on macOS; but do so only for GCC.
-            CFLAGS="$CFLAGS -Wno-deprecated-declarations"
         ;;
     esac
   fi