summaryrefslogtreecommitdiff
path: root/ext/mcal/config.m4
diff options
context:
space:
mode:
authorChuck Hagenbuch <chagenbu@php.net>2000-11-19 02:42:06 +0000
committerChuck Hagenbuch <chagenbu@php.net>2000-11-19 02:42:06 +0000
commit965bb6d211afeacff3e742244e28d515c067fe0e (patch)
tree3db3688c265d404337a02de1ae6155051739fe6a /ext/mcal/config.m4
parent1cf5973ab4f664d486f723e3f8950fb07952c45f (diff)
downloadphp-git-965bb6d211afeacff3e742244e28d515c067fe0e.tar.gz
include checks for cal_misc.h and icalroutines.h
Diffstat (limited to 'ext/mcal/config.m4')
-rw-r--r--ext/mcal/config.m48
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/mcal/config.m4 b/ext/mcal/config.m4
index d47656c2a8..7e2301505a 100644
--- a/ext/mcal/config.m4
+++ b/ext/mcal/config.m4
@@ -27,6 +27,14 @@ if test "$PHP_MCAL" != "no"; then
AC_MSG_ERROR(Unable to locate your libmcal header files - mcal.h should be in the directory you specify or in the include/ subdirectory below it - default search location is $MCAL_DEFAULT_SEARCH)
fi
+ if test ! -f "$MCAL_INCLUDE/cal_misc.h"; then
+ AC_MSG_ERROR(Unable to locate your libmcal header files - cal_misc.h should be in the directory you specify or in the include/ subdirectory below it - default search location is $MCAL_DEFAULT_SEARCH)
+ fi
+
+ if test ! -f "$MCAL_INCLUDE/icalroutines.h"; then
+ AC_MSG_ERROR(Unable to locate your libmcal header files - icalroutines.h should be in the directory you specify or in the include/ subdirectory below it - default search location is $MCAL_DEFAULT_SEARCH)
+ fi
+
if test ! -f "$MCAL_LIBRARY/libmcal.a"; then
AC_MSG_ERROR(Unable to locate your libmcal library files - libmcal.a should be in the directory you specify or in the lib/ subdirectory below it - default search location is $MCAL_DEFAULT_SEARCH)
fi