diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-25 23:21:46 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-25 23:21:46 +0100 |
commit | 8d0e0cdadf726beab28ccdc7d69738c1534e1f74 (patch) | |
tree | 73eec58affb5ac0b6d8e97fb36e9f0beb11da00d /Config.in | |
parent | 9aa599dc9dc076f6fa6e4312e4750a703cf16450 (diff) | |
download | busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.gz busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.tar.bz2 busybox-w32-8d0e0cdadf726beab28ccdc7d69738c1534e1f74.zip |
move utmp.h include to libbb.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -284,10 +284,19 @@ config FEATURE_CLEAN_UP | |||
284 | Don't enable this unless you have a really good reason to clean | 284 | Don't enable this unless you have a really good reason to clean |
285 | things up manually. | 285 | things up manually. |
286 | 286 | ||
287 | config FEATURE_UTMP | ||
288 | bool "Support utmp file" | ||
289 | default y | ||
290 | help | ||
291 | The file /var/run/utmp is used to track who is currently logged in. | ||
292 | With this option on, certain applets (getty, login, telnetd etc) | ||
293 | will create and delete entries there. | ||
294 | "who" applet requires this option. | ||
295 | |||
287 | config FEATURE_WTMP | 296 | config FEATURE_WTMP |
288 | bool "Support wtmp file" | 297 | bool "Support wtmp file" |
289 | default y | 298 | default y |
290 | select FEATURE_UTMP | 299 | depends on FEATURE_UTMP |
291 | help | 300 | help |
292 | The file /var/run/wtmp is used to track when users have logged into | 301 | The file /var/run/wtmp is used to track when users have logged into |
293 | and logged out of the system. | 302 | and logged out of the system. |
@@ -295,15 +304,6 @@ config FEATURE_WTMP | |||
295 | will append new entries there. | 304 | will append new entries there. |
296 | "last" applet requires this option. | 305 | "last" applet requires this option. |
297 | 306 | ||
298 | config FEATURE_UTMP | ||
299 | bool "Support utmp file" | ||
300 | default y | ||
301 | help | ||
302 | The file /var/run/utmp is used to track who is currently logged in. | ||
303 | With this option on, certain applets (getty, login, telnetd etc) | ||
304 | will create and delete entries there. | ||
305 | "who" applet requires this option. | ||
306 | |||
307 | config FEATURE_PIDFILE | 307 | config FEATURE_PIDFILE |
308 | bool "Support writing pidfiles" | 308 | bool "Support writing pidfiles" |
309 | default y | 309 | default y |