Ticket #2505: scummvm_configure.patch
File scummvm_configure.patch, 829 bytes (added by , 19 years ago) |
---|
-
scummvm/configure
old new 1319 1319 1320 1320 echo 1321 1321 echo "Creating config.h" 1322 1323 # Ugly hack to avoid int8_t conflict on Solaris 1324 # bug [ 1436178 ] Conflicting declaration of int8_t on Solaris 1325 case "$_host_os" in 1326 # For Solaris only 1327 solaris*) 1328 SIGNED="" 1329 ;; 1330 1331 # For all others 1332 *) 1333 SIGNED="signed" 1334 ;; 1335 esac 1336 # End ugly hack 1337 1338 1322 1339 cat > config.h << EOF 1323 1340 /* This file is automatically generated by configure */ 1324 1341 /* DO NOT EDIT MANUALLY */ … … 1338 1355 typedef unsigned $type_1_byte uint8; 1339 1356 typedef unsigned $type_2_byte uint16; 1340 1357 typedef unsigned $type_4_byte uint32; 1341 typedef signed$type_1_byte int8;1358 typedef $SIGNED $type_1_byte int8; 1342 1359 typedef signed $type_2_byte int16; 1343 1360 typedef signed $type_4_byte int32; 1344 1361