Fix checks

This commit is contained in:
Dave Davenport 2017-04-17 18:07:50 +02:00
parent 97fe894f43
commit f23d035e52
3 changed files with 13 additions and 0 deletions

View File

@ -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)/

View File

@ -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 )
{
}

View File

@ -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 )
{
}