diff options
author | Paul Richards <paul@FreeBSD.org> | 2001-04-17 18:37:39 +0000 |
---|---|---|
committer | Paul Richards <paul@FreeBSD.org> | 2001-04-17 18:37:39 +0000 |
commit | 15be191c34e0ed17f935ff0e9fa8f33a9f76b14e (patch) | |
tree | a9371fba1ef28bed6cfa1520ecd0e1dc1ed37532 /net/perldap/files/patch-01 | |
parent | Update to gnucash 1.4.11 (diff) |
This port requires the Mozilla ldapsdk rather than the Openldap one.
Update the port to use the moz prefix before the library and header
file names in order to pick up the Mozilla versions of those files.
This change is necesary now that ldapsdk has been updated to use
those prefixes to distinguish it from Openldap.
PR: ports/22721
Submitted by: "Charles N. Owens" <owensc@enc.edu>
Notes
Notes:
svn path=/head/; revision=41602
Diffstat (limited to 'net/perldap/files/patch-01')
-rw-r--r-- | net/perldap/files/patch-01 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/perldap/files/patch-01 b/net/perldap/files/patch-01 new file mode 100644 index 000000000000..8ad30a4cbb1d --- /dev/null +++ b/net/perldap/files/patch-01 @@ -0,0 +1,19 @@ +--- Makefile.PL.orig Tue Aug 24 18:30:46 1999 ++++ Makefile.PL Tue Aug 29 10:32:23 2000 +@@ -90,13 +90,13 @@ + + + opendir(DIR,$lib_ldap); +-@files = grep{/ldap|lber/} readdir(DIR); ++@files = grep{/mozldap|mozlber/} readdir(DIR); + closedir(DIR); + + if (!((@ldaplib = grep{/ldapssl.*\.($libexts)$/} @files) && $ssl_def)) + { +- @ldaplib = grep{/ldap.*\.($libexts)$/} @files; +- @lberlib = grep{/lber.*\.($libexts)$/} @files; ++ @ldaplib = grep{/mozldap.*\.($libexts)$/} @files; ++ @lberlib = grep{/mozlber.*\.($libexts)$/} @files; + } + + if ($#ldaplib < 0) |