Changeset 1059


Ignore:
Timestamp:
Sep 7, 2011, 4:35:48 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

OS/2: configure.cmd: Build image format plugins for shared Qt.

This is a regression of 4.7.3 (where the logic of selecting on how
to build support for image formats has been changed).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r1058 r1059  
    11601160    if (G.CFG_GUI == "auto")    then G.CFG_GUI = "yes"
    11611161
    1162     if (G.CFG_GIF == "auto")    then G.CFG_GIF = "yes"
    1163     if (G.CFG_TIFF == "auto")   then G.CFG_TIFF = "yes"
    1164     if (G.CFG_PNG == "auto")    then G.CFG_PNG = "yes"
    1165     if (G.CFG_JPEG == "auto")   then G.CFG_JPEG = "yes"
    1166     if (G.CFG_MNG == "auto")    then G.CFG_MNG = "yes"
    11671162    if (G.CFG_ZLIB == "auto")   then G.CFG_ZLIB = "yes"
    11681163
     
    11831178    if (G.CFG_OPENSSL == "auto")        then G.CFG_OPENSSL = "yes"
    11841179    if (G.CFG_DBUS == "auto")           then G.CFG_DBUS = "yes"
     1180
     1181    /* detect how jpeg should be built */
     1182    if (G.CFG_JPEG == "auto") then do
     1183        if (G.CFG_SHARED == "yes") then
     1184            G.CFG_JPEG = "plugin"
     1185        else
     1186            G.CFG_JPEG = "yes"
     1187    end
     1188
     1189    /* detect how gif should be built */
     1190    if (G.CFG_GIF == "auto") then do
     1191        if (G.CFG_SHARED == "yes") then
     1192            G.CFG_GIF = "plugin"
     1193        else
     1194            G.CFG_GIF = "yes"
     1195    end
     1196
     1197    /* detect how tiff should be built */
     1198    if (G.CFG_TIFF == "auto") then do
     1199        if (G.CFG_SHARED == "yes") then
     1200            G.CFG_TIFF = "plugin"
     1201        else
     1202            G.CFG_TIFF = "yes"
     1203    end
     1204
     1205    /* detect how mng should be built */
     1206    if (G.CFG_MNG == "auto") then do
     1207        if (G.CFG_SHARED == "yes") then
     1208            G.CFG_MNG = "plugin"
     1209        else
     1210            G.CFG_MNG = "yes"
     1211    end
    11851212
    11861213    /* auto-detect SQL-modules support */
Note: See TracChangeset for help on using the changeset viewer.