Changeset 1059
- Timestamp:
- Sep 7, 2011, 4:35:48 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.cmd
r1058 r1059 1160 1160 if (G.CFG_GUI == "auto") then G.CFG_GUI = "yes" 1161 1161 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"1167 1162 if (G.CFG_ZLIB == "auto") then G.CFG_ZLIB = "yes" 1168 1163 … … 1183 1178 if (G.CFG_OPENSSL == "auto") then G.CFG_OPENSSL = "yes" 1184 1179 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 1185 1212 1186 1213 /* auto-detect SQL-modules support */
Note:
See TracChangeset
for help on using the changeset viewer.