changeset 591:78178b632f27

bugfix for package qt to work with the openssl-supported postgresql When building shared Qt plugin qsqlpsql, we have explicitly link to libraries on which -lpq depends. Recently added OpenSSL support to PostgreSQL adds a few more libraries.
author Mark Brand <mabrand@mabrand.nl>
date Sat, 12 Dec 2009 01:47:23 +0100
parents 6c39b5f524fd
children 525f5fd5a9ea
files src/qt-win32.patch
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/qt-win32.patch	Fri Dec 11 14:52:04 2009 +0100
+++ b/src/qt-win32.patch	Sat Dec 12 01:47:23 2009 +0100
@@ -660,7 +660,7 @@
  win32:!contains(LIBS, .*pq.* ) {
      !win32-g++:LIBS    *= -llibpq       
 -    win32-g++:LIBS *= -lpq	
-+    win32-g++:LIBS *= -lpq -lsecur32
++    win32-g++:LIBS *= -lpq -lssl -lcrypto -lsecur32 -lgdi32
      LIBS    *= -lws2_32 -ladvapi32
  }