Server IP : 103.119.228.120 / Your IP : 18.188.227.64 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/bin/sh # # Copyright (C) Internet Systems Consortium, Inc. ("ISC") # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # See the COPYRIGHT file distributed with this work for additional # information regarding copyright ownership. prefix=/usr exec_prefix=/usr exec_prefix_set= includedir=/usr/include/bind9 libdir_suffix= arch=$(uname -m) case $arch in x86_64 | amd64 | sparc64 | s390x | ppc64) libdir=/usr/lib64${libdir_suffix} sec_libdir=/usr/lib${libdir_suffix} ;; * ) libdir=/usr/lib${libdir_suffix} sec_libdir=/usr/lib64${libdir_suffix} ;; esac usage() { cat << EOF Usage: isc-config [OPTIONS] [LIBRARIES] Options: [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] Libraries: isc isccc isccfg dns lwres bind9 irs EOF exit $1 } if test $# -eq 0; then usage 1 1>&2 fi while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case "$1" in --prefix=*) prefix=$optarg if test "x$exec_prefix_set" = x ; then exec_prefix=$prefix exec_prefix_set=true fi ;; --prefix) echo_prefix=true ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=true ;; --exec-prefix) echo_exec_prefix=true ;; --version) echo VERSION=9.11.4-P2-RedHat-9.11.4-26.P2.el7_9.16.tuxcare.els4 exit 0 ;; --cflags) echo_cflags=true ;; --libs) echo_libs=true; ;; irs) libirs=true; libdns=true; libisccfg=true; libisc=true; ;; isc) libisc=true; ;; isccc) libisccc=true; libisc=true; ;; isccfg) libisccfg=true; libisc=true; ;; dns) libdns=true; libisc=true; ;; lwres) liblwres=true; ;; bind9) libdns=true; libisc=true; libisccfg=true; libbind9=true; ;; *) usage 1 1>&2 esac shift done if test x"$echo_prefix" = x"true" ; then echo $prefix fi if test x"$echo_exec_prefix" = x"true" ; then echo $exec_prefix fi if test x"$echo_cflags" = x"true"; then if test x"${exec_prefix_set}" = x"true"; then includes="-I${exec_prefix}/include" else includes="-I${includedir}" fi if test x"$libisc" = x"true"; then includes="$includes -D_REENTRANT -I/builddir/build/BUILD/bind-9.11.4-P2/build/unit/atf/include -DDIG_SIGCHASE -DDNS_RDATASET_MAX_RECORDS=1000 -DDNS_RBTDB_MAX_RTYPES=1000 -D_GNU_SOURCE " fi echo $includes fi if test x"$echo_libs" = x"true"; then if test x"${exec_prefix_set}" = x"true"; then libs="-L${exec_prefix}/lib" else if [ ! -x $libdir/libisc.so ] ; then if [ ! -x $sec_libdir/libisc.so ] ; then echo "Error: ISC libs not found in $libdir" if [ -d $sec_libdir ] ; then echo "Error: ISC libs not found in $sec_libdir" fi exit 1 fi libdir=$sec_libdir fi libs="-L${libdir}" fi if test x"$libirs" = x"true" ; then libs="$libs -lirs" fi if test x"$liblwres" = x"true" ; then libs="$libs -llwres" fi if test x"$libbind9" = x"true" ; then libs="$libs -lbind9" fi if test x"$libdns" = x"true" ; then libs="$libs -ldns -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcrypto" fi if test x"$libisccfg" = x"true" ; then libs="$libs -lisccfg" fi if test x"$libisccc" = x"true" ; then libs="$libs -lisccc" fi if test x"$libisc" = x"true" ; then libs="$libs -lisc -lcrypto" needothers=true fi if test x"$needothers" = x"true" ; then libs="$libs -ldl -lcap -lpthread -lm -lGeoIP -L/usr/lib -lxml2 -lz -lm -ldl" fi echo $libs fi