zx2c4 15/05/27 12:39:40
Added: opensmtpd-5.4.5_p2-setgroups-header.patch
opensmtpd-5.4.5_p2-libevent-version-macro.patch
Removed: opensmtpd-5.4.4_p1-setgroups-header.patch
Log:
Version bump
(Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --force, signed
Manifest commit with key 55758000)
Revision Changes Path
1.1
mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-setgroups-header.patch?rev=1.1&content-type=text/plain
Index: opensmtpd-5.4.5_p2-setgroups-header.patch
===================================================================
diff -ru opensmtpd-5.4.4p1/smtpd/ca.c opensmtpd-5.4.4p1-modified/smtpd/ca.c
--- opensmtpd-5.4.4p1/smtpd/ca.c 2014-12-24 11:46:55.000000000 +0100
+++ opensmtpd-5.4.4p1-modified/smtpd/ca.c 2015-01-08 17:09:37.845328217
+0100
@@ -30,6 +30,7 @@
#include <imsg.h>
#include <pwd.h>
#include <err.h>
+#include <grp.h>
#include <openssl/ssl.h>
#include <openssl/pem.h>
diff -ru opensmtpd-5.4.4p1/smtpd/pony.c opensmtpd-5.4.4p1-modified/smtpd/pony.c
--- opensmtpd-5.4.4p1/smtpd/pony.c 2014-12-24 11:46:55.000000000 +0100
+++ opensmtpd-5.4.4p1-modified/smtpd/pony.c 2015-01-08 17:09:47.117393942
+0100
@@ -35,6 +35,7 @@
#include <time.h>
#include <unistd.h>
#include <vis.h>
+#include <grp.h>
#include "smtpd.h"
#include "log.h"
1.1
mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/opensmtpd/files/opensmtpd-5.4.5_p2-libevent-version-macro.patch?rev=1.1&content-type=text/plain
Index: opensmtpd-5.4.5_p2-libevent-version-macro.patch
===================================================================
diff -ru opensmtpd-5.4.5p2/configure opensmtpd-5.4.5p2-fixed/configure
--- opensmtpd-5.4.5p2/configure 2015-04-29 22:53:03.000000000 +0200
+++ opensmtpd-5.4.5p2-fixed/configure 2015-05-27 14:20:48.977763792 +0200
@@ -19667,7 +19667,7 @@
if(fd == NULL)
exit(1);
- if ((rc = fprintf(fd ,"%s\n", _EVENT_VERSION)) <0)
+ if ((rc = fprintf(fd ,"%s\n", LIBEVENT_VERSION)) <0)
exit(1);
exit(0);
@@ -19794,7 +19794,7 @@
main ()
{
- exit(strcmp(event_get_version(), _EVENT_VERSION) == 0 ? 0 : 1);
+ exit(strcmp(event_get_version(), LIBEVENT_VERSION) == 0 ? 0 : 1);
;
return 0;
diff -ru opensmtpd-5.4.5p2/configure.ac opensmtpd-5.4.5p2-fixed/configure.ac
--- opensmtpd-5.4.5p2/configure.ac 2015-04-29 22:52:18.000000000 +0200
+++ opensmtpd-5.4.5p2-fixed/configure.ac 2015-05-27 14:21:00.868764207
+0200
@@ -2697,7 +2697,7 @@
if(fd == NULL)
exit(1);
- if ((rc = fprintf(fd ,"%s\n", _EVENT_VERSION)) <0)
+ if ((rc = fprintf(fd ,"%s\n", LIBEVENT_VERSION)) <0)
exit(1);
exit(0);
@@ -2773,7 +2773,7 @@
#include <stdlib.h>
#include <string.h>
]], [[
- exit(strcmp(event_get_version(), _EVENT_VERSION) == 0 ? 0 : 1);
+ exit(strcmp(event_get_version(), LIBEVENT_VERSION) == 0 ? 0 : 1);
]])],
[
AC_MSG_RESULT([yes])