diff options
author | Bernhard Froehlich <decke@FreeBSD.org> | 2013-01-03 13:37:12 +0000 |
---|---|---|
committer | Bernhard Froehlich <decke@FreeBSD.org> | 2013-01-03 13:37:12 +0000 |
commit | c99eac3bb883533949aa4699f3c272c5e7114d13 (patch) | |
tree | d3a0541d3b7981ce5b5583f38da42bca7033df6e /emulators/virtualbox-ose-legacy/files/patch-src-VBox-HostServices-auth-pam-VBoxAuthPAM.c | |
parent | - Update to 0.1.9998r2662 (diff) |
- Update to 4.1.24
- Fix building with libxslt newer than 1.1.26
Obtained from: https://www.virtualbox.org/ticket/10940
Notes
Notes:
svn path=/head/; revision=309875
Diffstat (limited to 'emulators/virtualbox-ose-legacy/files/patch-src-VBox-HostServices-auth-pam-VBoxAuthPAM.c')
-rw-r--r-- | emulators/virtualbox-ose-legacy/files/patch-src-VBox-HostServices-auth-pam-VBoxAuthPAM.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/emulators/virtualbox-ose-legacy/files/patch-src-VBox-HostServices-auth-pam-VBoxAuthPAM.c b/emulators/virtualbox-ose-legacy/files/patch-src-VBox-HostServices-auth-pam-VBoxAuthPAM.c new file mode 100644 index 000000000000..1344f3f2bd60 --- /dev/null +++ b/emulators/virtualbox-ose-legacy/files/patch-src-VBox-HostServices-auth-pam-VBoxAuthPAM.c @@ -0,0 +1,15 @@ +- Fix path for libpam.so on FreeBSD + +Submitted by: Landon Fuller <landonf at plausible.coop> +Sponsored by: Plausible Labs Cooperative, Inc. +--- 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 |