Browse Source

build: Fix windows configure when using --with-qt-libdir

fixes #4630

Github-Pull: #4633
metaverse
ntrgn 10 years ago
committed by Wladimir J. van der Laan
parent
commit
9ce0774aba
No known key found for this signature in database GPG Key ID: 74810B012346C9A6
  1. 5
      src/m4/bitcoin_qt.m4

5
src/m4/bitcoin_qt.m4

@ -357,6 +357,11 @@ AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG],[
])
BITCOIN_QT_CHECK([
LIBS=
if test x$qt_lib_path != x; then
LIBS="$LIBS -L$qt_lib_path"
fi
if test x$TARGET_OS == xwindows; then
AC_CHECK_LIB([imm32], [main],, BITCOIN_QT_FAIL(libimm32 not found))
fi

Loading…
Cancel
Save