Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
Makefile.gcov
1.71
KB
-rw-rw-r--
2022-10-31 11:36
Makefile.global
6.87
KB
-rw-rw-r--
2022-10-31 11:36
ax_check_compile_flag.m4
2.05
KB
-rw-rw-r--
2022-10-31 11:36
ax_func_which_gethostbyname_r.m4
5.89
KB
-rw-rw-r--
2022-10-31 11:36
ax_gcc_func_attribute.m4
8.22
KB
-rw-rw-r--
2022-10-31 11:36
config-stubs
372
B
-rwxrwxr-x
2022-10-31 11:36
config.guess
48.19
KB
-rwxrwxr-x
2022-10-31 11:36
config.sub
34.45
KB
-rwxrwxr-x
2022-10-31 11:36
genif.sh
1.22
KB
-rwxrwxr-x
2022-10-31 11:36
libtool.m4
224.92
KB
-rw-rw-r--
2022-10-31 11:36
ltmain.sh
195.05
KB
-rwxrwxr-x
2022-10-31 11:36
order_by_dep.awk
1.52
KB
-rw-rw-r--
2022-10-31 11:36
php.m4
70.83
KB
-rw-rw-r--
2022-10-31 11:36
php_cxx_compile_stdcxx.m4
17.22
KB
-rw-rw-r--
2022-10-31 11:36
pkg.m4
10.01
KB
-rw-rw-r--
2022-10-31 11:36
print_include.awk
122
B
-rw-rw-r--
2022-10-31 11:36
shtool
64.22
KB
-rwxrwxr-x
2022-10-31 11:36
Save
Rename
#!/bin/sh # # Generate internal functions file content based on the provided extensions. # # SYNOPSIS: # genif.sh <template> <extensions> # # ARGUMENTS: # template Path to internal functions template file. # extensions Space delimited list of provided extensions and their locations. # # ENVIRONMENT: # The following optional variables are supported: # # AWK Path to the awk program or its command name. # AWK=/path/to/awk genif.sh ... # # USAGE EXAMPLE: # AWK=nawk ./build/genif.sh ./main/internal_functions.c.in "date;ext/date spl;ext/spl" > ./main/internal_functions.c AWK=${AWK:-awk} template=$1 shift extensions="$@" if test -z "$template"; then echo "Please supply template." >&2 exit 1 fi header_list= olddir=$(pwd) # Go to project root. cd $(CDPATH= cd -- "$(dirname -- "$0")/../" && pwd -P) module_ptrs="$(echo $extensions | $AWK -f ./build/order_by_dep.awk)" for ext in $extensions; do ext_dir=$(echo "$ext" | cut -d ';' -f 2) header_list="$header_list $ext_dir/*.h*" done includes=$($AWK -f ./build/print_include.awk $header_list) cd $olddir cat $template | \ sed \ -e "s'@EXT_INCLUDE_CODE@'$includes'" \ -e "s'@EXT_MODULE_PTRS@'$module_ptrs'" \ -e 's/@NEWLINE@/\ /g'