OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-crt-php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/05/2025 10:51:54 AM
rwxr-xr-x
📄
.clang-format
1.67 KB
03/05/2025 10:51:52 AM
rw-r--r--
📄
.clang-format-ignore
54 bytes
03/05/2025 10:51:52 AM
rw-r--r--
📁
.git
-
03/05/2025 10:55:02 AM
rwxr-xr-x
📄
.gitattributes
570 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📁
.github
-
03/05/2025 10:53:49 AM
rwxr-xr-x
📄
.gitignore
4.17 KB
03/05/2025 10:51:53 AM
rw-r--r--
📄
.gitmodules
107 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
CODE_OF_CONDUCT.md
313 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
CONTRIBUTING.md
3.29 KB
03/05/2025 10:51:53 AM
rw-r--r--
📄
LICENSE
10.08 KB
03/05/2025 10:51:53 AM
rw-r--r--
📄
Makefile.frag
3.12 KB
03/05/2025 10:51:53 AM
rw-r--r--
📄
Makefile.frag.w32
1.39 KB
03/05/2025 10:51:53 AM
rw-r--r--
📄
NOTICE
68 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
README.md
4.56 KB
03/05/2025 10:51:54 AM
rw-r--r--
📄
builder.json
813 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
composer.json
988 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
config.m4
1.16 KB
03/05/2025 10:51:53 AM
rw-r--r--
📄
config.w32
681 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📁
crt
-
03/05/2025 10:53:49 AM
rwxr-xr-x
📁
dev-scripts
-
03/05/2025 10:52:27 AM
rwxr-xr-x
📁
ext
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
format-check.sh
495 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
gen_api.php
476 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
gen_stub.php
65.19 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
php-win.ini
81 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📄
php.ini
29 bytes
03/05/2025 10:51:53 AM
rw-r--r--
📁
src
-
03/05/2025 10:55:02 AM
rwxr-xr-x
📁
tests
-
05/19/2025 10:07:16 AM
rwxr-xr-x
Editing: config.m4
Close
dnl dnl * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. dnl * SPDX-License-Identifier: Apache-2.0. dnl PHP_ARG_WITH(awscrt, for AWS Common Runtime support, [ --with-awscrt Include awscrt support]) if test "$PHP_AWSCRT" != "no"; then # force lib paths to be absolute, or PHP will mangle them cwd=`pwd` # Enable s2n and libcrypto for non-darwin UNIX if uname -a | grep -i darwin > /dev/null 2>&1; then platform_tls_libs="" else platform_tls_libs="-ls2n -lcrypto" fi CRT_LIBPATHS="-L${cwd}/build/install/lib -L${cwd}/build/install/lib64" CRT_LIBS="-laws-crt-ffi -laws-c-auth -laws-c-http -laws-c-io -laws-c-cal -laws-c-compression -laws-checksums -laws-c-sdkutils -laws-c-common ${platform_tls_libs}" PHP_ADD_INCLUDE(${cwd}/build/install/include) PHP_EVAL_LIBLINE([$CRT_LIBPATHS $CRT_LIBS], AWSCRT_SHARED_LIBADD) # Shoves the linker line into the Makefile PHP_SUBST(AWSCRT_SHARED_LIBADD) # Sources for the PHP extension itself AWSCRT_SOURCES=ext/awscrt.c PHP_NEW_EXTENSION(awscrt, $AWSCRT_SOURCES, $ext_shared) PHP_ADD_MAKEFILE_FRAGMENT fi