keep original CFLAGS

This commit is contained in:
Omar Polo 2021-02-07 11:28:42 +00:00
parent eef0492e35
commit 809c4bd0f8
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -67,7 +67,7 @@ INSTALL="install"
# try to auto detect CFLAGS and LDFLAGS
if which pkg-config 2>/dev/null 1>&2; then
if pkg-config libtls; then
CFLAGS="$(pkg-config --cflags libtls)"
CFLAGS="${CFLAGS} $(pkg-config --cflags libtls)"
LDFLAGS="$(pkg-config --libs libtls)"
fi
if pkg-config openssl; then