diff options
author | Pete Batard <pbatard@gmail.com> | 2010-01-14 01:29:12 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-01-14 01:29:12 +0000 |
commit | ff8fec009ecbdae5c488f784570639c054f9e778 (patch) | |
tree | 7a11b71ee119a40647a59c082b1d2fa5559599e5 | |
parent | 3d2f8edda5aa10ac06ae2671eaecbb8950d461b4 (diff) | |
download | libusb-ff8fec009ecbdae5c488f784570639c054f9e778.tar.gz |
svn r51: - Fix to use the proper pthread-win32 library name ('libpthreadGC2.a') with MinGW
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 01e0984..c1100f4 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ case $host in AC_SUBST(OS_WINDOWS) AC_MSG_RESULT([Windows]) backend="windows" - LIBS="-lpthread -lsetupapi -lole32" + LIBS="-lpthreadGC2 -lsetupapi -lole32" AM_LDFLAGS="" ;; *) |