summaryrefslogtreecommitdiff
path: root/sapi/cli/config.m4
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli/config.m4')
-rw-r--r--sapi/cli/config.m425
1 files changed, 0 insertions, 25 deletions
diff --git a/sapi/cli/config.m4 b/sapi/cli/config.m4
deleted file mode 100644
index 83aef7b2bb..0000000000
--- a/sapi/cli/config.m4
+++ /dev/null
@@ -1,25 +0,0 @@
-dnl
-dnl $Id$
-dnl
-
-AC_MSG_CHECKING(for CLI build)
-
-AC_ARG_ENABLE(cli,
-[ --disable-cli Disable building CLI version of PHP.],
-[
- if test "$enable_cli" != "no"; then
- PHP_SAPI_CLI=yes
- else
- PHP_SAPI_CLI=no
- fi
-],
-[PHP_SAPI_CLI=yes]
-)
-
-if test "$PHP_SAPI_CLI" != "no"; then
- INSTALL_IT="$INSTALL_IT; \$(INSTALL) -m 0755 sapi/cli/php \$(INSTALL_ROOT)\$(bindir)/php"
-else
- PHP_DISABLE_CLI
-fi
-
-AC_MSG_RESULT($PHP_SAPI_CLI)