Configure run on Sun Jan 23 00:23:17 CET 2005 #include #include int main(int argc, char **argv) { unsigned char test[8] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88 }; signal(SIGBUS, exit); signal(SIGABRT, exit); signal(SIGSEGV, exit); if (*((unsigned int *)(test + 1)) != 0x55443322 && *((unsigned int *)(test + 1)) != 0x22334455) { return 1; } return 0; } g++ ./scummvm-conf.cpp -o ./scummvm-conf #include int main(void) { FLAC__seekable_stream_decoder_init( 0 ); return 0; } g++ ./scummvm-conf.cpp -o ./scummvm-conf -O2 -march=athlon-xp -pipe -w -ansi -W -Wno-unused-parameter -lFLAC -lm typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; #include int main(void) { /* mpeg2_state_t first appears in 0.4.0 */ mpeg2_state_t state; #ifdef MPEG2_RELEASE if (MPEG2_RELEASE >= MPEG2_VERSION(0, 3, 2)) return 0; #endif return 1; } g++ ./scummvm-conf.cpp -o ./scummvm-conf -O2 -march=athlon-xp -pipe -w -ansi -W -Wno-unused-parameter -lmpeg2