]> git.pld-linux.org Git - packages/php.git/blame - php-mcal-shared-lib.patch
- don't use pcre functions in standard/aggregation functions if building pcre extensi...
[packages/php.git] / php-mcal-shared-lib.patch
CommitLineData
85c7abaf
PG
1--- ./ext/mcal/config.m4.org Mon Jun 24 13:37:15 2002
2+++ ./ext/mcal/config.m4 Sat Sep 7 11:19:45 2002
9d6174b1 3@@ -20,7 +20,7 @@
4 done
5
6 for i in $MCAL_DIR $MCAL_DIR/mcal $MCAL_DIR/mcal/lib $MCAL_DIR/lib/mcal $MCAL_DIR/lib; do
7- if test -r "$i/libmcal.a"; then
8+ if test -r "$i/libmcal.so" -o -r "$i/libmcal.a"; then
9 MCAL_LIBRARY=$i
10 fi
11 done
efe52553 12@@ -37,8 +37,8 @@
9d6174b1 13 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)
14 fi
15
16- if test ! -f "$MCAL_LIBRARY/libmcal.a"; then
17- 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)
efe52553 18+ if test ! -f "$MCAL_LIBRARY/libmcal.a" -a ! -f "$MCAL_LIBRARY/libmcal.so"; then
9d6174b1 19+ 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)
20 fi
21
22 PHP_ADD_INCLUDE($MCAL_INCLUDE)
This page took 0.068939 seconds and 4 git commands to generate.