Server IP : 103.119.228.120 / Your IP : 3.144.235.141 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 # # Return information about the local GD library installation # # Modeled after pdflib-config # installation directories prefix=/usr exec_prefix=/usr libdir=`pkg-config gdlib --variable=libdir` includedir=/usr/include bindir=/usr/bin ldflags=`pkg-config gdlib --variable=ldflags` 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.34 ;; --majorversion) echo 2 ;; --minorversion) echo 0 ;; --revision) echo 34 ;; --ldflags) echo $ldflags ;; --libs) echo -lXpm -lX11 -ljpeg -lfontconfig -lfreetype -lpng -lz -lm ;; --cflags|--includes) echo -I/usr/include ;; --features) echo GD_XPM GD_JPEG GD_FONTCONFIG GD_FREETYPE GD_PNG GD_GIF GD_GIFANIM GD_OPENPOLYGON ;; --all) echo "GD library 2.0.34" echo "includedir: $includedir" echo "cflags: -I/usr/include" echo "ldflags: $ldflags" echo "libs: -lXpm -lX11 -ljpeg -lfontconfig -lfreetype -lpng -lz -lm " echo "libdir: $libdir" echo "features: GD_XPM GD_JPEG GD_FONTCONFIG GD_FREETYPE GD_PNG GD_GIF GD_GIFANIM GD_OPENPOLYGON" ;; *) usage 1 1>&2 ;; esac shift done