mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-22 11:12:06 +03:00
* boxes.c: Include "../vfs/gc.h" if VFS is used.
* hotlist.c: Likewise. * key.c: Likewise. * main.c: Likewise. * setup.c: Likewise.
This commit is contained in:
parent
b33f2cbb47
commit
12d78ba8df
@ -1,5 +1,11 @@
|
|||||||
2003-11-07 Pavel Roskin <proski@gnu.org>
|
2003-11-07 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* boxes.c: Include "../vfs/gc.h" if VFS is used.
|
||||||
|
* hotlist.c: Likewise.
|
||||||
|
* key.c: Likewise.
|
||||||
|
* main.c: Likewise.
|
||||||
|
* setup.c: Likewise.
|
||||||
|
|
||||||
* view.c (free_file): Don't use check_error_pipe(), display
|
* view.c (free_file): Don't use check_error_pipe(), display
|
||||||
error messages in close_error_pipe().
|
error messages in close_error_pipe().
|
||||||
* utilunix.c (check_error_pipe): Remove, it's unused.
|
* utilunix.c (check_error_pipe): Remove, it's unused.
|
||||||
|
@ -55,6 +55,10 @@
|
|||||||
# include "../vfs/ftpfs.h"
|
# include "../vfs/ftpfs.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USE_VFS
|
||||||
|
#include "../vfs/gc.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
static int DISPLAY_X = 45, DISPLAY_Y = 14;
|
static int DISPLAY_X = 45, DISPLAY_Y = 14;
|
||||||
|
|
||||||
static Dlg_head *dd;
|
static Dlg_head *dd;
|
||||||
|
@ -67,7 +67,8 @@
|
|||||||
#define B_APPEND (B_USER + 6)
|
#define B_APPEND (B_USER + 6)
|
||||||
#define B_MOVE (B_USER + 7)
|
#define B_MOVE (B_USER + 7)
|
||||||
|
|
||||||
#ifdef USE_VFS
|
#ifdef USE_VFS
|
||||||
|
#include "../vfs/gc.h"
|
||||||
#define B_FREE_ALL_VFS (B_USER + 8)
|
#define B_FREE_ALL_VFS (B_USER + 8)
|
||||||
#define B_REFRESH_VFS (B_USER + 9)
|
#define B_REFRESH_VFS (B_USER + 9)
|
||||||
#endif
|
#endif
|
||||||
|
@ -39,6 +39,10 @@
|
|||||||
#include "win.h"
|
#include "win.h"
|
||||||
#include "cons.saver.h"
|
#include "cons.saver.h"
|
||||||
|
|
||||||
|
#ifdef USE_VFS
|
||||||
|
#include "../vfs/gc.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_TEXTMODE_X11_SUPPORT
|
#ifdef HAVE_TEXTMODE_X11_SUPPORT
|
||||||
#ifdef HAVE_GMODULE
|
#ifdef HAVE_GMODULE
|
||||||
#include <gmodule.h>
|
#include <gmodule.h>
|
||||||
|
@ -88,6 +88,10 @@
|
|||||||
#include "charsets.h"
|
#include "charsets.h"
|
||||||
#endif /* HAVE_CHARSET */
|
#endif /* HAVE_CHARSET */
|
||||||
|
|
||||||
|
#ifdef USE_VFS
|
||||||
|
#include "../vfs/gc.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "popt.h"
|
#include "popt.h"
|
||||||
|
|
||||||
/* When the modes are active, left_panel, right_panel and tree_panel */
|
/* When the modes are active, left_panel, right_panel and tree_panel */
|
||||||
|
@ -41,6 +41,10 @@
|
|||||||
#include "cmd.h"
|
#include "cmd.h"
|
||||||
#include "file.h" /* safe_delete */
|
#include "file.h" /* safe_delete */
|
||||||
|
|
||||||
|
#ifdef USE_VFS
|
||||||
|
#include "../vfs/gc.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_CHARSET
|
#ifdef HAVE_CHARSET
|
||||||
#include "charsets.h"
|
#include "charsets.h"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user