diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-03-11 10:29:30 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-03-11 10:29:30 +0000 |
commit | 74a237d07977c01efefcddbf732b6aa6f387408d (patch) | |
tree | ae315a78fc72980f8a3a1e008dfffad98f159f04 /lang/ocaml | |
parent | 99c8d04e0284064c0979b28156b923ae36b47594 (diff) | |
download | pkgsrc-74a237d07977c01efefcddbf732b6aa6f387408d.tar.gz |
Don't limit the stub functions to x86_64 only on newer Darwin, i386
needs them too. Fixes various dependencies.
Bump PKGREVISION.
Diffstat (limited to 'lang/ocaml')
-rw-r--r-- | lang/ocaml/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/ocaml/Makefile b/lang/ocaml/Makefile index 1f68a42223d..d55b8c76e2a 100644 --- a/lang/ocaml/Makefile +++ b/lang/ocaml/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.88 2013/12/21 16:21:20 christos Exp $ +# $NetBSD: Makefile,v 1.89 2014/03/11 10:29:30 jperkin Exp $ .include "Makefile.common" -PKGREVISION= 1 +PKGREVISION= 2 CONFIGURE_ARGS+= -no-tk CONFIGURE_ARGS+= -cc ${CC} @@ -19,7 +19,7 @@ UNLIMIT_RESOURCES= stacksize # Stub libraries for functions missing from base system. .if !empty(MACHINE_PLATFORM:MDarwin-*-powerpc) || \ !empty(MACHINE_PLATFORM:MDarwin-9.*-i386) || \ - !empty(MACHINE_PLATFORM:MDarwin-1[0-9].*-x86_64) || \ + !empty(MACHINE_PLATFORM:MDarwin-1[0-9].*) || \ ${OPSYS} == "DragonFly" || ${OPSYS} == "NetBSD" || \ ${OPSYS} == "FreeBSD" || ${OPSYS} == "SunOS" || \ ${OPSYS} == "Linux" |