Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Mar 2020 09:36:30 +0000 (UTC)
From:      Dima Panov <fluffy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529785 - in head/mail/dbmail: . files
Message-ID:  <202003290936.02T9aUhE096816@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: fluffy
Date: Sun Mar 29 09:36:30 2020
New Revision: 529785
URL: https://svnweb.freebsd.org/changeset/ports/529785

Log:
  mail/dbmail: chase databases/libzdb update with new layout

Modified:
  head/mail/dbmail/Makefile
  head/mail/dbmail/files/patch-acinclude.m4
  head/mail/dbmail/files/patch-src_dbmail.h.in

Modified: head/mail/dbmail/Makefile
==============================================================================
--- head/mail/dbmail/Makefile	Sun Mar 29 09:33:24 2020	(r529784)
+++ head/mail/dbmail/Makefile	Sun Mar 29 09:36:30 2020	(r529785)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dbmail
 PORTVERSION=	3.2.3
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	mail
 MASTER_SITES=	http://git.dbmail.eu/paul/dbmail/snapshot/ \
 		http://www.dbmail.org/download/3.2/

Modified: head/mail/dbmail/files/patch-acinclude.m4
==============================================================================
--- head/mail/dbmail/files/patch-acinclude.m4	Sun Mar 29 09:33:24 2020	(r529784)
+++ head/mail/dbmail/files/patch-acinclude.m4	Sun Mar 29 09:36:30 2020	(r529785)
@@ -1,6 +1,6 @@
 --- acinclude.m4.orig	2015-01-25 10:20:50 UTC
 +++ acinclude.m4
-@@ -221,7 +221,7 @@ if ( test [ "x$lookforldap" != "xno" ] |
+@@ -221,7 +221,7 @@ if ( test [ "x$lookforldap" != "xno" ] || test [ "x$lo
          dnl See if we already have the paths we need in the environment.
  	dnl ...but only if --with-ldap was given without a specific path.
          if ( test [ "x$lookforldap" = "xyes" ] || test [ "x$lookforauthldap" = "xyes" ] ); then
@@ -9,7 +9,7 @@
              if test [ "x$LDAPLIB" != "xfailed" ]; then
                  break
              fi
-@@ -233,7 +233,7 @@ if ( test [ "x$lookforldap" != "xno" ] |
+@@ -233,7 +233,7 @@ if ( test [ "x$lookforldap" != "xno" ] || test [ "x$lo
              SAVE_CFLAGS=$CFLAGS
  	    dnl The headers might be in a funny place, so we need to use -Ipath
              CFLAGS="$CFLAGS -L$TEST_PATH $LDAPINC"
@@ -18,7 +18,7 @@
              CFLAGS=$SAVE_CFLAGS
              if test [ "x$LDAPLIB" != "xfailed" ]; then
                  break 2
-@@ -247,7 +247,7 @@ if ( test [ "x$lookforldap" != "xno" ] |
+@@ -247,7 +247,7 @@ if ( test [ "x$lookforldap" != "xno" ] || test [ "x$lo
          AC_MSG_ERROR([Could not find LDAP library.])
      else
          AC_DEFINE([AUTHLDAP], 1, [Define if LDAP will be used.])
@@ -27,7 +27,16 @@
          AC_SUBST(LDAPLIB)
          AC_SUBST(LDAPINC)
          AUTHALIB="modules/.libs/libauth_ldap.a"
-@@ -339,7 +339,7 @@ AC_DEFUN([DM_CHECK_EVENT], [
+@@ -291,6 +291,8 @@ AC_DEFUN([DM_CHECK_ZDB], [dnl
+ 		[ZDBLIB="-lzdb"], 
+ 		[ZDBLIB="failed"],
+ 	[[
++#include <stdbool.h>
++#include <zdb.h>
+ #include <URL.h>
+ #include <ResultSet.h>
+ #include <PreparedStatement.h>
+@@ -339,7 +341,7 @@ AC_DEFUN([DM_CHECK_EVENT], [
  
  AC_DEFUN([DM_CHECK_SSL], [
  	AC_CHECK_HEADERS([openssl/ssl.h],
@@ -36,7 +45,7 @@
  	if test [ "x$SSLLIB" = "xfailed" ]; then
  		AC_MSG_ERROR([Could not find OPENSSL library.])
  	else
-@@ -539,15 +539,15 @@ AC_DEFUN([CMU_SOCKETS], [
+@@ -539,15 +541,15 @@ AC_DEFUN([CMU_SOCKETS], [
  	save_LIBS="$LIBS"
  	SOCKETLIB=""
  	AC_CHECK_FUNC(connect, :,

Modified: head/mail/dbmail/files/patch-src_dbmail.h.in
==============================================================================
--- head/mail/dbmail/files/patch-src_dbmail.h.in	Sun Mar 29 09:33:24 2020	(r529784)
+++ head/mail/dbmail/files/patch-src_dbmail.h.in	Sun Mar 29 09:36:30 2020	(r529785)
@@ -1,14 +1,22 @@
 --- src/dbmail.h.in.orig	2015-01-25 10:20:50 UTC
 +++ src/dbmail.h.in
-@@ -155,6 +155,11 @@
- #include <endian.h>
+@@ -97,6 +97,7 @@
+ #include <ldap.h>
  #endif
  
++#include <zdb.h>
+ #include <URL.h>
+ #include <ResultSet.h>
+ #include <PreparedStatement.h>
+@@ -156,6 +157,11 @@
+ #ifdef HAVE_ENDIAN_H
+ #include <endian.h>
+ #endif
++
 +#ifdef HAVE_CONFIG_H
 +#include "config.h"
 +#endif
 +
-+
+ 
  #define GETCONFIGVALUE(key, sect, var) \
  	config_get_value(key, sect, var); \
- 	if (strlen(var) > 0) \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003290936.02T9aUhE096816>