Changeset 576


Ignore:
Timestamp:
Feb 18, 2010, 1:39:37 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

configure.cmd: Enabled printing by default.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/README.OS2

    r542 r576  
    4646
    4747      http://unix.os2site.com/pub/binary/make/make-3_81beta1-bin-static.zip
     48
     49
     50
     51
     52
     53
     54
     55
     56
     57
    4858
    4959  - LxLite 1.3.3 or above (not tested) if you want Qt DLLs and application
     
    90100      set PATH=D:\Coding\Qt4\bin;%PATH%
    91101      set BEGINLIBPATH=D:\Coding\Qt4\bin;%BEGINLIBPATH%
     102
     103
     104
     105
     106
     107
     108
     109
     110
     111
     112
     113
     114
     115
    92116
    93117Note that the QTDIR environment variable used by previous Qt versions is not
     
    317341
    318342
     343
     344
     345
     346
     347
     348
     349
     350
     351
     352
     353
     354
     355
     356
     357
     358
     359
     360
    319361CURRENT LIMITATIONS
    320362
     
    368410     relevant parts of code so they should still build.
    369411
    370   9. No QAssistant, no printer support (QT_NO_PRINTER and QT_NO_PRINTDIALOG are
    371      defined). No IPV6 support in the network module (QT_NO_IPV6 is defined).
     412  9. No QAssistant
     413     defined).
    372414
    373415  See the project roadmap for more information on the current progress and
  • trunk/configure.cmd

    r565 r576  
    4545    "QT_NO_TABLET",
    4646    "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"
    4948
    5049G.QT_DEFAULT_BUILD_PARTS = "libs tools qmake" /* examples demos docs translations */
     
    271270    G.CFG_DECORATION_PLUGIN_AVAILABLE = ""
    272271    G.CFG_DECORATION_PLUGIN = ""
     272
     273
    273274/* @todo do we really need this?
    274     G.CFG_NIS = "auto"
    275     G.CFG_CUPS = "auto"
    276275    G.CFG_ICONV = "auto"
    277276    G.CFG_GLIB = "auto"
     
    593592    call SetEnv "QMAKE_EXEPACK_POST_FLAGS", G.QMAKE_EXEPACK_POST_FLAGS
    594593
     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
    595623    /*--------------------------------------------------------------------------
    596624     post process QT_INSTALL_* variables
     
    10611089        G.QT_CONFIG = Join(G.QT_CONFIG, "system-zlib")
    10621090
    1063 /* @todo do we really need this?
     1091    if (G.CFG_CUPS == "yes") then
     1092        G.QT_CONFIG = Join(G.QT_CONFIG, "cups")
    10641093    if (G.CFG_NIS == "yes") then
    10651094        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?
    10681097    if (G.CFG_ICONV == "yes") then
    10691098        G.QT_CONFIG = Join(G.QT_CONFIG, "iconv")
     
    12411270     * to be included in the build key */
    12421271    DEFS = ""
     1272
    12431273    do i = 1 to words(G.D_FLAGS)
    12441274        opt = strip(word(G.D_FLAGS, i))
     
    13901420        G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_GRAPHICSSYSTEM_OPENGL")
    13911421
     1422
     1423
     1424
     1425
     1426
    13921427    /* X11/Unix/Mac only configs */
    13931428/* @todo detect what's actually relevant
    1394     if (G.CFG_CUPS == "no") then
    1395         G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_CUPS")
    13961429    if (G.CFG_ICONV == "no") then
    13971430        G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_ICONV")
     
    14141447    if (G.CFG_NAS == "no") then
    14151448        G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_NAS")
    1416     if (G.CFG_NIS == "no") then
    1417         G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_NIS")
    14181449    if (G.CFG_OPENSSL == "linked") then
    14191450        G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_LINKED_OPENSSL")
     
    16201651        call lineout qmake_cache_new, 'OPENSSL_LIBS = -lssl -lcrypto'
    16211652
     1653
     1654
     1655
     1656
     1657
     1658
     1659
     1660
    16221661    /* dump the qmake spec */
     1662
    16231663    if (DirExists(G.OutPath"\mkspecs\"G.XPLATFORM)) then
    16241664       call lineout qmake_cache_new, 'QMAKESPEC = $$QT_BUILD_TREE\mkspecs\'G.XPLATFORM
     
    17091749    call SaySay "Graphics System ..... "G.CFG_GRAPHICS_SYSTEM
    17101750    call SaySay "Accessibility ....... "G.CFG_ACCESSIBILITY
     1751
     1752
    17111753/* @todo do we really need this?
    17121754    call SaySay "IPv6 support ........ "G.CFG_IPV6
    17131755    call SaySay "IPv6 ifname support . "G.CFG_IPV6IFNAME
    17141756    call SaySay "getifaddrs support .. "G.CFG_GETIFADDRS
    1715     call SaySay "NIS support ......... "G.CFG_NIS
    1716     call SaySay "CUPS support ........ "G.CFG_CUPS
    17171757    call SaySay "Iconv support ....... "G.CFG_ICONV
    17181758    call SaySay "Glib support ........ "G.CFG_GLIB
     
    19261966 utility functions
    19271967------------------------------------------------------------------------------*/
     1968
     1969
     1970
     1971
     1972
     1973
     1974
     1975
     1976
     1977
     1978
     1979
     1980
     1981
     1982
     1983
     1984
     1985
     1986
     1987
     1988
     1989
     1990
     1991
     1992
     1993
     1994
     1995
     1996
    19281997
    19291998MaxLen: procedure expose (Globals)
Note: See TracChangeset for help on using the changeset viewer.