moved BB_BANNER to applets/version.c file: make kernel like version,
[platform/upstream/busybox.git] / libbb / messages.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  */
20
21 #include "busybox.h"
22 #include "libbb.h"
23
24 #ifdef L_full_version
25 #ifndef BB_EXTRA_VERSION
26 #define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_BT ")"
27 #else
28 #define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_EXTRA_VERSION ")"
29 #endif
30         const char * const libbb_msg_full_version = LIBBB_BANNER;
31 #endif
32 #ifdef L_memory_exhausted
33         const char * const bb_msg_memory_exhausted = "memory exhausted";
34 #endif
35 #ifdef L_invalid_date
36         const char * const bb_msg_invalid_date = "invalid date `%s'";
37 #endif
38 #ifdef L_io_error
39         const char * const bb_msg_io_error = "%s: input/output error -- %m";
40 #endif
41 #ifdef L_write_error
42         const char * const bb_msg_write_error = "Write Error";
43 #endif
44 #ifdef L_read_error
45         const char * const bb_msg_read_error = "Read Error";
46 #endif
47 #ifdef L_name_longer_than_foo
48         const char * const bb_msg_name_longer_than_foo = "Names longer than %d chars not supported.";
49 #endif
50 #ifdef L_unknown
51         const char * const bb_msg_unknown = "(unknown)";
52 #endif
53 #ifdef L_can_not_create_raw_socket
54         const char * const bb_msg_can_not_create_raw_socket = "can`t create raw socket";
55 #endif
56 #ifdef L_perm_denied_are_you_root
57         const char * const bb_msg_perm_denied_are_you_root = "permission denied. (are you root?)";
58 #endif
59 #ifdef L_msg_standard_input
60         const char * const bb_msg_standard_input = "standard input";
61 #endif
62 #ifdef L_msg_standard_output
63         const char * const bb_msg_standard_output = "standard output";
64 #endif
65
66 #ifdef L_passwd_file
67 #define PASSWD_FILE        "/etc/passwd"
68 const char * const bb_path_passwd_file = PASSWD_FILE;
69 #endif
70
71 #ifdef L_shadow_file
72 #define SHADOW_FILE        "/etc/shadow"
73 const char * const bb_path_shadow_file = SHADOW_FILE;
74 #endif
75
76 #ifdef L_group_file
77 #define GROUP_FILE         "/etc/group"
78 const char * const bb_path_group_file = GROUP_FILE;
79 #endif
80
81 #ifdef L_gshadow_file
82 #define GSHADOW_FILE       "/etc/gshadow"
83 const char * const bb_path_gshadow_file = GSHADOW_FILE;
84 #endif
85
86 #ifdef L_nologin_file
87 #define NOLOGIN_FILE       "/etc/nologin"
88 const char * const bb_path_nologin_file = NOLOGIN_FILE;
89 #endif
90
91 #ifdef L_securetty_file
92 #define SECURETTY_FILE     "/etc/securetty"
93 const char * const bb_path_securetty_file = SECURETTY_FILE;
94 #endif
95
96 #ifdef L_motd_file
97 #define MOTD_FILE          "/etc/motd"
98 const char * const bb_path_motd_file = MOTD_FILE;
99 #endif
100
101 #ifdef L_shell_file
102 const char * const bb_default_login_shell = LIBBB_DEFAULT_LOGIN_SHELL;
103 #endif
104
105 #ifdef L_bb_dev_null
106 const char * const bb_dev_null = "/dev/null";
107 #endif
108
109 #ifdef L_bb_common_bufsiz1
110 char bb_common_bufsiz1[BUFSIZ+1];
111 #endif