View | Details | Raw Unified | Return to bug 38238
Collapse All | Expand All

(-)mod_php4/files/patch-ext_cyrus_config.m4 (+11 lines)
Line 0 Link Here
1
--- ext/cyrus/config.m4	Sat May 18 11:28:42 2002
2
+++ ext/cyrus/config.m4~	Sat May 18 11:28:32 2002
3
@@ -16,7 +16,7 @@
4
 			PHP_ADD_LIBRARY_WITH_PATH(cyrus, $i/lib, CYRUS_SHARED_LIBADD)
5
 			found_cyrus=yes
6
 		fi
7
-		if test -r $i/include/sasl.h && test "$found_sasl" = "no"; then
8
+		if test -r $i/include/sasl/sasl.h && test "$found_sasl" = "no"; then
9
 			PHP_ADD_INCLUDE($i/include)
10
 			PHP_SUBST(SASL_SHARED_LIBADD)
11
 			PHP_ADD_LIBRARY_WITH_PATH(sasl, $i/lib, SASL_SHARED_LIBADD)
(-)mod_php4/scripts/configure.php (+6 lines)
Lines 43-48 Link Here
43
DOMXML		"DOM support" OFF \
43
DOMXML		"DOM support" OFF \
44
FTP		"File Transfer Protocol support" OFF \
44
FTP		"File Transfer Protocol support" OFF \
45
CURL		"CURL support" OFF \
45
CURL		"CURL support" OFF \
46
cyrus		"Cyrus IMAP support" OFF \
46
gettext		"gettext library support" OFF \
47
gettext		"gettext library support" OFF \
47
iconv		"iconv support" OFF \
48
iconv		"iconv support" OFF \
48
pspell		"pspell support" OFF \
49
pspell		"pspell support" OFF \
Lines 292-297 Link Here
292
			echo "CONFIGURE_ARGS+=--with-curl=\${LOCALBASE}"
293
			echo "CONFIGURE_ARGS+=--with-curl=\${LOCALBASE}"
293
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libcurl.a:\${PORTSDIR}/ftp/curl"
294
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libcurl.a:\${PORTSDIR}/ftp/curl"
294
                        ;;
295
                        ;;
296
		\"cyrus\")
297
			echo "CONFIGURE_ARGS+=--with-cyrus"
298
			echo "BUILD_DEPENDS+=	\${LOCALBASE}/lib/libcyrus.a:\${PORTSDIR}/mail/cyrus-imapd"
299
			echo "CFLAGS+=-I\${LOCALBASE}/include/sasl"
300
			;;
295
		\"gettext\")
301
		\"gettext\")
296
			echo "LIB_DEPENDS+=	intl.2:\${PORTSDIR}/devel/gettext"
302
			echo "LIB_DEPENDS+=	intl.2:\${PORTSDIR}/devel/gettext"
297
			echo "CONFIGURE_ARGS+=--with-gettext=\${LOCALBASE}"
303
			echo "CONFIGURE_ARGS+=--with-gettext=\${LOCALBASE}"

Return to bug 38238