]> granicus.if.org Git - php/commitdiff
Rename configure --with-litespeed to --enable-litespeed
authorPeter Kokot <peterkokot@gmail.com>
Sat, 11 May 2019 03:19:28 +0000 (05:19 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Fri, 17 May 2019 01:14:13 +0000 (03:14 +0200)
This syncs the configuration option of the litespeed module to be
compliant with the approach of:
--with-foo (when something additional needs to be installed such as
  libfoo)
--enable-foo (when extension/sapi doesn't have dependencies on some
  library)

sapi/litespeed/README.md
sapi/litespeed/config.m4

index e98a940b3df7b24aca1307375b25455394604c89..19283f182e86e60630eebc756592ed78c32ae715 100644 (file)
@@ -25,13 +25,13 @@ with LiteSpeed web server.
 
 ## Building PHP with LiteSpeed SAPI
 
-You need to add `--with-litespeed` to the configure command to build PHP with
+You need to add `--enable-litespeed` to the configure command to build PHP with
 LiteSpeed SAPI, all other SAPI related configure options should be removed.
 
 For example:
 
 ```bash
-./configure --with-litespeed
+./configure --enable-litespeed
 make
 ```
 
index c32420638d2751062025b700840674bde97867cc..3a816a19bf4f528dc481aa79a0a8c07589045a81 100644 (file)
@@ -1,7 +1,7 @@
 AC_MSG_CHECKING(for LiteSpeed support)
 
-PHP_ARG_WITH([litespeed],,
-  [AS_HELP_STRING([--with-litespeed],
+PHP_ARG_ENABLE([litespeed],,
+  [AS_HELP_STRING([--enable-litespeed],
     [Build PHP as litespeed module])],
   [no])