1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00

- Update to 1.0.2.

This is a bugfix release.  In particular it should ubreak build on
  PowerPC.
This commit is contained in:
Stanislav Sedov 2011-08-24 07:56:59 +00:00
parent 2fafb186c3
commit 3b7e736c2a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=280327
5 changed files with 5 additions and 44 deletions

View File

@ -6,8 +6,8 @@
#
PORTNAME= pam_af
PORTVERSION= 1.0.1
PORTREVISION= 2
PORTVERSION= 1.0.2
PORTREVISION= 0
CATEGORIES= security
MASTER_SITES= http://mbsd.msk.ru/dist/
@ -30,10 +30,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "powerpc"
BROKEN= Does not compile on powerpc
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (pam_af-1.0.1.tar.bz2) = 9f3ec18bc82a4f63320c1125046003cff68fd51c7d74877316349bd3a3cfd526
SIZE (pam_af-1.0.1.tar.bz2) = 18006
SHA256 (pam_af-1.0.2.tar.bz2) = 9276ad2eff18a373f5ab00ee302e5c6ab2266805b9668a5e248c94435457b050
SIZE (pam_af-1.0.2.tar.bz2) = 17991

View File

@ -1,11 +0,0 @@
--- common/pam_af.h.orig 2005-10-16 19:55:28.000000000 +0400
+++ common/pam_af.h 2008-08-03 12:00:10.000000000 +0400
@@ -37,7 +37,7 @@
#define CFGDB "/etc/pam_af.conf"
#define CFGDB_PERM (S_IRUSR | S_IWUSR)
-#ifdef _OPENPAM
+#if defined(OPENPAM) || defined(_OPENPAM)
# define PAM_AF_LOG(...) \
PAM_LOG(__VA_ARGS__)
# define PAM_AF_LOGERR(...) \

View File

@ -1,11 +0,0 @@
--- common/subr.c.orig 2006-11-07 03:22:37.000000000 +0300
+++ common/subr.c 2008-08-03 12:00:42.000000000 +0400
@@ -66,7 +66,7 @@
# define LOGERR(...) warnx(__VA_ARGS__)
#else /* !PAM_AF_DEFS */
# include <security/pam_appl.h>
-# ifdef _OPENPAM
+# if defined(OPENPAM) || defined(_OPENPAM)
# include <security/pam_mod_misc.h>
# include <security/openpam.h>
# endif

View File

@ -1,11 +0,0 @@
--- pam_af.c.orig 2006-11-07 03:05:53.000000000 +0300
+++ pam_af.c 2008-08-03 12:03:49.000000000 +0400
@@ -53,7 +53,7 @@
#include <security/pam_appl.h>
#include <security/pam_modules.h>
-#ifdef _OPENPAM
+#if defined(OPENPAM) || defined(_OPENPAM)
# include <security/openpam.h>
# include <security/pam_mod_misc.h>
#endif