Skip to content

Commit

Permalink
Test workaround for OpenSSL3
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Mar 25, 2020
1 parent 62d7d8c commit d9491b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ esac
# Test if versioned linking works
${CC} ${PKG_CFLAGS} src/tests/main.c ${PKG_LIBS_VERSIONED} -o src/main.exe 2>/dev/null
if [ $? -eq 0 ]; then PKG_LIBS="${PKG_LIBS_VERSIONED}"; fi

# Suppress opensslv3 warnings for now
if [ $SONAME -eq 3 ]; then
PKG_CFLAGS="$PKG_CFLAGS -DOPENSSL_SUPPRESS_DEPRECATED"
fi

fi #SONAME
fi #AUTOBREW

Expand Down

0 comments on commit d9491b5

Please sign in to comment.