Index: head/mail/courier-imap/Makefile =================================================================== --- head/mail/courier-imap/Makefile (revision 114304) +++ head/mail/courier-imap/Makefile (revision 114305) @@ -1,235 +1,235 @@ # New ports collection makefile for: courierimap # Date created: 19 Feb 2000 # Whom: Neil Blakey-Milner # # $FreeBSD$ # PORTNAME= courier-imap -PORTVERSION= 3.0.5 -PORTREVISION= 2 +PORTVERSION= 3.0.6 +PORTREVISION= 0 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= courier .if defined(WITH_DRAC) PATCH_SITES= http://www.smalltown.ne.jp/~usata/pub/patch/ PATCHFILES= courier-imap-3.0.5-drac.patch PATCH_DIST_STRIP= -p1 .endif MAINTAINER= oliver@FreeBSD.org COMMENT= IMAP (and POP3) server that provides access to Maildir mailboxes USE_BZIP2= yes USE_REINPLACE= yes USE_PERL5= yes GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ENV= CFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ CXXFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ LIBS="${LDFLAGS} -L${LOCALBASE}/lib" # # options available: # # WITHOUT_OPENSSL: Don't build in TLS support # WITHOUT_PAM: Don't build in PAM support # WITHOUT_AUTHDAEMON Don't build the authdaemon # WITH_CRAM: Build in CRAM-MD5 authentication support # WITH_VPOPMAIL: Build in vpopmail support # WITH_MYSQL: Build in mysql support # WITH_POSTGRESQL: Build in postgresql support # WITH_LDAP: Build in ldap support with openldap # WITH_FAM: Build in fam support for IDLE command # WITH_DRAC: Build in DRAC support # WITH_TRASHQUOTA: Include deleted mails in the quota # WITH_GDBM: Use gdbm files instead of bdb # CONFDIR?= ${PREFIX}/etc/${PORTNAME} RCDIR?= ${PREFIX}/etc/rc.d USERDB?= ${PREFIX}/etc/userdb LIBEXECDIR?= ${PREFIX}/libexec/${PORTNAME} VPOPMAILDIR?= ${LOCALBASE}/vpopmail PLIST_SUB= CONFDIR=${CONFDIR:S,^${PREFIX}/,,} \ RCDIR=${RCDIR:S,^${PREFIX}/,,} \ USERDB=${USERDB:S,^${PREFIX}/,,} \ LIBEXECDIR=${LIBEXECDIR:S,^${PREFIX}/,,} .if !defined(WITHOUT_OPENSSL) USE_OPENSSL= YES PLIST_SUB+= OPENSSLFLAG= .else PLIST_SUB+= OPENSSLFLAG="@comment " .endif CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --without-authshadow \ --sysconfdir=${CONFDIR} \ --with-userdb=${USERDB} \ --datadir=${DATADIR} \ --libexecdir=${LIBEXECDIR} \ --enable-workarounds-for-imap-client-bugs \ --enable-unicode \ --disable-root-check \ --with-locking-method=fcntl # Without explicitly mentioning this, if gdbm libraries are present, # they are silently picked up and used by courier-imap in place of # the standard db (v1) files. # .if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+= --with-db=gdbm .else CONFIGURE_ARGS+= --with-db=db .endif .if !defined(WITH_VPOPMAIL) CONFIGURE_ARGS+=--without-authvchkpw PLIST_SUB+= VPOPMAILFLAG="@comment " .else CONFIGURE_ARGS+=--with-authvchkpw BUILD_DEPENDS+= ${VPOPMAILDIR}/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail PLIST_SUB+= VPOPMAILFLAG="" .endif .if defined(WITH_TRASHQUOTA) CONFIGURE_ARGS+=--with-trashquota .endif .if defined(WITH_LDAP) USE_OPENLDAP= yes CONFIGURE_ARGS+=--with-authldap PLIST_SUB+= LDAPFLAG="" .else CONFIGURE_ARGS+=--without-authldap PLIST_SUB+= LDAPFLAG="@comment " .endif .if !defined(WITH_MYSQL) CONFIGURE_ARGS+=--without-authmysql PLIST_SUB+= MYSQLFLAG="@comment " .else USE_MYSQL= YES PLIST_SUB+= MYSQLFLAG="" CONFIGURE_ARGS+=--with-authmysql \ --with-mysql-libs=${LOCALBASE}/lib/mysql \ --with-mysql-includes=${LOCALBASE}/include/mysql .endif .if !defined(WITH_POSTGRESQL) CONFIGURE_ARGS+=--without-authpgsql PLIST_SUB+= PGSQLFLAG="@comment " .else POSTGRESQL_PORT?= databases/postgresql7 LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} PLIST_SUB+= PGSQLFLAG="" .endif .if !defined(WITHOUT_AUTHDAEMON) CONFIGURE_ARGS+=--with-authdaemon PLIST_SUB+= AUTHDFLAG="" .else CONFIGURE_ARGS+=--without-authdaemon PLIST_SUB+= AUTHDFLAG="@comment " .endif .if !defined(WITHOUT_PAM) CONFIGURE_ARGS+=--with-authpam PLIST_SUB+= PAMFLAG="" PWDFLAG="@comment " .else CONFIGURE_ARGS+=--without-authpam PLIST_SUB+= PAMFLAG="@comment " PWDFLAG="" .endif .if !defined(WITH_CRAM) CONFIGURE_ARGS+=--without-authcram .else CONFIGURE_ARGS+=--with-authcram .endif .include .if defined(WITH_FAM) || exists(${LOCALBASE}/lib/libfam.so) CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="${LDFLAGS}" LDFLAGS+= -L${LOCALBASE}/lib LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam .endif .if defined(WITH_DRAC) EXTRA_PATCHES= ${FILESDIR}/extra-patch-drac BUILD_DEPENDS+= ${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac .endif MAN1= courierlogger.1 couriertcpd.1 maildiracl.1 maildirkw.1 \ maildirmake.1 MAN7= authlib.7 MAN8= makeuserdb.8 userdb.8 userdbpw.8 \ deliverquota.8 imapd.8 mkimapdcert.8 mkpop3dcert.8 MLINKS= authlib.7 authpwd.7 \ authlib.7 authuserdb.7 \ authlib.7 authshadow.7 \ authlib.7 authpam.7 \ authlib.7 authvchkpw.7 \ authlib.7 authcram.7 \ authlib.7 authldap.7 \ authlib.7 authmysql.7 \ authlib.7 authdaemon.7 \ authlib.7 authdaemond.7 \ makeuserdb.8 pw2userdb.8 \ makeuserdb.8 vchkpw2userdb.8 EXTRA_DOCS= README INSTALL AUTHORS imap/ChangeLog post-patch: @${REINPLACE_CMD} -e 's|^case x$$lockmethod in|${TEST} \&\& &|g' \ ${WRKSRC}/liblock/configure @${REINPLACE_CMD} -e 's|$$VPOPMAILLIBS|& -lcrypt|g ; \ s|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/authlib/configure @${REINPLACE_CMD} -e 's|^@INSTALLAUTHMODULES@$$|& @AUTHMODULES@|' \ ${WRKSRC}/authlib/installlist.in @${REINPLACE_CMD} -e 's|%%INSTALL_MAN%%|${INSTALL_MAN}|' \ ${WRKSRC}/Makefile.in ${WRKSRC}/authlib/Makefile.in post-install: ${INSTALL_PROGRAM} ${WRKSRC}/authlib/authtest ${PREFIX}/bin/ .for i in imapd pop3d ${INSTALL_DATA} ${WRKSRC}/imap/${i}.cnf ${CONFDIR}/${i}.cnf.dist ${LN} -s ${LIBEXECDIR}/${i}.rc ${RCDIR}/${PORTNAME}-${i}.sh.sample ${LN} -s ${LIBEXECDIR}/${i}-ssl.rc ${RCDIR}/${PORTNAME}-${i}-ssl.sh.sample .endfor .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for a in ${EXTRA_DOCS} ${INSTALL_DATA} ${WRKSRC}/${a} ${DOCSDIR} .endfor .endif @${ECHO_MSG} "" @${ECHO_MSG} "You will have to run ${DATADIR}/mkimapdcert to create" @${ECHO_MSG} "a self-signed certificate if you want to use imapd-ssl." @${ECHO_MSG} "And you will have to copy and edit the *.dist files to *" @${ECHO_MSG} "in ${CONFDIR}." @${ECHO_MSG} "" @${ECHO_MSG} "In case you use authpam, you should put the following lines" @${ECHO_MSG} "in your /etc/pam.conf or /etc/pam.d/imap" @${ECHO_MSG} "imap auth required pam_unix.so try_first_pass" @${ECHO_MSG} "imap account required pam_unix.so try_first_pass" @${ECHO_MSG} "imap session required pam_permit.so" @${ECHO_MSG} "" @${ECHO_MSG} "In case you are upgrading an existing Installation, you need to run" @${ECHO_MSG} "'make install-configure' to update your old configuration files." @${ECHO_MSG} "" install-configure: cd ${WRKSRC} && ${GMAKE} install-configure .include Property changes on: head/mail/courier-imap/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.81 \ No newline at end of property +1.82 \ No newline at end of property Index: head/mail/courier-imap/distinfo =================================================================== --- head/mail/courier-imap/distinfo (revision 114304) +++ head/mail/courier-imap/distinfo (revision 114305) @@ -1,4 +1,2 @@ -MD5 (courier-imap-3.0.5.tar.bz2) = 8b0c79997905dc46cfe4cc13be74ceaf -SIZE (courier-imap-3.0.5.tar.bz2) = 1648873 -MD5 (courier-imap-3.0.5-drac.patch) = 57c6bfde1b0c435cf2aab4d4ceab3ea2 -SIZE (courier-imap-3.0.5-drac.patch) = 7695 +MD5 (courier-imap-3.0.6.tar.bz2) = f2d3c0d566ea6789192dc3cd5fd8f8fb +SIZE(courier-imap-3.0.6.tar.bz2) = 1693960 Property changes on: head/mail/courier-imap/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.36 \ No newline at end of property +1.37 \ No newline at end of property Index: head/mail/courier-imap/files/patch-maildir::maildirquota.c =================================================================== --- head/mail/courier-imap/files/patch-maildir::maildirquota.c (revision 114304) +++ head/mail/courier-imap/files/patch-maildir::maildirquota.c (nonexistent) @@ -1,11 +0,0 @@ ---- maildir/maildirquota.c.orig Fri Jun 18 23:27:53 2004 -+++ maildir/maildirquota.c Fri Jun 18 23:45:01 2004 -@@ -748,7 +748,7 @@ - char *p; - DIR *dirp; - struct dirent *de; --off_t s; -+unsigned long s; - - if (stat(dir, &stat_buf)) return (0); /* Ignore */ - if (stat_buf.st_mtime > *dirstamp) *dirstamp=stat_buf.st_mtime; Property changes on: head/mail/courier-imap/files/patch-maildir::maildirquota.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/mail/courier-imap/files/patch-Makefile.in =================================================================== --- head/mail/courier-imap/files/patch-Makefile.in (revision 114304) +++ head/mail/courier-imap/files/patch-Makefile.in (revision 114305) @@ -1,41 +1,41 @@ ---- Makefile.in.orig Wed Jul 2 02:30:46 2003 -+++ Makefile.in Sun Jul 20 14:09:49 2003 -@@ -132,7 +132,7 @@ - EXTRA_DIST = 00README.NOW.OR.SUFFER README README.cygwin automake.fix COPYING.GPL sysconftool - +--- Makefile.in.orig Tue Jul 20 01:54:19 2004 ++++ Makefile.in Tue Jul 20 19:31:37 2004 +@@ -218,7 +218,7 @@ + COPYING.GPL NEWS.html $(TEMPLFILES)\ + sysconftool sysconf_DATA = imapd.dist imapd-ssl.dist pop3d.dist pop3d-ssl.dist \ - imapd.cnf pop3d.cnf quotawarnmsg.example + quotawarnmsg.example libexec_SCRIPTS = imapd.rc imapd-ssl.rc pop3d.rc pop3d-ssl.rc - -@@ -351,8 +351,8 @@ + HTML2TXT = `which lynx 2>/dev/null && echo "lynx -dump -nolist" && exit; echo "links -dump"` +@@ -433,8 +433,8 @@ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ -- echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ -- $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ -+ echo " %%INSTALL_MAN%% $$file $(DESTDIR)$(man1dir)/$$inst"; \ -+ %%INSTALL_MAN%% $$file $(DESTDIR)$(man1dir)/$$inst; \ +- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ +- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \ ++ echo " %%INSTALL_MAN%% '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ ++ %%INSTALL_MAN%% "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \ done uninstall-man1: @$(NORMAL_UNINSTALL) -@@ -394,8 +394,8 @@ +@@ -478,8 +478,8 @@ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ -- echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man8dir)/$$inst"; \ -- $(INSTALL_DATA) $$file $(DESTDIR)$(man8dir)/$$inst; \ -+ echo " %%INSTALL_MAN%% $$file $(DESTDIR)$(man8dir)/$$inst"; \ -+ %%INSTALL_MAN%% $$file $(DESTDIR)$(man8dir)/$$inst; \ +- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \ +- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst"; \ ++ echo " %%INSTALL_MAN%% '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \ ++ %%INSTALL_MAN%% "$$file" "$(DESTDIR)$(man8dir)/$$inst"; \ done uninstall-man8: @$(NORMAL_UNINSTALL) -@@ -873,6 +873,7 @@ +@@ -1055,6 +1055,7 @@ install-data-local: install-man for f in `cat authlib/modulelist ; . authlib/authdaemonrc ; echo $$authmodulelist ` ; do \ + continue ; \ test "$$f" = "authpam" || continue ; \ test -d $(DESTDIR)/etc/pam.d || continue ; \ test -w $(DESTDIR)/etc/pam.d || continue ; \ Property changes on: head/mail/courier-imap/files/patch-Makefile.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/mail/courier-imap/files/patch-mysql =================================================================== --- head/mail/courier-imap/files/patch-mysql (revision 114304) +++ head/mail/courier-imap/files/patch-mysql (revision 114305) @@ -1,148 +1,182 @@ ---- authlib/configure.orig Thu Oct 30 21:36:15 2003 -+++ authlib/configure Thu Oct 30 21:43:26 2003 -@@ -6766,9 +6766,9 @@ +--- authlib/configure.orig Tue Jul 20 19:37:46 2004 ++++ authlib/configure Tue Jul 20 19:37:22 2004 +@@ -7337,9 +7337,9 @@ if test "$doauthmysql" = "" then LIBS="$MYSQL_LIBS $LIBS" - echo "$as_me:$LINENO: checking for mysql_connect" >&5 -echo $ECHO_N "checking for mysql_connect... $ECHO_C" >&6 -if test "${ac_cv_func_mysql_connect+set}" = set; then -+ echo "$as_me:$LINENO: checking for mysql_real_connect" >&5 ++ echo "$as_me:$LINENO: checking for mysql_real_connect" >&5 +echo $ECHO_N "checking for mysql_real_connect... $ECHO_C" >&6 +if test "${ac_cv_func_mysql_real_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -@@ -6779,7 +6779,7 @@ +@@ -7348,12 +7348,12 @@ + cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ +-/* Define mysql_connect to an innocuous variant, in case declares mysql_connect. ++/* Define mysql_real_connect to an innocuous variant, in case declares mysql_real_connect. + For example, HP-UX 11i declares gettimeofday. */ +-#define mysql_connect innocuous_mysql_connect ++#define mysql_real_connect innocuous_mysql_real_connect + /* System header to define __stub macros and hopefully few prototypes, - which can conflict with char mysql_connect (); below. -+ which can conflict with char mysql_real_connect (); below. */ ++ which can conflict with char mysql_real_connect (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ - #ifdef __STDC__ -@@ -6794,14 +6794,14 @@ + +@@ -7363,7 +7363,7 @@ + # include #endif + +-#undef mysql_connect ++#undef mysql_real_connect + + /* Override any gcc2 internal prototype to avoid an error. */ + #ifdef __cplusplus +@@ -7372,14 +7372,14 @@ + #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ -char mysql_connect (); +char mysql_real_connect (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ -#if defined (__stub_mysql_connect) || defined (__stub___mysql_connect) +#if defined (__stub_mysql_real_connect) || defined (__stub___mysql_real_connect) choke me #else -char (*f) () = mysql_connect; +char (*f) () = mysql_real_connect; #endif #ifdef __cplusplus } -@@ -6810,7 +6810,7 @@ +@@ -7388,7 +7388,7 @@ int main () { -return f != mysql_connect; +return f != mysql_real_connect; ; return 0; } -@@ -6827,18 +6827,18 @@ +@@ -7415,19 +7415,19 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - ac_cv_func_mysql_connect=yes + ac_cv_func_mysql_real_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -ac_cv_func_mysql_connect=no +ac_cv_func_mysql_real_connect=no fi - rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext + rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:$LINENO: result: $ac_cv_func_mysql_connect" >&5 -echo "${ECHO_T}$ac_cv_func_mysql_connect" >&6 -if test $ac_cv_func_mysql_connect = yes; then +echo "$as_me:$LINENO: result: $ac_cv_func_mysql_real_connect" >&5 +echo "${ECHO_T}$ac_cv_func_mysql_real_connect" >&6 +if test $ac_cv_func_mysql_real_connect = yes; then doauthmysql="yes" fi -@@ -6930,9 +6930,9 @@ +@@ -7537,9 +7537,9 @@ else saveLIBS="$LIBS" LIBS="$MYSQL_LIBS $LIBS" - echo "$as_me:$LINENO: checking for mysql_connect" >&5 -echo $ECHO_N "checking for mysql_connect... $ECHO_C" >&6 -if test "${ac_cv_func_mysql_connect+set}" = set; then + echo "$as_me:$LINENO: checking for mysql_real_connect" >&5 +echo $ECHO_N "checking for mysql_real_connect... $ECHO_C" >&6 +if test "${ac_cv_func_mysql_real_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -@@ -6943,7 +6943,7 @@ +@@ -7548,12 +7548,12 @@ + cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ +-/* Define mysql_connect to an innocuous variant, in case declares mysql_connect. ++/* Define mysql_real_connect to an innocuous variant, in case declares mysql_real_connect. + For example, HP-UX 11i declares gettimeofday. */ +-#define mysql_connect innocuous_mysql_connect ++#define mysql_real_connect innocuous_mysql_real_connect + /* System header to define __stub macros and hopefully few prototypes, - which can conflict with char mysql_connect (); below. + which can conflict with char mysql_real_connect (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ - #ifdef __STDC__ -@@ -6958,14 +6958,14 @@ + +@@ -7563,7 +7563,7 @@ + # include #endif + +-#undef mysql_connect ++#undef mysql_real_connect + + /* Override any gcc2 internal prototype to avoid an error. */ + #ifdef __cplusplus +@@ -7572,14 +7572,14 @@ + #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ -char mysql_connect (); +char mysql_real_connect (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ -#if defined (__stub_mysql_connect) || defined (__stub___mysql_connect) +#if defined (__stub_mysql_real_connect) || defined (__stub___mysql_real_connect) choke me #else -char (*f) () = mysql_connect; +char (*f) () = mysql_real_connect; #endif #ifdef __cplusplus } -@@ -6974,7 +6974,7 @@ +@@ -7588,7 +7588,7 @@ int main () { -return f != mysql_connect; +return f != mysql_real_connect; ; return 0; } -@@ -6991,18 +6991,18 @@ +@@ -7615,19 +7615,19 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - ac_cv_func_mysql_connect=yes + ac_cv_func_mysql_real_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -ac_cv_func_mysql_connect=no +ac_cv_func_mysql_real_connect=no fi - rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext + rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:$LINENO: result: $ac_cv_func_mysql_connect" >&5 -echo "${ECHO_T}$ac_cv_func_mysql_connect" >&6 -if test $ac_cv_func_mysql_connect = yes; then +echo "$as_me:$LINENO: result: $ac_cv_func_mysql_real_connect" >&5 +echo "${ECHO_T}$ac_cv_func_mysql_real_connect" >&6 +if test $ac_cv_func_mysql_real_connect = yes; then AUTHMYSQL="authmysql${EXEEXT}" HAVE_AUTHMYSQL=1 else Property changes on: head/mail/courier-imap/files/patch-mysql ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property