Home
last modified time | relevance | path

Searched refs:config (Results 1 – 25 of 328) sorted by last modified time

12345678910>>...14

/PHP-7.4/
H A DNEWS1235 . Fixed bug #78983 (pdo_pgsql config.w32 cannot find libpq-fe.h). (SATŌ
1474 pkg-config). (Eli Schwartz)
1566 . Changed the default config path (Windows only). (cmb)
2483 . Fixed bug #69954 (broken links and unused config items in distributed ini
2500 . Fixed bug #76137 (config.guess/config.sub do not recognize RISC-V). (cmb)
2636 . Fixed bug #75871 (use pkg-config where available). (pmmaga)
H A Dconfigure.ac16 dnl Basic autoconf initialization, generation of config.nice.
25 PHP_CONFIG_NICE(config.nice)
332 esyscmd(./build/config-stubs sapi)
872 PHP_ARG_WITH([config-file-path],
874 [AS_HELP_STRING([--with-config-file-path=PATH],
891 PHP_ARG_WITH([config-file-scan-dir],,
892 [AS_HELP_STRING([--with-config-file-scan-dir=PATH],
1041 dnl Reading config stubs.
1042 esyscmd(./build/config-stubs ext)
1044 dnl Extensions post-config.
[all …]
/PHP-7.4/ext/pgsql/tests/
H A Dbug81720.phpt7 include('config.inc');
H A D06copy_2.phpt8 include('config.inc');
/PHP-7.4/azure/macos/
H A Djob.yml69 --with-config-file-path=/etc \
70 --with-config-file-scan-dir=/etc/php.d
/PHP-7.4/azure/i386/
H A Djob.yml16 export PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config
66 --with-config-file-path=/etc \
67 --with-config-file-scan-dir=/etc/php.d
/PHP-7.4/ext/openssl/
H A Dconfig0.m435 AC_MSG_ERROR([OpenSSL check failed. Please check config.log for more information.])
H A Dopenssl.c1049 …label, const char * config_filename, const char * section, LHASH_OF(CONF_VALUE) * config) /* {{{ */ in php_openssl_config_check_syntax() argument
1054 X509V3_set_conf_lhash(&ctx, config); in php_openssl_config_check_syntax()
1055 if (!X509V3_EXT_add_conf(config, &ctx, (char *)section, NULL)) { in php_openssl_config_check_syntax()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_request.c264 …child->wp->config->name, (int) child->pid, purified_script_filename, proc.request_method, proc.req… in fpm_request_check_timed_out()
275 …child->wp->config->name, (int) child->pid, purified_script_filename, proc.request_method, proc.req… in fpm_request_check_timed_out()
H A Dfpm_scoreboard.c46 if (wp->config->pm_max_children < 1) { in fpm_scoreboard_init_main()
47 …RROR, "[pool %s] Unable to create scoreboard SHM because max_client is not set", wp->config->name); in fpm_scoreboard_init_main()
52 …OG_ERROR, "[pool %s] Unable to create scoreboard SHM because it already exists", wp->config->name); in fpm_scoreboard_init_main()
56 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_init_main()
63 wp->scoreboard->pm = wp->config->pm; in fpm_scoreboard_init_main()
64 wp->scoreboard->nprocs = wp->config->pm_max_children; in fpm_scoreboard_init_main()
66 strlcpy(wp->scoreboard->pool, wp->config->name, sizeof(wp->scoreboard->pool)); in fpm_scoreboard_init_main()
191 unsigned int nprocs = wp->config->pm_max_children; in fpm_scoreboard_proc_get_from_child()
260 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_free()
290 if (child_index < 0 || child_index >= wp->config->pm_max_children) { in fpm_scoreboard_proc_free()
[all …]
H A Dfpm_status.c25 if (!wp || !wp->config) { in fpm_status_init_child()
30 if (wp->config->pm_status_path) { in fpm_status_init_child()
31 fpm_status_uri = strdup(wp->config->pm_status_path); in fpm_status_init_child()
34 if (wp->config->ping_path) { in fpm_status_init_child()
35 if (!wp->config->ping_response) { in fpm_status_init_child()
36 …"[pool %s] ping is set (%s) but ping.response is not set.", wp->config->name, wp->config->ping_pat… in fpm_status_init_child()
39 fpm_status_ping_uri = strdup(wp->config->ping_path); in fpm_status_init_child()
40 fpm_status_ping_response = strdup(wp->config->ping_response); in fpm_status_init_child()
H A Dfpm_worker_pool.c31 if (wp->config) { in fpm_worker_pool_free()
32 free(wp->config); in fpm_worker_pool_free()
54 fpm_worker_pool_config_free(wp->config); in fpm_worker_pool_cleanup()
H A Dfpm_children.c150 fpm_globals.max_requests = wp->config->pm_max_requests; in fpm_child_init()
161 zlog(ZLOG_ERROR, "[pool %s] child failed to initialize", wp->config->name); in fpm_child_init()
259 …zlog(severity, "[pool %s] child %d exited %s after %ld.%06d seconds from start", wp->config->name,… in fpm_children_bury()
315 zlog(ZLOG_ERROR, "[pool %s] unable to malloc new child", wp->config->name); in fpm_resources_prepare()
375 if (wp->config->pm == PM_STYLE_DYNAMIC) { in fpm_children_make()
377 max = wp->config->pm_start_servers; in fpm_children_make()
381 } else if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_make()
388 max = wp->config->pm_max_children; in fpm_children_make()
437 …zlog(is_debug ? ZLOG_DEBUG : ZLOG_NOTICE, "[pool %s] child %d started", wp->config->name, (int) pi… in fpm_children_make()
455 if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_create_initial()
[all …]
H A Dfpm_unix.c269 if (wp->config->user && *wp->config->user) { in fpm_unix_conf_wp()
270 if (strlen(wp->config->user) == strspn(wp->config->user, "0123456789")) { in fpm_unix_conf_wp()
289 if (wp->config->group && *wp->config->group) { in fpm_unix_conf_wp()
290 if (strlen(wp->config->group) == strspn(wp->config->group, "0123456789")) { in fpm_unix_conf_wp()
311 if (wp->config->user && *wp->config->user) { in fpm_unix_conf_wp()
314 if (wp->config->group && *wp->config->group) { in fpm_unix_conf_wp()
317 if (wp->config->chroot && *wp->config->chroot) { in fpm_unix_conf_wp()
350 if (wp->config->rlimit_core) { in fpm_unix_init_child()
360 if (is_root && wp->config->chroot && *wp->config->chroot) { in fpm_unix_init_child()
368 if (wp->config->chdir && *wp->config->chdir) { in fpm_unix_init_child()
[all …]
H A Dfpm_sockets.c220 …zlog(ZLOG_SYSERROR, "unable to bind listening socket for address '%s'", wp->config->listen_address… in fpm_sockets_new_listening_socket()
239 if (0 > listen(sock, wp->config->listen_backlog)) { in fpm_sockets_new_listening_socket()
240 zlog(ZLOG_SYSERROR, "failed to listen to address '%s'", wp->config->listen_address); in fpm_sockets_new_listening_socket()
313 char *dup_address = strdup(wp->config->listen_address); in fpm_socket_af_inet_listening_socket()
374 strlcpy(sa_un.sun_path, wp->config->listen_address, sizeof(sa_un.sun_path)); in fpm_socket_af_unix_listening_socket()
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug_33876.phpt6 require __DIR__ . '/config.inc';
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc160 * Clean config files
240 * Skip test if config file is invalid.
830 * Reload FPM by sending USR2 signal and optionally change config before that.
886 * Create a config file.
897 throw new \Exception('The config template array has to have main config');
919 * Create pool config templates.
943 throw new \Exception('The config template requires count or names if poolTemplate set');
990 $this->error("Invalid config variable $varName");
H A Dproc-idle-timeout.phpt2 FPM: Process manager config pm.process_idle_timeout
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch1654 -#include <config.h>
1663 +#include "config.h"
2616 +#include "config.h"
/PHP-7.4/ext/ffi/
H A Dffi.g52 # include "config.h"
/PHP-7.4/build/
H A Dpkg.m41 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
2 # serial 12 (pkg-config-0.29.2)
32 dnl Verify that the version of the pkg-config macros are at least
57 dnl pkg-config existed.
62 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
67 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
151 and $1[]_LIBS to avoid the need to call pkg-config.
152 See the pkg-config man page for more details.])
162 # Put the nasty error message in config.log where it belongs
180 path to pkg-config.
[all …]
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c4339 static int accel_preload(const char *config) in accel_preload() argument
4357 zend_stream_init_filename(&file_handle, (char *) config); in accel_preload()
/PHP-7.4/ext/openssl/tests/
H A Dcheck_default_conf_path.phpt2 Check for default OpenSSL config path on Windows
19 preg_match(",Openssl default config [^ ]* (.*),", $info, $m);
/PHP-7.4/appveyor/
H A Dtest_task.bat38 …1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD%"; ?^> >> "./ext/pgsql/tests/config.inc"
/PHP-7.4/ext/pdo_firebird/tests/
H A Dcommon.phpt9 $config = array(
17 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_FIREBIRD_TEST_DSN');
18 $config['ENV']['PDOTEST_USER'] = getenv('PDO_FIREBIRD_TEST_USER');
19 $config['ENV']['PDOTEST_PASS'] = getenv('PDO_FIREBIRD_TEST_PASS');
21 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_FIREBIRD_TEST_ATTR');
24 $config['ENV']['PDOTEST_DSN'] = 'firebird:dbname=/opt/firebird/test.gdb';
25 $config['ENV']['PDOTEST_USER'] = 'SYSDBA';
26 $config['ENV']['PDOTEST_PASS'] = 'password';
28 return $config;

Completed in 112 milliseconds

12345678910>>...14