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)
## 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
```
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])