4
0
Fork 0

add dylibs

This commit is contained in:
Alexander Postol 2024-09-20 00:40:12 +03:00
parent 066a7e4635
commit 82029df693
19 changed files with 28 additions and 0 deletions

BIN
bin/libbrotlicommon.1.dylib Normal file

Binary file not shown.

BIN
bin/libbrotlidec.1.dylib Normal file

Binary file not shown.

BIN
bin/libcrypto.1.1.dylib Normal file

Binary file not shown.

BIN
bin/libcrypto.3.dylib Normal file

Binary file not shown.

BIN
bin/libcurl.4.dylib Normal file

Binary file not shown.

BIN
bin/libidn2.0.dylib Normal file

Binary file not shown.

BIN
bin/libintl.8.dylib Normal file

Binary file not shown.

BIN
bin/liblber.2.dylib Normal file

Binary file not shown.

BIN
bin/libldap.2.dylib Normal file

Binary file not shown.

BIN
bin/libnghttp2.14.dylib Normal file

Binary file not shown.

BIN
bin/libonig.5.dylib Normal file

Binary file not shown.

BIN
bin/libreadline.8.dylib Normal file

Binary file not shown.

BIN
bin/librtmp.1.dylib Normal file

Binary file not shown.

BIN
bin/libssh2.1.dylib Normal file

Binary file not shown.

BIN
bin/libunistring.5.dylib Normal file

Binary file not shown.

BIN
bin/libxdiff.0.dylib Normal file

Binary file not shown.

BIN
bin/libzip.5.dylib Normal file

Binary file not shown.

BIN
bin/libzstd.1.dylib Normal file

Binary file not shown.

28
bin/pecl Executable file
View File

@ -0,0 +1,28 @@
#!/bin/sh
# first find which PHP binary to use
if test "x$PHP_PEAR_PHP_BIN" != "x"; then
PHP="$PHP_PEAR_PHP_BIN"
else
if test "/Users/apostol/.phpbrew/php/php-7.4.32/bin/php" = '@'php_bin'@'; then
PHP=php
else
PHP="/Users/apostol/.phpbrew/php/php-7.4.32/bin/php"
fi
fi
# then look for the right pear include dir
if test "x$PHP_PEAR_INSTALL_DIR" != "x"; then
INCDIR=$PHP_PEAR_INSTALL_DIR
INCARG="-d include_path=$PHP_PEAR_INSTALL_DIR"
else
if test "/Users/apostol/.phpbrew/php/php-7.4.32/lib/php/pear" = '@'php_dir'@'; then
INCDIR=`dirname $0`
INCARG=""
else
INCDIR="/Users/apostol/.phpbrew/php/php-7.4.32/lib/php/pear"
INCARG="-d include_path=/Users/apostol/.phpbrew/php/php-7.4.32/lib/php/pear"
fi
fi
exec $PHP -C -q $INCARG -d date.timezone=UTC -d output_buffering=1 -d variables_order=EGPCS -d safe_mode=0 -d register_argc_argv="On" $INCDIR/peclcmd.php "$@"