Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 487512 | Differences between
and this patch

Collapse All | Expand All

(-)a/INSTALL (+2 lines)
Lines 51-56 TRANSDIR_MERKAARTOR=<path> - where will the Merkaartor translations be installe Link Here
51
TRANSDIR_SYSTEM=<path>      - where your global Qt translation directory is
51
TRANSDIR_SYSTEM=<path>      - where your global Qt translation directory is
52
NODEBUG=1                   - release target
52
NODEBUG=1                   - release target
53
NOUSEWEBKIT                 - disable use of WebKit (Yahoo adapter)
53
NOUSEWEBKIT                 - disable use of WebKit (Yahoo adapter)
54
SYSTEM_QTSA                 - use system copy of qtsingleapplication instead of internal
55
SYSTEM_QUAZIP               - use system copy of quazip instead of internal
54
56
55
57
56
3. Run your build tool, make for posix like systems, nmake for
58
3. Run your build tool, make for posix like systems, nmake for
(-)a/src/src.pro (-6 / +11 lines)
Lines 6-16 include (Config.pri) Link Here
6
#Custom config
6
#Custom config
7
include(Custom.pri)
7
include(Custom.pri)
8
8
9
include(../3rdparty/qtsingleapplication-2.6_1-opensource/src/qtsingleapplication.pri)
9
isEmpty(SYSTEM_QTSA) {
10
DEFINES += QUAZIP_STATIC
10
  include(../3rdparty/qtsingleapplication-2.6_1-opensource/src/qtsingleapplication.pri)
11
include(../3rdparty/quazip-0.7/quazip.pri)
11
} else {
12
12
  CONFIG += qtsingleapplication
13
#LIBS += -lquazip
13
}
14
isEmpty(SYSTEM_QUAZIP) {
15
  DEFINES += QUAZIP_STATIC
16
  include(../3rdparty/quazip-0.7/quazip.pri)
17
} else {
18
  LIBS += -lquazip
19
}
14
20
15
#Qt Version
21
#Qt Version
16
QT_VERSION = $$[QT_VERSION]
22
QT_VERSION = $$[QT_VERSION]
17
- 

Return to bug 487512