Forgot to remove some more .s strings and do a rename in order to prevent compiler...
[midnight-commander.git] / src / textconf.c
blobfa7cb0e4d4550664709e07a388c6a7bd05f4e288
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 N_("Using system-installed S-Lang library"),
63 " ",
65 N_("with terminfo database"),
67 #elif defined(USE_NCURSES)
68 N_("Using the ncurses library"),
69 #else
70 #error "Cannot compile mc without S-Lang or ncurses"
71 #endif /* !HAVE_SLANG && !USE_NCURSES */
73 "\n",
75 #ifdef HAVE_SUBSHELL_SUPPORT
76 # ifdef SUBSHELL_OPTIONAL
77 N_("With optional subshell support"),
78 # else
79 N_("With subshell support as default"),
80 # endif
81 "\n",
82 #endif /* !HAVE_SUBSHELL_SUPPORT */
84 #ifdef WITH_BACKGROUND
85 N_("With support for background operations\n"),
86 #endif
88 #ifdef HAVE_LIBGPM
89 N_("With mouse support on xterm and Linux console\n"),
90 #else
91 N_("With mouse support on xterm\n"),
92 #endif
94 #ifdef HAVE_TEXTMODE_X11_SUPPORT
95 N_("With support for X11 events\n"),
96 #endif
98 #ifdef ENABLE_NLS
99 N_("With internationalization support\n"),
100 #endif
102 #ifdef HAVE_CHARSET
103 N_("With multiple codepages support\n"),
104 #endif
106 NULL
109 void
110 show_version (int verbose)
112 int i;
114 printf (_("GNU Midnight Commander %s\n"), VERSION);
115 if (!verbose)
116 return;
118 #ifdef USE_VFS
119 printf (_("Virtual File System:"));
120 for (i = 0; vfs_supported[i]; i++) {
121 if (i == 0)
122 printf (" ");
123 else
124 printf (", ");
126 printf ("%s", _(vfs_supported[i]));
128 printf ("\n");
129 #endif /* USE_VFS */
131 for (i = 0; features[i]; i++)
132 printf ("%s", _(features[i]));
134 (void)printf("Data types:");
135 #define TYPE_INFO(T) \
136 (void)printf(" %s %d", #T, (int) (CHAR_BIT * sizeof(T)))
137 TYPE_INFO(char);
138 TYPE_INFO(int);
139 TYPE_INFO(long);
140 TYPE_INFO(void *);
141 TYPE_INFO(off_t);
142 TYPE_INFO(ecs_char);
143 #undef TYPE_INFO
144 (void)printf("\n");