|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchespatch-hold (last revision 2017-10-21 14:27 UTC by ben at hakim dot co dot il)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-10-21 18:42 UTC] kalle@php.net
-Status: Open
+Status: Analyzed
[2017-10-21 18:42 UTC] kalle@php.net
[2017-10-21 20:25 UTC] ben at hakim dot co dot il
[2017-10-21 20:34 UTC] spam2 at rhsoft dot net
[2017-10-21 23:33 UTC] kalle@php.net
[2017-10-21 23:35 UTC] kalle@php.net
-Summary: configure options
+Summary: --disable-all does not disable
SAPIs on Unix builds
-Operating System: centos 7
+Operating System: Unix
[2017-10-22 00:19 UTC] spam2 at rhsoft dot net
[2017-10-22 02:15 UTC] kalle@php.net
[2017-10-22 21:21 UTC] ben at hakim dot co dot il
[2021-07-16 14:23 UTC] cmb@php.net
-Status: Analyzed
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2021-07-16 14:23 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
Description: ------------ I want to disable all modules . I did use the ./configure --disable-all ,and just enable what I need. after "make install" on /usr/bin I have: php php-cgi php-config phpdbg hpize 1. I didn't "enable php-cgi". 2. I didn't enable "phpdbg" it's only disabled this modules when I add to configure --disable-cgi --disable-phpdbg but it should be with --disable-all my second thing [PHP Modules] calendar Core date json mysqli mysqlnd pcre PDO pdo_mysql Phar Reflection session SPL standard why it's build Reflection and SPL? how can I disable it? Test script: --------------- configure options: ./configure \ "--bindir=/usr/bin" \ "--sbindir=/usr/sbin" \ "--includedir=/usr/include" \ "--libexecdir=/usr/lib/php" \ "--libdir=/usr/lib/php" \ "--mandir=/usr/share/man" \ "--with-mysqli=mysqlnd" \ "--with-pcre-regex" \ "--with-pdo-mysql=mysqlnd" \ "--enable-json" \ "--enable-calendar" \ "--enable-pdo" \ "--enable-phar" \ "--enable-session" \ "--disable-all";