comparison audacious/main.c @ 1936:60934ccc817d trunk

[svn] - per bug #605, remove GNOME VFS.
author nenolod
date Sun, 05 Nov 2006 02:29:47 -0800
parents 6b4116c34489
children 1d9c1026d9f8
comparison
equal deleted inserted replaced
1935:2fb61f0bd143 1936:60934ccc817d
139 FALSE, /* use effect plugins */ 139 FALSE, /* use effect plugins */
140 FALSE, /* always on top */ 140 FALSE, /* always on top */
141 FALSE, /* sticky */ 141 FALSE, /* sticky */
142 FALSE, /* no playlist advance */ 142 FALSE, /* no playlist advance */
143 FALSE, /* stop after current song */ 143 FALSE, /* stop after current song */
144 #ifdef HAVE_GNOME_VFS
145 FALSE, /* refresh file list - should be unneeded with VFS */
146 #else
147 TRUE, /* refresh file list */ 144 TRUE, /* refresh file list */
148 #endif
149 TRUE, /* UNUSED (smooth title scrolling) */ 145 TRUE, /* UNUSED (smooth title scrolling) */
150 TRUE, /* use playlist metadata */ 146 TRUE, /* use playlist metadata */
151 TRUE, /* warn about unplayables */ 147 TRUE, /* warn about unplayables */
152 FALSE, /* use \ as directory delimiter */ 148 FALSE, /* use \ as directory delimiter */
153 FALSE, /* random skin on play */ 149 FALSE, /* random skin on play */
389 static GSList * 385 static GSList *
390 get_feature_list(void) 386 get_feature_list(void)
391 { 387 {
392 GSList *features = NULL; 388 GSList *features = NULL;
393 389
394 #ifdef HAVE_GNOME_VFS
395 features = g_slist_append(features, "GNOME VFS");
396 #endif
397
398 #ifdef HAVE_GCONF 390 #ifdef HAVE_GCONF
399 features = g_slist_append(features, "GConf"); 391 features = g_slist_append(features, "GConf");
400 #endif 392 #endif
401 393
402 return features; 394 return features;