summaryrefslogtreecommitdiff
path: root/ext/mcal/config.m4
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mcal/config.m4')
-rw-r--r--ext/mcal/config.m425
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/mcal/config.m4 b/ext/mcal/config.m4
deleted file mode 100644
index 914203e0ac..0000000000
--- a/ext/mcal/config.m4
+++ /dev/null
@@ -1,25 +0,0 @@
-dnl $Id$
-
-AC_MSG_CHECKING(for MCAL support)
-AC_ARG_WITH(mcal,
-[ --with-mcal[=DIR] Include MCAL support.],
-[
- if test "$withval" != "no"; then
- if test "$withval" = "yes"; then
- MCAL_DIR=/usr/local
- else
- MCAL_DIR=$withval
- fi
-
- AC_ADD_INCLUDE($MCAL_DIR)
- AC_ADD_LIBRARY_WITH_PATH(mcal, $MCAL_DIR)
- AC_DEFINE(HAVE_MCAL)
- PHP_EXTENSION(mcal)
- AC_MSG_RESULT(yes)
- else
- AC_MSG_ERROR(no)
- fi
-],[
- AC_MSG_RESULT(no)
-])
-