pkgsrc/www/aws/patches/patch-demos_test__ldap_test__ldap.gpr
marino bb3560846e www/aws: Update to from version 2.10.0 to 3.1.0
There is no dedicated change log but version 2.10 was introduced to
pkgsrc 2.5 years ago.  The current capability is described by
http://docs.adacore.com/aws-docs/aws.html

This is roughly equivalent to Adacore release 2013 of aws.
The "gnutls" option was added as an alternative to ssl.
2013-07-07 23:46:50 +00:00

16 lines
606 B
Text

$NetBSD: patch-demos_test__ldap_test__ldap.gpr,v 1.3 2013/07/07 23:46:50 marino Exp $
Add -L$PREFIX/lib to linker flags to fix build.
--- demos/test_ldap/test_ldap.gpr.orig 2013-07-03 01:11:54.000000000 +0000
+++ demos/test_ldap/test_ldap.gpr
@@ -35,7 +35,8 @@ project Test_LDAP is
when "Windows_NT" =>
for Default_Switches ("Ada") use ("-lwldap32");
when others =>
- for Default_Switches ("Ada") use ("-lldap", "-llber");
+ for Default_Switches ("Ada") use ("-L@PREFIX@/lib",
+ "-lldap", "-llber");
end case;
end Linker;