mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fix checks
This commit is contained in:
parent
97fe894f43
commit
f23d035e52
3 changed files with 13 additions and 0 deletions
|
@ -233,6 +233,7 @@ history_test_CFLAGS=\
|
|||
$(AM_CFLAGS)\
|
||||
$(glib_CFLAGS)\
|
||||
$(libsn_CFLAGS)\
|
||||
-DTHEME_DIR=\"${prefix}/share/rofi/themes/\"\
|
||||
-I$(top_srcdir)/include/\
|
||||
-I$(top_srcdir)/config/\
|
||||
-I$(top_builddir)/
|
||||
|
@ -258,6 +259,7 @@ textbox_test_CFLAGS=\
|
|||
$(GW_XCB_CFLAGS)\
|
||||
$(cairo_CFLAGS)\
|
||||
$(libsn_CFLAGS)\
|
||||
-DTHEME_DIR=\"${prefix}/share/rofi/themes/\"\
|
||||
-I$(top_srcdir)/include/\
|
||||
-I$(top_srcdir)/config/\
|
||||
-I$(top_builddir)/
|
||||
|
@ -397,6 +399,7 @@ helper_test_CFLAGS=\
|
|||
$(GW_XCB_CFLAGS)\
|
||||
$(cairo_CFLAGS)\
|
||||
$(libsn_CFLAGS)\
|
||||
-DTHEME_DIR=\"${prefix}/share/rofi/themes/\"\
|
||||
-I$(top_srcdir)/include/\
|
||||
-I$(top_srcdir)/config/\
|
||||
-I$(top_builddir)/
|
||||
|
|
|
@ -57,6 +57,11 @@ char * rofi_expand_path ( const char *path )
|
|||
{
|
||||
|
||||
}
|
||||
|
||||
char * helper_get_theme_path ( const char *file )
|
||||
{
|
||||
return g_strdup ( file );
|
||||
}
|
||||
void rofi_add_error_message ( GString *msg )
|
||||
{
|
||||
}
|
||||
|
|
|
@ -49,6 +49,11 @@ unsigned int test =0;
|
|||
abort ( ); \
|
||||
} \
|
||||
}
|
||||
|
||||
char * helper_get_theme_path ( const char *file )
|
||||
{
|
||||
return g_strdup ( file );
|
||||
}
|
||||
void config_parse_set_property ( const void *p )
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue