diff options
author | Will Andrews <will@FreeBSD.org> | 2001-02-04 04:43:14 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-02-04 04:43:14 +0000 |
commit | a29b48245893af789aa5115dde514b19153785d8 (patch) | |
tree | 4074580f8ff1da41c8c581b6ed3f0751374ef1d1 /devel/qt-designer/files/patch-ah | |
parent | The db2html utility depends on textproc/jade. (diff) |
Update QT2 to 2.2.4: Re-add USE_MESA, remove antialiasing patch, remove
default -j2 (but keep MAKE_JOBS var), restore old perl REs as soon as I'd
learned how to do multiple ones, remove QPL license file from packaging,
sync with newest KOI8-U/R stuff (not tested). The biggest bonus: split
QT Designer into its own port, and make the qt22/qt-designer pair a member
of the master-slave ports legion, hopefully to reduce redundancy as much
as possible. This should also save roughly 20 minutes of compile time on
a dual PIII-600 for those that don't need or want QT Designer. UIC is,
however, still installed/compiled by the default Qt 2.2.4 (as it _is_
required for other things e.g. KDE2).
USE_MESA may break KDE2. Hopefully, now that the port does install both
the threaded and non-threaded versions of QT, it won't. But until the
next release of KDE2, I'm not gonna bother testing to see.
USE_MESA repeatedly requested by: sobomax
Diffstat (limited to 'devel/qt-designer/files/patch-ah')
-rw-r--r-- | devel/qt-designer/files/patch-ah | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devel/qt-designer/files/patch-ah b/devel/qt-designer/files/patch-ah new file mode 100644 index 000000000000..1bf90ba1c6f2 --- /dev/null +++ b/devel/qt-designer/files/patch-ah @@ -0,0 +1,14 @@ +--- tools/designer/designer/helpdialogimpl.cpp 2000/11/18 19:37:35 1.1 ++++ tools/designer/designer/helpdialogimpl.cpp 2000/11/18 19:38:57 +@@ -569,9 +569,9 @@ + delete lst; + + +- QString manualdir = QString( getenv( "QTDIR" ) ) + "/tools/designer/manual/book1.html"; ++ QString manualdir = QT_PREFIX "/share/qt2/designer/manual/book1.html"; + if ( !QFile::exists( manualdir ) ) +- manualdir = QString( getenv( "QTDIR" ) ) + "/doc/html/designer/book1.html"; ++ manualdir = QT_PREFIX "/share/doc/qt2/html/designer/book1.html"; + QFile file( manualdir ); + if ( !file.open( IO_ReadOnly ) ) + return; |