summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-11-19 18:57:32 +0100
committerAustin Foxley <austinf@cetoncorp.com>2009-11-22 11:19:58 -0800
commit13ab416ebb5eca12e7f5356378e9b0873dc8db24 (patch)
tree8905a7b544fb526b9e392d1f42af4781bce71d3e
parentb82792a4103e9186c0cbb7912401c323d6c9293b (diff)
downloaduClibc-alpine-13ab416ebb5eca12e7f5356378e9b0873dc8db24.tar.bz2
uClibc-alpine-13ab416ebb5eca12e7f5356378e9b0873dc8db24.tar.xz
fix misplaced HAS_LIBUTIL knob
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r--extra/Configs/Config.in49
1 files changed, 25 insertions, 24 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index 419a568ac..b7cc8f377 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -725,6 +725,31 @@ config UCLIBC_HAS_GETPT
def_bool y
endif
+config UCLIBC_HAS_LIBUTIL
+ bool "Provide libutil library and functions"
+ depends on UCLIBC_HAS_PTY
+ default n
+ help
+ Provide a libutil library.
+ This non-standard conforming library provides the following
+ utility functions:
+
+ forkpty(): combines openpty(), fork(2), and login_tty() to
+ create a new process operating in a pseudo-terminal.
+ login(): write utmp and wtmp entries
+ login_tty(): prepares for a login on the tty fd by creating a
+ new session, making fd the controlling terminal for
+ the calling process, setting fd to be the standard
+ input, output, and error streams of the current
+ process, and closing fd.
+ logout(): write utmp and wtmp entries
+ logwtmp(): constructs a utmp structure and calls updwtmp() to
+ append the structure to the utmp file.
+ openpty(): finds an available pseudo-terminal and returns
+ file descriptors for the master and slave
+
+ This library adds about 3k-4k to your system.
+
config UCLIBC_HAS_TM_EXTENSIONS
bool "Support 'struct tm' timezone extension fields"
default y
@@ -1197,30 +1222,6 @@ config UCLIBC_HAS_LIBNSL_STUB
help
Provide a dummy nsl library.
-config UCLIBC_HAS_LIBUTIL
- bool "Provide libutil library and functions"
- default n
- help
- Provide a libutil library.
- This non-standard conforming library provides the following
- utility functions:
-
- forkpty(): combines openpty(), fork(2), and login_tty() to
- create a new process operating in a pseudo-terminal.
- login(): write utmp and wtmp entries
- login_tty(): prepares for a login on the tty fd by creating a
- new session, making fd the controlling terminal for
- the calling process, setting fd to be the standard
- input, output, and error streams of the current
- process, and closing fd.
- logout(): write utmp and wtmp entries
- logwtmp(): constructs a utmp structure and calls updwtmp() to
- append the structure to the utmp file.
- openpty(): finds an available pseudo-terminal and returns
- file descriptors for the master and slave
-
- This library adds about 3k-4k to your system.
-
endif