Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.110
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-5.15.0-25 /
scripts /
kconfig /
[ HOME SHELL ]
Name
Size
Permission
Action
lxdialog
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.gitignore
88
B
-rw-r--r--
Makefile
7.61
KB
-rw-r--r--
conf.c
20.01
KB
-rw-r--r--
confdata.c
22.93
KB
-rw-r--r--
expr.c
30.01
KB
-rw-r--r--
expr.h
9.47
KB
-rw-r--r--
gconf-cfg.sh
733
B
-rwxr-xr-x
gconf.c
38
KB
-rw-r--r--
gconf.glade
25.04
KB
-rw-r--r--
images.c
6.42
KB
-rw-r--r--
images.h
857
B
-rw-r--r--
internal.h
172
B
-rw-r--r--
lexer.l
8.97
KB
-rw-r--r--
list.h
3.66
KB
-rw-r--r--
lkc.h
3.95
KB
-rw-r--r--
lkc_proto.h
1.92
KB
-rw-r--r--
mconf-cfg.sh
1.41
KB
-rwxr-xr-x
mconf.c
27.19
KB
-rw-r--r--
menu.c
21.66
KB
-rw-r--r--
merge_config.sh
4.97
KB
-rwxr-xr-x
nconf-cfg.sh
1.32
KB
-rwxr-xr-x
nconf.c
37.85
KB
-rw-r--r--
nconf.gui.c
14.53
KB
-rw-r--r--
nconf.h
2
KB
-rw-r--r--
parser.y
15.24
KB
-rw-r--r--
preprocess.c
10.99
KB
-rw-r--r--
qconf-cfg.sh
594
B
-rwxr-xr-x
qconf.cc
43.41
KB
-rw-r--r--
qconf.h
6.4
KB
-rw-r--r--
streamline_config.pl
16.43
KB
-rwxr-xr-x
symbol.c
28.6
KB
-rw-r--r--
util.c
2.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mconf-cfg.sh
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 PKG="ncursesw" PKG2="ncurses" if [ -n "$(command -v pkg-config)" ]; then if pkg-config --exists $PKG; then echo cflags=\"$(pkg-config --cflags $PKG)\" echo libs=\"$(pkg-config --libs $PKG)\" exit 0 fi if pkg-config --exists $PKG2; then echo cflags=\"$(pkg-config --cflags $PKG2)\" echo libs=\"$(pkg-config --libs $PKG2)\" exit 0 fi fi # Check the default paths in case pkg-config is not installed. # (Even if it is installed, some distributions such as openSUSE cannot # find ncurses by pkg-config.) if [ -f /usr/include/ncursesw/ncurses.h ]; then echo cflags=\"-D_GNU_SOURCE -I/usr/include/ncursesw\" echo libs=\"-lncursesw\" exit 0 fi if [ -f /usr/include/ncurses/ncurses.h ]; then echo cflags=\"-D_GNU_SOURCE -I/usr/include/ncurses\" echo libs=\"-lncurses\" exit 0 fi # As a final fallback before giving up, check if $HOSTCC knows of a default # ncurses installation (e.g. from a vendor-specific sysroot). if echo '#include <ncurses.h>' | ${HOSTCC} -E - >/dev/null 2>&1; then echo cflags=\"-D_GNU_SOURCE\" echo libs=\"-lncurses\" exit 0 fi echo >&2 "*" echo >&2 "* Unable to find the ncurses package." echo >&2 "* Install ncurses (ncurses-devel or libncurses-dev" echo >&2 "* depending on your distribution)." echo >&2 "*" echo >&2 "* You may also need to install pkg-config to find the" echo >&2 "* ncurses installed in a non-default location." echo >&2 "*" exit 1
Close