mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 04:22:34 +03:00
Move src/cons.saver into src/consaver/* subdir
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
parent
545cb0a194
commit
862652bd1b
@ -575,6 +575,7 @@ misc/skins/Makefile
|
|||||||
misc/mc.ext
|
misc/mc.ext
|
||||||
|
|
||||||
src/Makefile
|
src/Makefile
|
||||||
|
src/consaver/Makefile
|
||||||
src/editor/Makefile
|
src/editor/Makefile
|
||||||
src/viewer/Makefile
|
src/viewer/Makefile
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
#include "src/main.h"
|
#include "src/main.h"
|
||||||
#include "src/layout.h" /* winch_flag, mc_refresh() */
|
#include "src/layout.h" /* winch_flag, mc_refresh() */
|
||||||
#include "src/cons.saver.h"
|
#include "src/consaver/cons.saver.h"
|
||||||
|
|
||||||
|
|
||||||
#ifdef HAVE_TEXTMODE_X11_SUPPORT
|
#ifdef HAVE_TEXTMODE_X11_SUPPORT
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
#include "lib/global.h"
|
#include "lib/global.h"
|
||||||
#include "tty.h" /* tty_gotoyx, tty_print_char */
|
#include "tty.h" /* tty_gotoyx, tty_print_char */
|
||||||
#include "win.h"
|
#include "win.h"
|
||||||
#include "src/cons.saver.h" /* console_flag */
|
#include "src/consaver/cons.saver.h" /* console_flag */
|
||||||
|
|
||||||
/*** global variables **************************************************/
|
/*** global variables **************************************************/
|
||||||
|
|
||||||
|
@ -4,6 +4,17 @@ if USE_EDIT
|
|||||||
SUBDIRS += editor
|
SUBDIRS += editor
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
AM_CPPFLAGS = -DDATADIR=\""$(pkgdatadir)/"\" \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
-DSYSCONFDIR=\""$(sysconfdir)/@PACKAGE@/"\"
|
||||||
|
|
||||||
|
|
||||||
|
if CONS_SAVER
|
||||||
|
SUBDIRS += consaver
|
||||||
|
AM_CPPFLAGS += -DSAVERDIR=\""$(pkglibexecdir)"\"
|
||||||
|
endif
|
||||||
|
|
||||||
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
|
AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
|
||||||
|
|
||||||
localedir = $(datadir)/locale
|
localedir = $(datadir)/locale
|
||||||
@ -11,24 +22,10 @@ pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|||||||
|
|
||||||
bin_PROGRAMS = mc mcmfmt
|
bin_PROGRAMS = mc mcmfmt
|
||||||
|
|
||||||
|
|
||||||
if CONS_SAVER
|
|
||||||
pkglibexec_PROGRAMS = cons.saver
|
|
||||||
AM_CPPFLAGS = -DDATADIR=\""$(pkgdatadir)/"\" -DLOCALEDIR=\""$(localedir)"\" \
|
|
||||||
-DSAVERDIR=\""$(pkglibexecdir)"\" \
|
|
||||||
-DSYSCONFDIR=\""$(sysconfdir)/@PACKAGE@/"\"
|
|
||||||
else
|
|
||||||
AM_CPPFLAGS = -DDATADIR=\""$(pkgdatadir)/"\" \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\" \
|
|
||||||
-DSYSCONFDIR=\""$(sysconfdir)/@PACKAGE@/"\"
|
|
||||||
endif
|
|
||||||
|
|
||||||
noinst_PROGRAMS = man2hlp
|
noinst_PROGRAMS = man2hlp
|
||||||
|
|
||||||
mcmfmt_SOURCES = mfmt.c
|
mcmfmt_SOURCES = mfmt.c
|
||||||
|
|
||||||
cons_saver_SOURCES = cons.saver.c
|
|
||||||
|
|
||||||
man2hlp_SOURCES = man2hlp.c
|
man2hlp_SOURCES = man2hlp.c
|
||||||
|
|
||||||
man2hlp_LDADD = \
|
man2hlp_LDADD = \
|
||||||
@ -67,7 +64,7 @@ SRC_mc_widgets = \
|
|||||||
wtools.c wtools.h
|
wtools.c wtools.h
|
||||||
|
|
||||||
SRC_mc_conssaver = \
|
SRC_mc_conssaver = \
|
||||||
cons.handler.c cons.saver.h
|
cons.handler.c consaver/cons.saver.h
|
||||||
|
|
||||||
SRC_mc_options = \
|
SRC_mc_options = \
|
||||||
learn.c learn.h \
|
learn.c learn.h \
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
#include "hotlist.h" /* hotlist_cmd() */
|
#include "hotlist.h" /* hotlist_cmd() */
|
||||||
#include "tree.h" /* tree_chdir() */
|
#include "tree.h" /* tree_chdir() */
|
||||||
#include "subshell.h" /* use_subshell */
|
#include "subshell.h" /* use_subshell */
|
||||||
#include "cons.saver.h" /* console_flag */
|
#include "consaver/cons.saver.h" /* console_flag */
|
||||||
#include "dialog.h" /* Widget */
|
#include "dialog.h" /* Widget */
|
||||||
#include "wtools.h" /* message() */
|
#include "wtools.h" /* message() */
|
||||||
#include "main.h" /* change_panel() */
|
#include "main.h" /* change_panel() */
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
#include "lib/skin.h" /* tty_set_normal_attrs */
|
#include "lib/skin.h" /* tty_set_normal_attrs */
|
||||||
#include "lib/tty/win.h"
|
#include "lib/tty/win.h"
|
||||||
|
|
||||||
#include "cons.saver.h"
|
#include "consaver/cons.saver.h"
|
||||||
|
|
||||||
signed char console_flag = 0;
|
signed char console_flag = 0;
|
||||||
|
|
||||||
|
9
src/consaver/Makefile.am
Normal file
9
src/consaver/Makefile.am
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||||
|
|
||||||
|
pkglibexec_PROGRAMS = cons.saver
|
||||||
|
|
||||||
|
cons_saver_SOURCES = cons.saver.c
|
||||||
|
|
||||||
|
cons_saver_CFLAGS= -I$(top_srcdir) $(GLIB_CFLAGS) $(PCRE_CFLAGS)
|
||||||
|
|
||||||
|
cons_saver_LDADD = $(GLIB_LIBS) $(PCRE_LIBS)
|
@ -32,7 +32,7 @@
|
|||||||
#include "lib/tty/win.h"
|
#include "lib/tty/win.h"
|
||||||
|
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "cons.saver.h"
|
#include "consaver/cons.saver.h"
|
||||||
#include "subshell.h"
|
#include "subshell.h"
|
||||||
#include "layout.h"
|
#include "layout.h"
|
||||||
#include "dialog.h"
|
#include "dialog.h"
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
#include "ext.h"
|
#include "ext.h"
|
||||||
#include "execute.h"
|
#include "execute.h"
|
||||||
#include "history.h"
|
#include "history.h"
|
||||||
#include "cons.saver.h"
|
#include "consaver/cons.saver.h"
|
||||||
#include "layout.h"
|
#include "layout.h"
|
||||||
#include "lib/search.h"
|
#include "lib/search.h"
|
||||||
#include "src/viewer/mcviewer.h"
|
#include "src/viewer/mcviewer.h"
|
||||||
|
@ -66,7 +66,7 @@
|
|||||||
/* Needed for the extern declarations of integer parameters */
|
/* Needed for the extern declarations of integer parameters */
|
||||||
#include "dir.h"
|
#include "dir.h"
|
||||||
#include "panel.h" /* The Panel widget */
|
#include "panel.h" /* The Panel widget */
|
||||||
#include "cons.saver.h"
|
#include "consaver/cons.saver.h"
|
||||||
#include "layout.h"
|
#include "layout.h"
|
||||||
#include "info.h" /* The Info widget */
|
#include "info.h" /* The Info widget */
|
||||||
#include "src/viewer/mcviewer.h" /* The view widget */
|
#include "src/viewer/mcviewer.h" /* The view widget */
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
#include "option.h"
|
#include "option.h"
|
||||||
#include "tree.h"
|
#include "tree.h"
|
||||||
#include "treestore.h"
|
#include "treestore.h"
|
||||||
#include "cons.saver.h"
|
#include "consaver/cons.saver.h"
|
||||||
#include "subshell.h"
|
#include "subshell.h"
|
||||||
#include "setup.h" /* save_setup() */
|
#include "setup.h" /* save_setup() */
|
||||||
#include "boxes.h" /* sort_box() */
|
#include "boxes.h" /* sort_box() */
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
#include "panel.h" /* current_panel */
|
#include "panel.h" /* current_panel */
|
||||||
#include "wtools.h" /* query_dialog() */
|
#include "wtools.h" /* query_dialog() */
|
||||||
#include "main.h" /* do_update_prompt() */
|
#include "main.h" /* do_update_prompt() */
|
||||||
#include "cons.saver.h" /* handle_console() */
|
#include "consaver/cons.saver.h" /* handle_console() */
|
||||||
#include "subshell.h"
|
#include "subshell.h"
|
||||||
|
|
||||||
#ifndef WEXITSTATUS
|
#ifndef WEXITSTATUS
|
||||||
|
Loading…
Reference in New Issue
Block a user