diff options
author | Michele Calgaro <[email protected]> | 2018-09-27 17:59:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-09-27 17:59:41 +0900 |
commit | 585fcc3d451e0aaa704c11a965fcfa4ba76c1a0c (patch) | |
tree | b4b549084449d6dffa3135bbef26f84dbbe36608 | |
parent | 977a33f90bdd1cd3637a2955bc4202ac829a4d11 (diff) | |
download | kstreamripper-585fcc3d451e0aaa704c11a965fcfa4ba76c1a0c.tar.gz kstreamripper-585fcc3d451e0aaa704c11a965fcfa4ba76c1a0c.zip |
qt -> tqt conversion:
QT_NO_ASCII_CAST -> TQT_NO_ASCII_CAST
QT_NO_STL -> TQT_NO_STL
QT_NO_COMPAT -> TQT_NO_COMPAT
QT_NO_TRANSLATION -> TQT_NO_TRANSLATION
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -154,7 +154,7 @@ for dir in dirs: # env['APPNAME'] = 'kvigor' ## Use this define if you are using the kde translation scheme (.po files) -env.Append( CPPFLAGS = ['-DQT_NO_TRANSLATION'] ) +env.Append( CPPFLAGS = ['-DTQT_NO_TRANSLATION'] ) ## Add this define if you want to use qthreads #env.Append( CPPFLAGS = ['-DTQT_THREAD_SUPPORT', '-D_REENTRANT'] ) @@ -163,7 +163,7 @@ env.Append( CPPFLAGS = ['-DQT_NO_TRANSLATION'] ) ## in generic.py automatically when you do scons configure debug=1 ## There are also many other defines : -### -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION +### -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -DTQT_NO_ASCII_CAST -DTQT_NO_STL -DTQT_NO_COMPAT -DTQT_NO_TRANSLATION # where are they documented ? if you know, mail tnagyemail-mail@yahoo@fr please ## Important : export the environment so that SConscript files can the |