Changeset 576
- Timestamp:
- Feb 18, 2010, 1:39:37 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.OS2
r542 r576 46 46 47 47 http://unix.os2site.com/pub/binary/make/make-3_81beta1-bin-static.zip 48 49 50 51 52 53 54 55 56 57 48 58 49 59 - LxLite 1.3.3 or above (not tested) if you want Qt DLLs and application … … 90 100 set PATH=D:\Coding\Qt4\bin;%PATH% 91 101 set BEGINLIBPATH=D:\Coding\Qt4\bin;%BEGINLIBPATH% 102 103 104 105 106 107 108 109 110 111 112 113 114 115 92 116 93 117 Note that the QTDIR environment variable used by previous Qt versions is not … … 317 341 318 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 319 361 CURRENT LIMITATIONS 320 362 … … 368 410 relevant parts of code so they should still build. 369 411 370 9. No QAssistant , no printer support (QT_NO_PRINTER and QT_NO_PRINTDIALOG are371 defined). No IPV6 support in the network module (QT_NO_IPV6 is defined).412 9. No QAssistant 413 defined). 372 414 373 415 See the project roadmap for more information on the current progress and -
trunk/configure.cmd
r565 r576 45 45 "QT_NO_TABLET", 46 46 "QT_NO_SYSTEMSEMAPHORE QT_NO_SHAREDMEMORY", 47 "QT_NO_IM QT_NO_ACCESSIBILITY QT_NO_IPV6", 48 "QT_NO_PRINTER QT_NO_PRINTDIALOG" 47 "QT_NO_IM QT_NO_ACCESSIBILITY QT_NO_IPV6" 49 48 50 49 G.QT_DEFAULT_BUILD_PARTS = "libs tools qmake" /* examples demos docs translations */ … … 271 270 G.CFG_DECORATION_PLUGIN_AVAILABLE = "" 272 271 G.CFG_DECORATION_PLUGIN = "" 272 273 273 274 /* @todo do we really need this? 274 G.CFG_NIS = "auto"275 G.CFG_CUPS = "auto"276 275 G.CFG_ICONV = "auto" 277 276 G.CFG_GLIB = "auto" … … 593 592 call SetEnv "QMAKE_EXEPACK_POST_FLAGS", G.QMAKE_EXEPACK_POST_FLAGS 594 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 595 623 /*-------------------------------------------------------------------------- 596 624 post process QT_INSTALL_* variables … … 1061 1089 G.QT_CONFIG = Join(G.QT_CONFIG, "system-zlib") 1062 1090 1063 /* @todo do we really need this? 1091 if (G.CFG_CUPS == "yes") then 1092 G.QT_CONFIG = Join(G.QT_CONFIG, "cups") 1064 1093 if (G.CFG_NIS == "yes") then 1065 1094 G.QT_CONFIG = Join(G.QT_CONFIG, "nis") 1066 if (G.CFG_CUPS == "yes") then 1067 G.QT_CONFIG = Join(G.QT_CONFIG, "cups") 1095 1096 /* @todo do we really need this? 1068 1097 if (G.CFG_ICONV == "yes") then 1069 1098 G.QT_CONFIG = Join(G.QT_CONFIG, "iconv") … … 1241 1270 * to be included in the build key */ 1242 1271 DEFS = "" 1272 1243 1273 do i = 1 to words(G.D_FLAGS) 1244 1274 opt = strip(word(G.D_FLAGS, i)) … … 1390 1420 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_GRAPHICSSYSTEM_OPENGL") 1391 1421 1422 1423 1424 1425 1426 1392 1427 /* X11/Unix/Mac only configs */ 1393 1428 /* @todo detect what's actually relevant 1394 if (G.CFG_CUPS == "no") then1395 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_CUPS")1396 1429 if (G.CFG_ICONV == "no") then 1397 1430 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_ICONV") … … 1414 1447 if (G.CFG_NAS == "no") then 1415 1448 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_NAS") 1416 if (G.CFG_NIS == "no") then1417 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_NIS")1418 1449 if (G.CFG_OPENSSL == "linked") then 1419 1450 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_LINKED_OPENSSL") …