diff options
author | marino <marino@pkgsrc.org> | 2014-04-28 13:04:20 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2014-04-28 13:04:20 +0000 |
commit | 14bbd97bbb36354af48fe856b7a97ba1613dba57 (patch) | |
tree | f9fc355271bf496dd52dc55f1c55007a4abab2d2 /www | |
parent | e05b81cd5ecb4bb37d35041b5d2664725922d531 (diff) | |
download | pkgsrc-14bbd97bbb36354af48fe856b7a97ba1613dba57.tar.gz |
www/aws: Disable shared runtime option ahead of GNAT 4.9
As seen on FreeBSD 8, aws doesn't build with the shared runtime option
with the upcoming gcc-aux version 4.9.0. Disable the option completely.
The option may return when AWS is updated to the latest version.
Diffstat (limited to 'www')
-rw-r--r-- | www/aws/Makefile | 4 | ||||
-rw-r--r-- | www/aws/options.mk | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/www/aws/Makefile b/www/aws/Makefile index 9424cfc6001..cff3fe50653 100644 --- a/www/aws/Makefile +++ b/www/aws/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.14 2014/02/12 23:18:43 tron Exp $ +# $NetBSD: Makefile,v 1.15 2014/04/28 13:04:20 marino Exp $ # DISTNAME= aws-${AWS_VERSION} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= www MASTER_SITES= http://downloads.dragonlace.net/src/ EXTRACT_SUFX= .tar.bz2 diff --git a/www/aws/options.mk b/www/aws/options.mk index d2465db1ab8..c91f5cad0db 100644 --- a/www/aws/options.mk +++ b/www/aws/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.7 2013/07/07 23:46:50 marino Exp $ +# $NetBSD: options.mk,v 1.8 2014/04/28 13:04:20 marino Exp $ # xmlada is built-in (not optional) due to gprbuild dependency @@ -12,7 +12,7 @@ PKG_OPTIONS_VAR= PKG_OPTIONS.aws PKG_OPTIONS_OPTIONAL_GROUPS= slayer PKG_OPTIONS_GROUP.slayer= ssl gnutls -PKG_SUPPORTED_OPTIONS= ldap inet6 debug disable-shared-rt relocatable +PKG_SUPPORTED_OPTIONS= ldap inet6 debug relocatable PKG_SUGGESTED_OPTIONS= ssl .include "../../mk/bsd.prefs.mk" @@ -89,9 +89,9 @@ DOTBUILD=debug ## Shared Runtime Library ## ############################## -.if !empty(PKG_OPTIONS:Mdisable-shared-rt) +#.if !empty(PKG_OPTIONS:Mdisable-shared-rt) CONFIGURE_ARGS+= ENABLE_SHARED=false -.endif +#.endif ############################ ## Default Library Type ## |