OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
/
vendor
/
aws
/
aws-crt-php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/21/2024 10:01:20 AM
rwxr-xr-x
📄
.clang-format
1.67 KB
08/21/2024 10:01:18 AM
rw-r--r--
📄
.clang-format-ignore
54 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📁
.git
-
08/21/2024 10:04:15 AM
rwxr-xr-x
📄
.gitattributes
570 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📁
.github
-
08/21/2024 10:02:50 AM
rwxr-xr-x
📄
.gitignore
4.17 KB
08/21/2024 10:01:18 AM
rw-r--r--
📄
.gitmodules
107 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📄
CODE_OF_CONDUCT.md
313 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
CONTRIBUTING.md
3.29 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
LICENSE
10.08 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
Makefile.frag
3.12 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
Makefile.frag.w32
1.39 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
NOTICE
68 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
README.md
4.56 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
builder.json
813 bytes
08/21/2024 10:01:18 AM
rw-r--r--
📄
composer.json
988 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
config.m4
1.16 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
config.w32
681 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📁
crt
-
08/21/2024 10:02:50 AM
rwxr-xr-x
📁
dev-scripts
-
08/21/2024 10:01:27 AM
rwxr-xr-x
📁
ext
-
08/21/2024 10:01:28 AM
rwxr-xr-x
📄
format-check.sh
495 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
gen_api.php
476 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
gen_stub.php
65.22 KB
08/21/2024 10:01:19 AM
rw-r--r--
📄
php-win.ini
81 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📄
php.ini
29 bytes
08/21/2024 10:01:19 AM
rw-r--r--
📁
src
-
08/21/2024 10:04:16 AM
rwxr-xr-x
📁
tests
-
08/21/2024 10:01:29 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