summaryrefslogtreecommitdiff
path: root/ext/mcal
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-03-27 20:35:04 +0000
committerfoobar <sniper@php.net>2001-03-27 20:35:04 +0000
commit8a26918ed113620828f48989e6a170cd630f6a4e (patch)
tree0fedcc6f4b9f8a6c657305fa96b7d89bcc641787 /ext/mcal
parentc713967de336eea5b774b134a4e4023f1b8c946c (diff)
downloadphp-git-8a26918ed113620828f48989e6a170cd630f6a4e.tar.gz
Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.
# Heads up people! I tested this before committing but you never know..
Diffstat (limited to 'ext/mcal')
-rw-r--r--ext/mcal/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mcal/config.m4 b/ext/mcal/config.m4
index 5aebe9009c..6a6e6eea85 100644
--- a/ext/mcal/config.m4
+++ b/ext/mcal/config.m4
@@ -8,7 +8,7 @@ if test "$PHP_MCAL" != "no"; then
if test "$PHP_MCAL" = "yes"; then
MCAL_DIR=$MCAL_DEFAULT_SEARCH
else
- AC_EXPAND_PATH($PHP_MCAL, MCAL_DIR)
+ PHP_EXPAND_PATH($PHP_MCAL, MCAL_DIR)
fi
for i in $MCAL_DIR $MCAL_DIR/mcal $MCAL_DIR/mcal/include $MCAL_DIR/include/mcal $MCAL_DIR/include; do
@@ -39,8 +39,8 @@ if test "$PHP_MCAL" != "no"; 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
- AC_ADD_INCLUDE($MCAL_INCLUDE)
- AC_ADD_LIBRARY_WITH_PATH(mcal, $MCAL_LIBRARY, MCAL_SHARED_LIBADD)
+ PHP_ADD_INCLUDE($MCAL_INCLUDE)
+ PHP_ADD_LIBRARY_WITH_PATH(mcal, $MCAL_LIBRARY, MCAL_SHARED_LIBADD)
PHP_SUBST(MCAL_SHARED_LIBADD)
AC_DEFINE(HAVE_MCAL,1,[ ])
PHP_EXTENSION(mcal,$ext_shared)