--- php-4.2.1/ext/mcal/config.m4.orig Thu Apr 4 01:04:44 2002 +++ php-4.2.1/ext/mcal/config.m4 Tue May 14 00:26:25 2002 @@ -20,7 +20,7 @@ done for i in $MCAL_DIR $MCAL_DIR/mcal $MCAL_DIR/mcal/lib $MCAL_DIR/lib/mcal $MCAL_DIR/lib; do - if test -r "$i/libmcal.a"; then + if test -r "$i/libmcal.so" -o -r "$i/libmcal.a"; then MCAL_LIBRARY=$i fi done @@ -37,12 +37,12 @@ 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) + if test -z "$MCAL_LIBRARY"; then + AC_MSG_ERROR(Unable to locate your libmcal library files - libmcal.* should be in the directory you specify or in the lib/ subdirectory below it - default search location is $MCAL_DEFAULT_SEARCH) fi PHP_ADD_INCLUDE($MCAL_INCLUDE) - PHP_ADD_LIBRARY_DEFER_WITH_PATH(mcal, $MCAL_LIBRARY, MCAL_SHARED_LIBADD) + 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)