summaryrefslogtreecommitdiff
path: root/www/aws
diff options
context:
space:
mode:
authormarino <marino>2013-04-27 13:02:48 +0000
committermarino <marino>2013-04-27 13:02:48 +0000
commitb21378017560851ca2e6901ddd81e5bad6d355b8 (patch)
tree34ddce7e564ff56524cb8f4a69571821cd9ce645 /www/aws
parentbefc1b831b150e0d208b1ddbfed839fac6b4ad2f (diff)
downloadpkgsrc-b21378017560851ca2e6901ddd81e5bad6d355b8.tar.gz
www/aws-demos: ldap fix
Oops, I thought the previous build passed. It was missing a directory creation and it needs to specifically pull in ldap and ssl buildlinks for those options, as well as update the link parameters. Ride on the revbump from a few minutes ago.
Diffstat (limited to 'www/aws')
-rw-r--r--www/aws/distinfo4
-rw-r--r--www/aws/options.mk4
-rw-r--r--www/aws/patches/patch-demos_test__ldap_test__ldap.gpr2
3 files changed, 5 insertions, 5 deletions
diff --git a/www/aws/distinfo b/www/aws/distinfo
index c487a772342..cf1dc610edf 100644
--- a/www/aws/distinfo
+++ b/www/aws/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2013/04/27 11:49:55 marino Exp $
+$NetBSD: distinfo,v 1.6 2013/04/27 13:02:48 marino Exp $
SHA1 (aws-2.10.0.1.tar.bz2) = 3ea20d4328951089f93caa3693eb24d67cf76594
RMD160 (aws-2.10.0.1.tar.bz2) = 8d6c2e9e681f18b16bbd79e76e6b65bb8f07a871
@@ -19,7 +19,7 @@ SHA1 (patch-bh) = 59f370db7e47d5fb18fa239dfc3396703f7251c8
SHA1 (patch-bi) = 3878eb24a44a23f119d78aad5b0c5bcfce1fc4a2
SHA1 (patch-bj) = 6e138dbe344600ea870e33b030662422cadf6cbc
SHA1 (patch-bk) = 7be4ff0eefa89a24d942fc38c55f81864dd483de
-SHA1 (patch-demos_test__ldap_test__ldap.gpr) = 4505d0b596eeb725a4e14355b72d8aa7d182c2a0
+SHA1 (patch-demos_test__ldap_test__ldap.gpr) = 0271d8c429f8fd3014ff169ded61f4b282243a38
SHA1 (patch-docs_docs.gpr) = acbe31da756c0cc3ee86132eedd0f0cc0ae6dd0e
SHA1 (patch-include_include.gpr) = 8e65a8238077df79fedaafa8b95eb51c8897b6c0
SHA1 (patch-src_soap_soap-message-xml.adb) = d7b84968c615c017fb33536d177ce8b4557e29dc
diff --git a/www/aws/options.mk b/www/aws/options.mk
index 6251fae003b..716a15632b7 100644
--- a/www/aws/options.mk
+++ b/www/aws/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.5 2013/04/27 11:49:56 marino Exp $
+# $NetBSD: options.mk,v 1.6 2013/04/27 13:02:48 marino Exp $
# xmlada is built-in (not optional) due to gprbuild dependency
@@ -58,7 +58,7 @@ CONFIGURE_ARGS+= SOCKET=openssl
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS+= LDAP=true
-DEPENDS+= openldap>=2.4:../../databases/openldap
+.include "../../databases/openldap-client/buildlink3.mk"
.endif
####################
diff --git a/www/aws/patches/patch-demos_test__ldap_test__ldap.gpr b/www/aws/patches/patch-demos_test__ldap_test__ldap.gpr
index b9a02633c2b..0423a453a07 100644
--- a/www/aws/patches/patch-demos_test__ldap_test__ldap.gpr
+++ b/www/aws/patches/patch-demos_test__ldap_test__ldap.gpr
@@ -5,7 +5,7 @@
for Default_Switches ("Ada") use ("-lwldap32");
when others =>
- for Default_Switches ("Ada") use ("-lldap");
-+ for Default_Switches ("Ada") use ("-L@PREFIX@/lib", "-lldap");
++ for Default_Switches ("Ada") use ("-L@PREFIX@/lib", "-lldap", "-llber");
end case;
end Linker;