summaryrefslogtreecommitdiffstats
path: root/mageia/dependencies/qt3/qt-3.2.3-fix-cupslib.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mageia/dependencies/qt3/qt-3.2.3-fix-cupslib.patch')
-rw-r--r--mageia/dependencies/qt3/qt-3.2.3-fix-cupslib.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/mageia/dependencies/qt3/qt-3.2.3-fix-cupslib.patch b/mageia/dependencies/qt3/qt-3.2.3-fix-cupslib.patch
new file mode 100644
index 000000000..5c3d5bdd3
--- /dev/null
+++ b/mageia/dependencies/qt3/qt-3.2.3-fix-cupslib.patch
@@ -0,0 +1,11 @@
+--- qt-x11-free-3.2.3/src/dialogs/qprintdialog.cpp-- 2004-04-28 14:29:11.943776549 +0200
++++ qt-x11-free-3.2.3/src/dialogs/qprintdialog.cpp 2004-04-28 14:30:22.202024626 +0200
+@@ -779,7 +779,7 @@ static char * parseCupsOutput( QListView
+ cups_dest_t * d;
+ QLibrary lib( "cups" );
+ typedef int (*CupsGetDests)(cups_dest_t **dests);
+- CupsGetDests _cupsGetDests = (CupsGetDests)lib.resolve( "cupsGetDests" );
++ CupsGetDests _cupsGetDests = (CupsGetDests)QLibrary::resolve( "libcups.so.2", "cupsGetDests" );
+ if ( _cupsGetDests ) {
+ nd = _cupsGetDests( &d );
+ if ( nd < 1 )