__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh
# Copyright 2001, 2002, 2003 by the Massachusetts Institute of Technology.
# All Rights Reserved.
#
# Export of this software from the United States of America may
# require a specific license from the United States Government.
# It is the responsibility of any person or organization contemplating
# export to obtain such a license before exporting.
#
# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
# distribute this software and its documentation for any purpose and
# without fee is hereby granted, provided that the above copyright
# notice appear in all copies and that both that copyright notice and
# this permission notice appear in supporting documentation, and that
# the name of M.I.T. not be used in advertising or publicity pertaining
# to distribution of the software without specific, written prior
# permission. Furthermore if you modify this software you must label
# your software as modified software and not distribute it in such a
# fashion that it might be confused with the original M.I.T. software.
# M.I.T. makes no representations about the suitability of
# this software for any purpose. It is provided "as is" without express
# or implied warranty.
#
#
# Configurable parameters set by autoconf
version_string="Kerberos 5 release 1.20.1"
CC=${CC-cc}
tripple=`$CC -print-multiarch 2>/dev/null|| ( $CC -dumpmachine | sed 's/-pc//' )`
if [ x$tripple = x ]; then
echo >&2 Failed to find installation architecture
exit 2
fi
prefix=/usr
exec_prefix=${prefix}
includedir=/usr/include/mit-krb5
libdir=/usr/lib/${tripple}/mit-krb5
CC_LINK='$(CC) $(PROG_LIBPATH) $(PROG_RPATH_FLAGS) $(CFLAGS) $(LDFLAGS)'
KDB5_DB_LIB=
LDFLAGS='-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro'
RPATH_FLAG=''
PROG_RPATH_FLAGS=''
PTHREAD_CFLAGS='-pthread'
DL_LIB=''
DEFCCNAME='FILE:/tmp/krb5cc_%{uid}'
DEFKTNAME='FILE:/etc/krb5.keytab'
DEFCKTNAME='FILE:/etc/krb5/user/%{euid}/client.keytab'
LIBS='-lkeyutils -lresolv '
GEN_LIB=
# Defaults for program
library=krb5
# Some constants
vendor_string="Massachusetts Institute of Technology"
# Process arguments
# Yes, we are sloppy, library specifications can come before options
while test $# != 0; do
case $1 in
--all)
do_all=1
;;
--cflags)
do_cflags=1
;;
--defccname)
do_defccname=1
;;
--defcktname)
do_defcktname=1
;;
--defktname)
do_defktname=1
;;
--deps) # historically a no-op
;;
--exec-prefix)
do_exec_prefix=1
;;
--help)
do_help=1
;;
--libs)
do_libs=1
;;
--prefix)
do_prefix=1
;;
--vendor)
do_vendor=1
;;
--version)
do_version=1
;;
krb5)
library=krb5
;;
gssapi)
library=gssapi
;;
gssrpc)
library=gssrpc
;;
kadm-client)
library=kadm_client
;;
kadm-server)
library=kadm_server
;;
kdb)
library=kdb
;;
*)
echo "$0: Unknown option \`$1' -- use \`--help' for usage"
exit 1
esac
shift
done
# If required options - provide help
if test -z "$do_all" -a -z "$do_version" -a -z "$do_vendor" -a \
-z "$do_prefix" -a -z "$do_vendor" -a -z "$do_exec_prefix" -a \
-z "$do_defccname" -a -z "$do_defktname" -a -z "$do_defcktname" -a \
-z "$do_cflags" -a -z "$do_libs"; then
do_help=1
fi
if test -n "$do_help"; then
echo "Usage: $0 [OPTIONS] [LIBRARIES]"
echo "Options:"
echo " [--help] Help"
echo " [--all] Display version, vendor, and various values"
echo " [--version] Version information"
echo " [--vendor] Vendor information"
echo " [--prefix] Kerberos installed prefix"
echo " [--exec-prefix] Kerberos installed exec_prefix"
echo " [--defccname] Show built-in default ccache name"
echo " [--defktname] Show built-in default keytab name"
echo " [--defcktname] Show built-in default client keytab name"
echo " [--cflags] Compile time CFLAGS"
echo " [--deps] Include dependent libraries"
echo " [--libs] List libraries required to link [LIBRARIES]"
echo "Libraries:"
echo " krb5 Kerberos 5 application"
echo " gssapi GSSAPI application with Kerberos 5 bindings"
echo " gssrpc GSSAPI RPC application"
echo " kadm-client Kadmin client"
echo " kadm-server Kadmin server"
echo " kdb Application that accesses the kerberos database"
exit 0
fi
if test -n "$do_all"; then
all_exit=
do_version=1
do_prefix=1
do_exec_prefix=1
do_vendor=1
title_version="Version: "
title_prefix="Prefix: "
title_exec_prefix="Exec_prefix: "
title_vendor="Vendor: "
else
all_exit="exit 0"
fi
if test -n "$do_version"; then
echo "$title_version$version_string"
$all_exit
fi
if test -n "$do_vendor"; then
echo "$title_vendor$vendor_string"
$all_exit
fi
if test -n "$do_prefix"; then
echo "$title_prefix$prefix"
$all_exit
fi
if test -n "$do_exec_prefix"; then
echo "$title_exec_prefix$exec_prefix"
$all_exit
fi
if test -n "$do_defccname"; then
echo "$DEFCCNAME"
$all_exit
fi
if test -n "$do_defktname"; then
echo "$DEFKTNAME"
$all_exit
fi
if test -n "$do_defcktname"; then
echo "$DEFCKTNAME"
$all_exit
fi
if test -n "$do_cflags"; then
if test x"$includedir" != x"/usr/include" ; then
echo "-isystem ${includedir}"
else
echo ''
fi
fi
if test -n "$do_libs"; then
libdirarg="-L$libdir"
# Ugly gross hack for our build tree
lib_flags=`echo $CC_LINK | sed -e 's/\$(CC)//' \
-e 's/\$(PURE)//' \
-e 's#\$(PROG_RPATH_FLAGS)#'"$PROG_RPATH_FLAGS"'#' \
-e 's#\$(PROG_RPATH)#'$libdir'#' \
-e 's#\$(PROG_LIBPATH)#'$libdirarg'#' \
-e 's#\$(RPATH_FLAG)#'"$RPATH_FLAG"'#' \
-e 's#\$(LDFLAGS)#'"$LDFLAGS"'#' \
-e 's#\$(PTHREAD_CFLAGS)#'"$PTHREAD_CFLAGS"'#' \
-e 's#\$(CFLAGS)##'`
if test $library = 'kdb'; then
lib_flags="$lib_flags -lkdb5 $KDB5_DB_LIB"
library=krb5
fi
if test $library = 'kadm_server'; then
lib_flags="$lib_flags -lkadm5srv_mit -lkdb5 $KDB5_DB_LIB"
library=gssrpc
fi
if test $library = 'kadm_client'; then
lib_flags="$lib_flags -lkadm5clnt_mit"
library=gssrpc
fi
if test $library = 'gssrpc'; then
lib_flags="$lib_flags -lgssrpc"
library=gssapi
fi
if test $library = 'gssapi'; then
lib_flags="$lib_flags -lgssapi_krb5"
library=krb5
fi
if test $library = 'krb5'; then
lib_flags="$lib_flags -lkrb5 -lk5crypto -lcom_err "
fi
# If we ever support a flag to generate output suitable for static
# linking, we would output "-lkrb5support $GEN_LIB $LIBS $DL_LIB"
# here.
echo $lib_flags
fi
exit 0
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| X11 | Folder | 0755 |
|
|
| aclocal-1.16 | File | 35.18 KB | 0755 |
|
| appstream-compose | File | 26.3 KB | 0755 |
|
| appstream-util | File | 106.3 KB | 0755 |
|
| appstreamcli | File | 138.23 KB | 0755 |
|
| autoconf | File | 14.85 KB | 0755 |
|
| autoheader | File | 8.82 KB | 0755 |
|
| autom4te | File | 32.69 KB | 0755 |
|
| automake-1.16 | File | 255.91 KB | 0755 |
|
| autoreconf | File | 26.3 KB | 0755 |
|
| autoscan | File | 16.77 KB | 0755 |
|
| autoupdate | File | 33.22 KB | 0755 |
|
| broadwayd | File | 130.21 KB | 0755 |
|
| bwrap | File | 70.47 KB | 0755 |
|
| c89-gcc | File | 428 B | 0755 |
|
| c99-gcc | File | 454 B | 0755 |
|
| cairo-trace | File | 2.95 KB | 0755 |
|
| compile_et | File | 1.32 KB | 0755 |
|
| corelist | File | 15.01 KB | 0755 |
|
| cpan | File | 8.16 KB | 0755 |
|
| cpan5.38-x86_64-linux-gnu | File | 8.18 KB | 0755 |
|
| curl-config | File | 6.5 KB | 0755 |
|
| dazzle-list-counters | File | 14.13 KB | 0755 |
|
| debconf | File | 2.8 KB | 0755 |
|
| debconf-apt-progress | File | 11.57 KB | 0755 |
|
| debconf-communicate | File | 623 B | 0755 |
|
| debconf-copydb | File | 1.68 KB | 0755 |
|
| debconf-escape | File | 668 B | 0755 |
|
| debconf-set-selections | File | 3.14 KB | 0755 |
|
| debconf-show | File | 1.78 KB | 0755 |
|
| derb | File | 26.73 KB | 0755 |
|
| desktop-file-edit | File | 92.49 KB | 0755 |
|
| desktop-file-install | File | 92.49 KB | 0755 |
|
| desktop-file-validate | File | 80.77 KB | 0755 |
|
| dh_autotools-dev_restoreconfig | File | 1.79 KB | 0755 |
|
| dh_autotools-dev_updateconfig | File | 1.81 KB | 0755 |
|
| dh_gstscancodecs | File | 3.17 KB | 0755 |
|
| dh_libva | File | 3.05 KB | 0755 |
|
| dumpsexp | File | 18.3 KB | 0755 |
|
| enc2xs | File | 40.96 KB | 0755 |
|
| encguess | File | 3 KB | 0755 |
|
| envsubst | File | 34.38 KB | 0755 |
|
| fc-cache | File | 22.21 KB | 0755 |
|
| fc-cat | File | 18.38 KB | 0755 |
|
| fc-conflist | File | 14.38 KB | 0755 |
|
| fc-list | File | 14.38 KB | 0755 |
|
| fc-match | File | 14.38 KB | 0755 |
|
| fc-pattern | File | 14.38 KB | 0755 |
|
| fc-query | File | 14.38 KB | 0755 |
|
| fc-scan | File | 14.38 KB | 0755 |
|
| fc-validate | File | 14.38 KB | 0755 |
|
| file | File | 30.6 KB | 0755 |
|
| fribidi | File | 26.99 KB | 0755 |
|
| gapplication | File | 22.21 KB | 0755 |
|
| gdbus | File | 54.21 KB | 0755 |
|
| gdbus-codegen | File | 2.04 KB | 0755 |
|
| gdk-pixbuf-csource | File | 14.15 KB | 0755 |
|
| gdk-pixbuf-pixdata | File | 14.13 KB | 0755 |
|
| gdk-pixbuf-thumbnailer | File | 18.21 KB | 0755 |
|
| genbrk | File | 18.63 KB | 0755 |
|
| gencat | File | 26.44 KB | 0755 |
|
| gencfu | File | 14.59 KB | 0755 |
|
| gencnval | File | 26.47 KB | 0755 |
|
| gendict | File | 26.63 KB | 0755 |
|
| genrb | File | 159.77 KB | 0755 |
|
| getconf | File | 26.36 KB | 0755 |
|
| getent | File | 38.72 KB | 0755 |
|
| gettext | File | 34.38 KB | 0755 |
|
| gettext.sh | File | 5.07 KB | 0755 |
|
| gettextize | File | 41.28 KB | 0755 |
|
| gi-compile-repository | File | 211.1 KB | 0755 |
|
| gi-decompile-typelib | File | 46.13 KB | 0755 |
|
| gi-inspect-typelib | File | 14.13 KB | 0755 |
|
| gio | File | 106.23 KB | 0755 |
|
| gio-querymodules | File | 18.13 KB | 0755 |
|
| gjs | File | 22.62 KB | 0755 |
|
| gjs-console | File | 22.62 KB | 0755 |
|
| glib-compile-schemas | File | 224.05 KB | 0755 |
|
| gobject-query | File | 14.14 KB | 0755 |
|
| gpgrt-config | File | 16.04 KB | 0755 |
|
| gresource | File | 26.13 KB | 0755 |
|
| gsettings | File | 30.21 KB | 0755 |
|
| gsound-play | File | 18.21 KB | 0755 |
|
| gtk-encode-symbolic-svg | File | 22.24 KB | 0755 |
|
| gtk-launch | File | 18.29 KB | 0755 |
|
| gtk-query-settings | File | 14.13 KB | 0755 |
|
| gtk-update-icon-cache | File | 38.57 KB | 0755 |
|
| gtk4-broadwayd | File | 150.22 KB | 0755 |
|
| gtk4-encode-symbolic-svg | File | 10.87 MB | 0755 |
|
| gtk4-image-tool | File | 38.23 KB | 0755 |
|
| gtk4-launch | File | 18.29 KB | 0755 |
|
| gtk4-path-tool | File | 50.21 KB | 0755 |
|
| gtk4-query-settings | File | 14.13 KB | 0755 |
|
| gtk4-rendernode-tool | File | 46.13 KB | 0755 |
|
| hb-info | File | 54.18 KB | 0755 |
|
| hb-shape | File | 54.18 KB | 0755 |
|
| hb-subset | File | 50.18 KB | 0755 |
|
| hb-view | File | 82.32 KB | 0755 |
|
| hmac256 | File | 18.7 KB | 0755 |
|
| iconv | File | 66.48 KB | 0755 |
|
| icuexportdata | File | 53.15 KB | 0755 |
|
| icuinfo | File | 14.48 KB | 0755 |
|
| ifnames | File | 4.08 KB | 0755 |
|
| instmodsh | File | 4.27 KB | 0755 |
|
| ispell-wrapper | File | 7.05 KB | 0755 |
|
| itstool | File | 67.8 KB | 0755 |
|
| js115 | File | 30.12 MB | 0755 |
|
| js115-config | File | 2.03 KB | 0755 |
|
| json-glib-format | File | 18.38 KB | 0755 |
|
| json-glib-validate | File | 14.29 KB | 0755 |
|
| json_pp | File | 4.88 KB | 0755 |
|
| krb5-config | File | 6.77 KB | 0755 |
|
| krb5-config.mit | File | 6.77 KB | 0755 |
|
| ldd | File | 5.26 KB | 0755 |
|
| libgcrypt-config | File | 4.52 KB | 0755 |
|
| libinput | File | 66.35 KB | 0755 |
|
| libnetcfg | File | 15.41 KB | 0755 |
|
| libpng-config | File | 2.41 KB | 0755 |
|
| libpng16-config | File | 2.41 KB | 0755 |
|
| libtool | File | 372.42 KB | 0755 |
|
| libtoolize | File | 133.2 KB | 0755 |
|
| libwacom-list-devices | File | 14.24 KB | 0755 |
|
| libwacom-list-local-devices | File | 22.29 KB | 0755 |
|
| libwacom-show-stylus | File | 6.39 KB | 0755 |
|
| libwacom-update-db | File | 10.02 KB | 0755 |
|
| locale | File | 49.63 KB | 0755 |
|
| localedef | File | 319.09 KB | 0755 |
|
| m4 | File | 238.37 KB | 0755 |
|
| makeconv | File | 50.75 KB | 0755 |
|
| mpicalc | File | 22.3 KB | 0755 |
|
| msgattrib | File | 26.38 KB | 0755 |
|
| msgcat | File | 26.38 KB | 0755 |
|
| msgcmp | File | 30.38 KB | 0755 |
|
| msgcomm | File | 26.38 KB | 0755 |
|
| msgconv | File | 22.38 KB | 0755 |
|
| msgen | File | 22.38 KB | 0755 |
|
| msgexec | File | 22.38 KB | 0755 |
|
| msgfilter | File | 34.38 KB | 0755 |
|
| msgfmt | File | 82.59 KB | 0755 |
|
| msggrep | File | 118.46 KB | 0755 |
|
| msginit | File | 66.39 KB | 0755 |
|
| msgmerge | File | 74.41 KB | 0755 |
|
| msgunfmt | File | 38.39 KB | 0755 |
|
| msguniq | File | 22.38 KB | 0755 |
|
| ngettext | File | 34.38 KB | 0755 |
|
| nspr-config | File | 2.57 KB | 0755 |
|
| nss-config | File | 2.37 KB | 0755 |
|
| opencv_annotation | File | 26.39 KB | 0755 |
|
| opencv_interactive-calibration | File | 102.48 KB | 0755 |
|
| opencv_model_diagnostics | File | 18.38 KB | 0755 |
|
| opencv_version | File | 26.47 KB | 0755 |
|
| opencv_visualisation | File | 46.47 KB | 0755 |
|
| opencv_waldboost_detector | File | 18.38 KB | 0755 |
|
| orc-bugreport | File | 22.31 KB | 0755 |
|
| orcc | File | 42.39 KB | 0755 |
|
| p11-kit | File | 214.45 KB | 0755 |
|
| pango-list | File | 18.13 KB | 0755 |
|
| pango-segmentation | File | 22.21 KB | 0755 |
|
| pango-view | File | 66.42 KB | 0755 |
|
| pcre-config | File | 2.29 KB | 0755 |
|
| pcre2-config | File | 1.93 KB | 0755 |
|
| perl | File | 3.83 MB | 0755 |
|
| perl5.38-x86_64-linux-gnu | File | 14.3 KB | 0755 |
|
| perl5.38.2 | File | 3.83 MB | 0755 |
|
| perlbug | File | 44.52 KB | 0755 |
|
| perldoc | File | 125 B | 0755 |
|
| perlivp | File | 10.61 KB | 0755 |
|
| perlthanks | File | 44.52 KB | 0755 |
|
| piconv | File | 8.16 KB | 0755 |
|
| pip | File | 225 B | 0755 |
|
| pip3 | File | 225 B | 0755 |
|
| pip3.12 | File | 225 B | 0755 |
|
| pipewire | File | 14.38 KB | 0755 |
|
| pipewire-aes67 | File | 14.38 KB | 0755 |
|
| pipewire-avb | File | 14.38 KB | 0755 |
|
| pipewire-pulse | File | 14.38 KB | 0755 |
|
| pkgconf | File | 44.11 KB | 0755 |
|
| pkgdata | File | 43.39 KB | 0755 |
|
| pldd | File | 22.44 KB | 0755 |
|
| pod2html | File | 3.95 KB | 0755 |
|
| pod2man | File | 18.46 KB | 0755 |
|
| pod2text | File | 12.8 KB | 0755 |
|
| pod2usage | File | 4.01 KB | 0755 |
|
| podchecker | File | 3.57 KB | 0755 |
|
| psl | File | 22.16 KB | 0755 |
|
| psl-make-dafsa | File | 22.21 KB | 0755 |
|
| ptar | File | 3.48 KB | 0755 |
|
| ptardiff | File | 2.58 KB | 0755 |
|
| ptargrep | File | 4.29 KB | 0755 |
|
| pw-cat | File | 138.38 KB | 0755 |
|
| pw-cli | File | 126.48 KB | 0755 |
|
| pw-config | File | 18.38 KB | 0755 |
|
| pw-dot | File | 38.38 KB | 0755 |
|
| pw-dsdplay | File | 138.38 KB | 0755 |
|
| pw-dump | File | 98.46 KB | 0755 |
|
| pw-encplay | File | 138.38 KB | 0755 |
|
| pw-link | File | 30.38 KB | 0755 |
|
| pw-loopback | File | 18.38 KB | 0755 |
|
| pw-metadata | File | 14.38 KB | 0755 |
|
| pw-mididump | File | 34.38 KB | 0755 |
|
| pw-midiplay | File | 138.38 KB | 0755 |
|
| pw-midirecord | File | 138.38 KB | 0755 |
|
| pw-mon | File | 94.42 KB | 0755 |
|
| pw-play | File | 138.38 KB | 0755 |
|
| pw-profiler | File | 26.38 KB | 0755 |
|
| pw-record | File | 138.38 KB | 0755 |
|
| pw-reserve | File | 26.38 KB | 0755 |
|
| pw-top | File | 86.38 KB | 0755 |
|
| py3compile | File | 13 KB | 0755 |
|
| py3versions | File | 12.52 KB | 0755 |
|
| python3.12 | File | 7.65 MB | 0755 |
|
| recode-sr-latin | File | 14.38 KB | 0755 |
|
| rsvg-convert | File | 15.14 MB | 0755 |
|
| secret-tool | File | 22.21 KB | 0755 |
|
| select-default-iwrap | File | 474 B | 0755 |
|
| session-migration | File | 22.15 KB | 0755 |
|
| shasum | File | 9.75 KB | 0755 |
|
| spa-acp-tool | File | 276.27 KB | 0755 |
|
| spa-inspect | File | 78.48 KB | 0755 |
|
| spa-json-dump | File | 18.3 KB | 0755 |
|
| spa-monitor | File | 14.48 KB | 0755 |
|
| spa-resample | File | 34.73 KB | 0755 |
|
| splain | File | 18.99 KB | 0755 |
|
| streamzip | File | 7.87 KB | 0755 |
|
| tzselect | File | 15.02 KB | 0755 |
|
| uconv | File | 54.68 KB | 0755 |
|
| update-desktop-database | File | 26.38 KB | 0755 |
|
| update-mime-database | File | 74.33 KB | 0755 |
|
| xdg-dbus-proxy | File | 58.15 KB | 0755 |
|
| xdg-user-dir | File | 234 B | 0755 |
|
| xdg-user-dirs-update | File | 26.23 KB | 0755 |
|
| xml2-config | File | 1.44 KB | 0755 |
|
| xmlcatalog | File | 22.3 KB | 0755 |
|
| xmllint | File | 78.95 KB | 0755 |
|
| zdump | File | 30.28 KB | 0755 |
|
| zipdetails | File | 68.55 KB | 0755 |
|