Skip to content

Commit

Permalink
build: Fix windows configure when using --with-qt-libdir
Browse files Browse the repository at this point in the history
fixes #4630

Github-Pull: #4633
  • Loading branch information
ntrgn authored and laanwj committed Aug 5, 2014
1 parent 8d0d512 commit 9ce0774
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/m4/bitcoin_qt.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ce0774

Please sign in to comment.