Skip to content

Commit

Permalink
configure.ac: support the use of bundled libraries when available
Browse files Browse the repository at this point in the history
  • Loading branch information
meebey committed Jun 27, 2023
1 parent abc9870 commit c3b4646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ AC_SUBST(XBUILD_FLAGS)

# Required Libraries

if test "x$(uname)" != "xDarwin"; then
if test "x$(uname)" != "xDarwin" -a ! -e lib/log4net.dll; then
PKG_CHECK_MODULES([LOG4NET], [log4net])
AM_CONDITIONAL([BUNDLE_LOG4NET], false)
else
Expand All @@ -286,7 +286,7 @@ else
fi

nini_files=
if test "x$(uname)" != "xDarwin"; then
if test "x$(uname)" != "xDarwin" -a ! -e lib/Nini.dll; then
PKG_CHECK_EXISTS([nini-1.1], FOUND_NINI=yes, FOUND_NINI=no)
if test "x$FOUND_NINI" = "xyes"; then
nini_files=`pkg-config --variable=Libraries nini-1.1`
Expand Down

0 comments on commit c3b4646

Please sign in to comment.