Not only comment it out but removing it
[midnight-commander.git] / src / textconf.c
blobe51ed6d45d9cc886a02e5f672afe61de1261dc54
1 /* Print features specific for this build
3 Copyright (C) 2000, 2001, 2002, 2004, 2005, 2007
4 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #include <config.h>
23 #include <limits.h>
24 #include <stdio.h>
26 #include <sys/types.h>
28 #include "global.h"
29 #include "ecs.h"
31 #ifdef USE_VFS
32 static const char *const vfs_supported[] = {
33 "tarfs",
34 "extfs",
35 "cpiofs",
36 #ifdef USE_NETCODE
37 "ftpfs",
38 "fish",
39 # ifdef WITH_MCFS
40 "mcfs",
41 # endif
42 # ifdef WITH_SMBFS
43 "smbfs",
44 # endif
45 #endif /* USE_NETCODE */
46 #ifdef USE_EXT2FSLIB
47 "undelfs",
48 #endif
49 NULL
51 #endif /* USE_VFS */
54 static const char *const features[] = {
55 #ifdef USE_INTERNAL_EDIT
56 N_("With builtin Editor\n"),
57 #endif
59 #ifdef HAVE_SLANG
61 # ifdef HAVE_SYSTEM_SLANG
62 N_("Using system-installed S-Lang library"),
63 # else
64 N_("Using included S-Lang library"),
65 # endif
67 " ",
69 #ifdef USE_TERMCAP
70 N_("with termcap database"),
71 #else
72 N_("with terminfo database"),
73 #endif
75 #elif defined(USE_NCURSES)
76 N_("Using the ncurses library"),
77 #else
78 #error "Cannot compile mc without S-Lang or ncurses"
79 #endif /* !HAVE_SLANG && !USE_NCURSES */
81 "\n",
83 #ifdef HAVE_SUBSHELL_SUPPORT
84 # ifdef SUBSHELL_OPTIONAL
85 N_("With optional subshell support"),
86 # else
87 N_("With subshell support as default"),
88 # endif
89 "\n",
90 #endif /* !HAVE_SUBSHELL_SUPPORT */
92 #ifdef WITH_BACKGROUND
93 N_("With support for background operations\n"),
94 #endif
96 #ifdef HAVE_LIBGPM
97 N_("With mouse support on xterm and Linux console\n"),
98 #else
99 N_("With mouse support on xterm\n"),
100 #endif
102 #ifdef HAVE_TEXTMODE_X11_SUPPORT
103 N_("With support for X11 events\n"),
104 #endif
106 #ifdef ENABLE_NLS
107 N_("With internationalization support\n"),
108 #endif
110 #ifdef HAVE_CHARSET
111 N_("With multiple codepages support\n"),
112 #endif
114 NULL
117 void
118 show_version (int verbose)
120 int i;
122 printf (_("GNU Midnight Commander %s\n"), VERSION);
123 if (!verbose)
124 return;
126 #ifdef USE_VFS
127 printf (_("Virtual File System:"));
128 for (i = 0; vfs_supported[i]; i++) {
129 if (i == 0)
130 printf (" ");
131 else
132 printf (", ");
134 printf ("%s", _(vfs_supported[i]));
136 printf ("\n");
137 #endif /* USE_VFS */
139 for (i = 0; features[i]; i++)
140 printf ("%s", _(features[i]));
142 (void)printf("Data types:");
143 #define TYPE_INFO(T) \
144 (void)printf(" %s %d", #T, (int) (CHAR_BIT * sizeof(T)))
145 TYPE_INFO(char);
146 TYPE_INFO(int);
147 TYPE_INFO(long);
148 TYPE_INFO(void *);
149 TYPE_INFO(off_t);
150 TYPE_INFO(ecs_char);
151 #undef TYPE_INFO
152 (void)printf("\n");