*** ./configure.ORIG Tue Mar 8 23:28:53 2011 --- ./configure Tue Mar 8 23:29:04 2011 *************** *** 11222,11228 **** fi - CFLAGS="$CFLAGS -Wall" { echo "$as_me:$LINENO: checking for main in -lm" >&5 --- 11222,11227 ---- *** ./src/tools.h.ORIG Tue Mar 8 23:43:17 2011 --- ./src/tools.h Tue Mar 8 23:43:46 2011 *************** *** 33,39 **** #define VEC_DIST( vec1, vec2 ) ( sqrt( ( vec1.x - vec2.x ) * ( vec1.x - vec2.x ) + ( vec1.y - vec2.y ) * ( vec1.y - vec2.y ) ) ) /* compares to strings and returns true if their first strlen(str1) chars are equal */ ! inline int strequal( char *str1, char *str2 ); /* delete lines */ void delete_lines( char **lines, int line_number ); --- 33,39 ---- #define VEC_DIST( vec1, vec2 ) ( sqrt( ( vec1.x - vec2.x ) * ( vec1.x - vec2.x ) + ( vec1.y - vec2.y ) * ( vec1.y - vec2.y ) ) ) /* compares to strings and returns true if their first strlen(str1) chars are equal */ ! int strequal( char *str1, char *str2 ); /* delete lines */ void delete_lines( char **lines, int line_number ); *************** *** 45,60 **** } Delay; /* set delay to ms milliseconds */ ! inline void delay_set( Delay *delay, int ms ); /* reset delay ( cur = 0 )*/ ! inline void delay_reset( Delay *delay ); /* check if time's out ( add ms milliseconds )and reset */ ! inline int delay_timed_out( Delay *delay, int ms ); /* set timer so that we have a time out next call of delay_timed_out() */ ! inline void delay_force_time_out( Delay *delay ); /* return distance betwteen to map positions */ int get_dist( int x1, int y1, int x2, int y2 ); --- 45,60 ---- } Delay; /* set delay to ms milliseconds */ ! void delay_set( Delay *delay, int ms ); /* reset delay ( cur = 0 )*/ ! void delay_reset( Delay *delay ); /* check if time's out ( add ms milliseconds )and reset */ ! int delay_timed_out( Delay *delay, int ms ); /* set timer so that we have a time out next call of delay_timed_out() */ ! void delay_force_time_out( Delay *delay ); /* return distance betwteen to map positions */ int get_dist( int x1, int y1, int x2, int y2 ); *** ./src/sdl.h.ORIG Tue Mar 8 23:44:07 2011 --- ./src/sdl.h Tue Mar 8 23:44:39 2011 *************** *** 132,138 **** char** get_mode_names( int *count ); int set_video_mode( Video_Mode mode ); void hardware_cap(); ! inline void refresh_screen( int x, int y, int w, int h ); void refresh_rects(); void add_refresh_rect(int x, int y, int w, int h); int wait_for_key(); --- 132,138 ---- char** get_mode_names( int *count ); int set_video_mode( Video_Mode mode ); void hardware_cap(); ! void refresh_screen( int x, int y, int w, int h ); void refresh_rects(); void add_refresh_rect(int x, int y, int w, int h); int wait_for_key(); *************** *** 148,155 **** SDL_Cursor* create_cursor( int width, int height, int hot_x, int hot_y, char *source ); /* timer */ ! inline int get_time(); ! inline void reset_timer(); #ifdef __cplusplus }; --- 148,155 ---- SDL_Cursor* create_cursor( int width, int height, int hot_x, int hot_y, char *source ); /* timer */ ! int get_time(); ! void reset_timer(); #ifdef __cplusplus }; *** ./src/Makefile.in.ORIG Tue Mar 8 23:48:08 2011 --- ./src/Makefile.in Tue Mar 8 23:48:25 2011 *************** *** 226,232 **** list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c hint.c \ parser.c ! ltris_LDADD = @mixer_flag@ EXTRA_DIST = sdl.c menu.c item.c manager.c value.c main.c audio.c event.c \ list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c \ sdl.h menu.h item.h manager.h value.h audio.h event.h list.h tools.h \ --- 226,232 ---- list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c hint.c \ parser.c ! ltris_LDADD = @mixer_flag@ -lintl EXTRA_DIST = sdl.c menu.c item.c manager.c value.c main.c audio.c event.c \ list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c \ sdl.h menu.h item.h manager.h value.h audio.h event.h list.h tools.h \