- Fix the build on -CURRENT by removing inline from public function definitions
This commit is contained in:
parent
7228b51cde
commit
8862c8e2b4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=231019
4 changed files with 82 additions and 0 deletions
15
games/lpairs/files/patch-lpairs-pairs.h
Normal file
15
games/lpairs/files/patch-lpairs-pairs.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
--- lpairs/pairs.h.orig 2005-09-27 18:02:58.000000000 +0400
|
||||
+++ lpairs/pairs.h 2009-03-25 22:04:25.000000000 +0300
|
||||
@@ -102,10 +102,10 @@
|
||||
void draw_button( Pairs *pairs, int map_x, int map_y, int type );
|
||||
|
||||
/* get map contents at position */
|
||||
-inline int get_map_cont( Pairs *pairs, int map_x, int map_y );
|
||||
+int get_map_cont( Pairs *pairs, int map_x, int map_y );
|
||||
|
||||
/* set map contents at position */
|
||||
-inline void set_map_cont( Pairs *pairs, int map_x, int map_y, int cont );
|
||||
+void set_map_cont( Pairs *pairs, int map_x, int map_y, int cont );
|
||||
|
||||
/* draw all buttons */
|
||||
void draw_all_buttons( Pairs *pairs, int type );
|
45
games/lpairs/files/patch-lpairs-sdl.h
Normal file
45
games/lpairs/files/patch-lpairs-sdl.h
Normal file
|
@ -0,0 +1,45 @@
|
|||
--- lpairs/sdl.h.orig 2001-03-16 21:43:22.000000000 +0300
|
||||
+++ lpairs/sdl.h 2009-03-25 22:04:45.000000000 +0300
|
||||
@@ -40,8 +40,8 @@
|
||||
SDL_Surface* load_surf(char *fname, int f);
|
||||
SDL_Surface* create_surf(int w, int h, int f);
|
||||
int disp_format(SDL_Surface *sur);
|
||||
-inline void lock_surf(SDL_Surface *sur);
|
||||
-inline void unlock_surf(SDL_Surface *sur);
|
||||
+void lock_surf(SDL_Surface *sur);
|
||||
+void unlock_surf(SDL_Surface *sur);
|
||||
void blit_surf(void);
|
||||
void alpha_blit_surf(int alpha);
|
||||
void fill_surf(int c);
|
||||
@@ -86,8 +86,8 @@
|
||||
Font* load_fixed_font(char *fname, int off, int len, int w);
|
||||
void free_font(Font *sfnt);
|
||||
int write_text(Font *sfnt, SDL_Surface *dest, int x, int y, char *str, int alpha);
|
||||
-inline void lock_font(Font *sfnt);
|
||||
-inline void unlock_font(Font *sfnt);
|
||||
+void lock_font(Font *sfnt);
|
||||
+void unlock_font(Font *sfnt);
|
||||
SDL_Rect last_write_rect(Font *fnt);
|
||||
int text_width(Font *fnt, char *str);
|
||||
|
||||
@@ -116,16 +116,16 @@
|
||||
void quit_sdl();
|
||||
int set_video_mode( int w, int h, int d, int f );
|
||||
void hardware_cap();
|
||||
-inline void refresh_screen( int x, int y, int w, int h );
|
||||
+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);
|
||||
void dim_screen(int steps, int delay, int trp);
|
||||
void undim_screen(int steps, int delay, int trp);
|
||||
int wait_for_key();
|
||||
void wait_for_click();
|
||||
-inline void lock_screen();
|
||||
-inline void unlock_screen();
|
||||
-inline void flip_screen();
|
||||
+void lock_screen();
|
||||
+void unlock_screen();
|
||||
+void flip_screen();
|
||||
|
||||
/* cursor */
|
||||
/* creates cursor */
|
11
games/xqf/files/patch-src-debug.h
Normal file
11
games/xqf/files/patch-src-debug.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- src/debug.h.orig 2004-01-01 15:41:10.000000000 +0300
|
||||
+++ src/debug.h 2009-03-25 22:03:41.000000000 +0300
|
||||
@@ -37,7 +37,7 @@
|
||||
void debug_int(const char* file, int line, const char* function, int level, const char* fmt, ...);
|
||||
void debug_cmd(int, char *[], char *, ...);
|
||||
void set_debug_level (int);
|
||||
-inline int get_debug_level (void);
|
||||
+int get_debug_level (void);
|
||||
|
||||
int debug_increase_indent(void);
|
||||
int debug_decrease_indent(void);
|
11
graphics/liblqr-1/files/patch-lqr-lqr_carver_priv.h
Normal file
11
graphics/liblqr-1/files/patch-lqr-lqr_carver_priv.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- lqr/lqr_carver_priv.h.orig 2008-11-01 04:42:18.000000000 +0300
|
||||
+++ lqr/lqr_carver_priv.h 2009-03-25 22:02:08.000000000 +0300
|
||||
@@ -204,7 +204,7 @@
|
||||
LqrRetVal lqr_carver_build_vsmap (LqrCarver * r, gint depth); /* visibility */
|
||||
|
||||
/* internal functions for maps computation */
|
||||
-inline gfloat lqr_carver_read (LqrCarver * r, gint x, gint y); /* read the average value at given point */
|
||||
+gfloat lqr_carver_read (LqrCarver * r, gint x, gint y); /* read the average value at given point */
|
||||
void lqr_carver_compute_e (LqrCarver * r, gint x, gint y); /* compute energy of point at c (fast) */
|
||||
void lqr_carver_update_emap (LqrCarver * r); /* update energy map after seam removal */
|
||||
void lqr_carver_update_mmap (LqrCarver * r); /* minpath */
|
Loading…
Reference in a new issue