mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Updated to get latest aws-crt-ffi * Added implementation for signing_result * Added main thread queue and callback queueing to signing process * Updated to get support for date on signing_config_aws * added date support to SigningConfigAWS, fixed up reference issues on http message signing * Broke C code into separate files, moved common stuff to php_aws_crt.h * Use a unity build to make PHP do the right thing with our lib * Updated aws-crt-ffi to v0.1.3 to get sigv4 changes * Added CRT::isAvailable for safe runtime detection of CRT * Fixed up test resource safety, added tests to prove it * Added CI jobs for every version of PHP on linux (#26)
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
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 -l:libcrypto.a"
|
|
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-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
|