Changeset 47


Ignore:
Timestamp:
Jun 24, 2009, 10:08:00 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

configure.cmd: Enable GIF image format by default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r46 r47  
    777777
    778778    /* enable all image formats and ZLIB by default */
     779    if (G.CFG_GIF == "auto")    then G.CFG_GIF = "yes"
    779780    if (G.CFG_TIFF == "auto")   then G.CFG_TIFF = "yes"
    780781    if (G.CFG_PNG == "auto")    then G.CFG_PNG = "yes"
     
    13541355             * ifdefs to override the global defines in a project */
    13551356            cfgdNeg = ""
    1356             if (StartsWith(cfg, "QT_NO_")) then
     1357            if (StartsWith(cfgd, "QT_NO_")) then
    13571358                /* QT_NO_option can be forcefully turned on by QT_option */
    1358                 cfgdNeg = "QT_"substr(cfg, 7)
    1359             else if (StartsWith(cfg, "QT_")) then
     1359                cfgdNeg = "QT_"substr(cfgd, 7)
     1360            else if (StartsWith(cfgd, "QT_")) then
    13601361                /* QT_option can be forcefully turned off by QT_NO_option */
    1361                 cfgdNeg = "QT_NO_"substr(cfg, 4)
     1362                cfgdNeg = "QT_NO_"substr(cfgd, 4)
    13621363            if (cfgdNeg == "") then
    13631364                call charout qconfig_h_new,,
Note: See TracChangeset for help on using the changeset viewer.