1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00

- Update to 3.2.6

- Fix build on recent CURRENT
- Mark MAKE_JOBS_UNSAFE [1]

Feature safe:	yes
Reported by:	pointyhat via pav [1]
This commit is contained in:
Beat Gaetzi 2010-06-29 19:01:46 +00:00
parent 12b2fc2212
commit d7f4297614
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=257168
3 changed files with 19 additions and 4 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= virtualbox-ose
DISTVERSION= 3.2.4
DISTVERSION= 3.2.6
CATEGORIES= emulators kld
MASTER_SITES= http://tmp.chruetertee.ch/ \
http://freebsd.unixfreunde.de/sources/ \
@ -27,6 +27,7 @@ WRKSRC= ${WRKDIR}/VirtualBox-${PORTVERSION}_OSE
USE_RC_SUBR= vboxguest
ONLY_FOR_ARCHS= i386 amd64
USE_BZIP2= yes
MAKE_JOBS_UNSAFE= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --nofatal \
@ -102,6 +103,10 @@ IGNORE= requires kernel sources
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 900012
EXTRA_PATCHES= ${FILESDIR}/extrapatch-include-iprt-string.h
.endif
pre-everything::
.if ${ARCH} == "amd64"
.if !exists(/usr/lib32)

View File

@ -1,3 +1,3 @@
MD5 (VirtualBox-3.2.4-OSE.tar.bz2) = 80052833c8d9fd162c29fbf91cedd3d0
SHA256 (VirtualBox-3.2.4-OSE.tar.bz2) = 49e69fd357a80d2537a8139f970a23af9aa5e2f6c3179eefca69d1a75e1fb25c
SIZE (VirtualBox-3.2.4-OSE.tar.bz2) = 57492454
MD5 (VirtualBox-3.2.6-OSE.tar.bz2) = 65b822ab3c08ff882d9621101996dc14
SHA256 (VirtualBox-3.2.6-OSE.tar.bz2) = 0cacfc0f6360d4052c16fef5b0ca262b71f9aec8ceb3bb6fb140477b9076ce48
SIZE (VirtualBox-3.2.6-OSE.tar.bz2) = 57899455

View File

@ -0,0 +1,10 @@
--- include/iprt/string.h.orig 2010-04-28 01:02:16.000000000 +0200
+++ include/iprt/string.h 2010-06-17 16:20:14.000000000 +0200
@@ -60,7 +60,6 @@
#if (defined(RT_OS_DARWIN) && defined(KERNEL)) \
|| (defined(RT_OS_FREEBSD) && defined(_KERNEL))
RT_C_DECLS_BEGIN
-void *memchr(const void *pv, int ch, size_t cb);
char *strpbrk(const char *pszStr, const char *pszChars);
RT_C_DECLS_END
#endif