1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Update to 4.1.12

- Fix PAM authentication for vboxwebsrv  [1]

PR:		ports/166614 [1]
Submitted by:	Landon Fuller <landonf@plausible.coop> [1]
Feature safe:	yes
This commit is contained in:
Bernhard Froehlich 2012-04-05 11:16:31 +00:00
parent d9c6cb1229
commit 9291a32e0c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294236
7 changed files with 22 additions and 11 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= virtualbox-ose
DISTVERSION= 4.1.10
DISTVERSION= 4.1.12
CATEGORIES= emulators kld
MASTER_SITES= http://tmp.chruetertee.ch/ \
http://freebsd.unixfreunde.de/sources/ \

View File

@ -1,2 +1,2 @@
SHA256 (VirtualBox-4.1.10.tar.bz2) = 47e3faa607b405ea1d31e65a35984374e44f09f44a0f40607da6a773b31a57bf
SIZE (VirtualBox-4.1.10.tar.bz2) = 73325320
SHA256 (VirtualBox-4.1.12.tar.bz2) = 4e4b9181a61ee9ccbe5fd28dbf528dde708fba490af5de6fac0d138b283b1d02
SIZE (VirtualBox-4.1.12.tar.bz2) = 73250628

View File

@ -6,7 +6,7 @@
#
PORTNAME= virtualbox-ose
DISTVERSION= 4.1.10
DISTVERSION= 4.1.12
CATEGORIES= emulators kld
MASTER_SITES= http://tmp.chruetertee.ch/ \
http://freebsd.unixfreunde.de/sources/ \

View File

@ -1,2 +1,2 @@
SHA256 (VirtualBox-4.1.10.tar.bz2) = 47e3faa607b405ea1d31e65a35984374e44f09f44a0f40607da6a773b31a57bf
SIZE (VirtualBox-4.1.10.tar.bz2) = 73325320
SHA256 (VirtualBox-4.1.12.tar.bz2) = 4e4b9181a61ee9ccbe5fd28dbf528dde708fba490af5de6fac0d138b283b1d02
SIZE (VirtualBox-4.1.12.tar.bz2) = 73250628

View File

@ -6,7 +6,7 @@
#
PORTNAME= virtualbox-ose
DISTVERSION= 4.1.10
DISTVERSION= 4.1.12
CATEGORIES= emulators
MASTER_SITES= http://tmp.chruetertee.ch/ \
http://freebsd.unixfreunde.de/sources/ \

View File

@ -1,4 +1,4 @@
SHA256 (VirtualBox-4.1.10.tar.bz2) = 47e3faa607b405ea1d31e65a35984374e44f09f44a0f40607da6a773b31a57bf
SIZE (VirtualBox-4.1.10.tar.bz2) = 73325320
SHA256 (VBoxGuestAdditions_4.1.10.iso) = 70e859545cff07ce33c38f8c970856907cb1961ebf15a639505092e205614817
SIZE (VBoxGuestAdditions_4.1.10.iso) = 50749440
SHA256 (VirtualBox-4.1.12.tar.bz2) = 4e4b9181a61ee9ccbe5fd28dbf528dde708fba490af5de6fac0d138b283b1d02
SIZE (VirtualBox-4.1.12.tar.bz2) = 73250628
SHA256 (VBoxGuestAdditions_4.1.12.iso) = 7dce13dd99c8b4757d56f5bada19a61a3ad50c69d7e0d9c245c0b88f50c0c245
SIZE (VBoxGuestAdditions_4.1.12.iso) = 50776064

View File

@ -0,0 +1,11 @@
--- src/VBox/HostServices/auth/pam/VBoxAuthPAM.c.orig 2012-04-03 14:11:56.000000000 +0200
+++ src/VBox/HostServices/auth/pam/VBoxAuthPAM.c 2012-04-05 12:44:48.000000000 +0200
@@ -62,6 +62,8 @@
/* The name of the PAM library */
# ifdef RT_OS_SOLARIS
# define PAM_LIB_NAME "libpam.so.1"
+# elif defined(RT_OS_FREEBSD)
+# define PAM_LIB_NAME "libpam.so"
# else
# define PAM_LIB_NAME "libpam.so.0"
# endif