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 /
Python-3.10.14 /
Misc /
Delete
Unzip
Name
Size
Permission
Date
Action
ACKS
29.19
KB
-rw-r--r--
2024-03-19 22:46
HISTORY
1.29
MB
-rw-r--r--
2024-03-19 22:46
NEWS
1.22
MB
-rw-r--r--
2024-03-19 22:46
Porting
63
B
-rw-r--r--
2024-03-19 22:46
README
1.44
KB
-rw-r--r--
2024-03-19 22:46
README.AIX
4.61
KB
-rw-r--r--
2024-03-19 22:46
README.coverity
845
B
-rw-r--r--
2024-03-19 22:46
README.valgrind
4.67
KB
-rw-r--r--
2024-03-19 22:46
SpecialBuilds.txt
4.02
KB
-rw-r--r--
2024-03-19 22:46
coverity_model.c
3.95
KB
-rw-r--r--
2024-03-19 22:46
gdbinit
4.85
KB
-rw-r--r--
2024-03-19 22:46
indent.pro
557
B
-rw-r--r--
2024-03-19 22:46
python-config.in
1.98
KB
-rw-r--r--
2024-03-19 22:46
python-config.sh
3.02
KB
-rw-r--r--
2025-06-04 09:17
python-config.sh.in
2.87
KB
-rw-r--r--
2024-03-19 22:46
python-embed.pc
316
B
-rw-r--r--
2025-06-04 09:17
python-embed.pc.in
310
B
-rw-r--r--
2024-03-19 22:46
python-wing3.wpr
555
B
-rwxr-xr-x
2024-03-19 22:46
python-wing4.wpr
835
B
-rwxr-xr-x
2024-03-19 22:46
python-wing5.wpr
835
B
-rwxr-xr-x
2024-03-19 22:46
python.man
18.48
KB
-rw-r--r--
2024-03-19 22:46
python.pc
289
B
-rw-r--r--
2025-06-04 09:17
python.pc.in
268
B
-rw-r--r--
2024-03-19 22:46
requirements-test.txt
15
B
-rw-r--r--
2024-03-19 22:46
stable_abi.txt
47.86
KB
-rw-r--r--
2024-03-19 22:46
svnmap.txt
4.09
MB
-rw-r--r--
2024-03-19 22:46
valgrind-python.supp
8.62
KB
-rw-r--r--
2024-03-19 22:46
vgrindefs
500
B
-rw-r--r--
2024-03-19 22:46
Save
Rename
#!/bin/sh # Keep this script in sync with python-config.in exit_with_usage () { echo "Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed" exit $1 } if [ "$1" = "" ] ; then exit_with_usage 1 fi # Returns the actual prefix where this script was installed to. installed_prefix () { RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) if which readlink >/dev/null 2>&1 ; then if readlink -f "$RESULT" >/dev/null 2>&1; then RESULT=$(readlink -f "$RESULT") fi fi echo $RESULT } prefix_real=$(installed_prefix "$0") # Use sed to fix paths from their built-to locations to their installed-to # locations. Keep prefix & exec_prefix using their original values in case # they are referenced in other configure variables, to prevent double # substitution, issue #22140. prefix="@prefix@" exec_prefix="@exec_prefix@" exec_prefix_real=${prefix_real} includedir=$(echo "@includedir@" | sed "s#$prefix#$prefix_real#") libdir=$(echo "@libdir@" | sed "s#$prefix#$prefix_real#") CFLAGS=$(echo "@CFLAGS@" | sed "s#$prefix#$prefix_real#") VERSION="@VERSION@" LIBM="@LIBM@" LIBC="@LIBC@" SYSLIBS="$LIBM $LIBC" ABIFLAGS="@ABIFLAGS@" LIBS="@LIBPYTHON@ @LIBS@ $SYSLIBS" LIBS_EMBED="-lpython${VERSION}${ABIFLAGS} @LIBS@ $SYSLIBS" BASECFLAGS="@BASECFLAGS@" LDLIBRARY="@LDLIBRARY@" OPT="@OPT@" PY_ENABLE_SHARED="@PY_ENABLE_SHARED@" LDVERSION="@LDVERSION@" LIBDEST=${prefix_real}/lib/python${VERSION} LIBPL=$(echo "@LIBPL@" | sed "s#$prefix#$prefix_real#") SO="@EXT_SUFFIX@" PYTHONFRAMEWORK="@PYTHONFRAMEWORK@" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PY_EMBED=0 # Scan for --help or unknown argument. for ARG in $* do case $ARG in --help) exit_with_usage 0 ;; --embed) PY_EMBED=1 ;; --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) ;; *) exit_with_usage 1 ;; esac done if [ $PY_EMBED = 1 ] ; then LIBS="$LIBS_EMBED" fi for ARG in "$@" do case "$ARG" in --prefix) echo "$prefix_real" ;; --exec-prefix) echo "$exec_prefix_real" ;; --includes) echo "$INCDIR $PLATINCDIR" ;; --cflags) echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" ;; --libs) echo "$LIBS" ;; --ldflags) LIBPLUSED= if [ "$PY_ENABLE_SHARED" = "0" ] ; then LIBPLUSED="-L$LIBPL" fi echo "$LIBPLUSED -L$libdir $LIBS" ;; --extension-suffix) echo "$SO" ;; --abiflags) echo "$ABIFLAGS" ;; --configdir) echo "$LIBPL" ;; esac done