diff options
author | wiz <wiz@pkgsrc.org> | 2007-09-21 12:58:12 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-09-21 12:58:12 +0000 |
commit | 4a9f6b5c9470f2a48d4f962a9d52ace9f46a7210 (patch) | |
tree | e6866b255d7e586f3d657e49bad5bd4a01dee782 /devel/GConf/patches/patch-ad | |
parent | 1512056c891ad4d94cbf8383a3a66f30fe786f4d (diff) | |
download | pkgsrc-4a9f6b5c9470f2a48d4f962a9d52ace9f46a7210.tar.gz |
Rename GConf2 to GConf and GConf2-ui to GConf-ui, to match the
upstream name.
Diffstat (limited to 'devel/GConf/patches/patch-ad')
-rw-r--r-- | devel/GConf/patches/patch-ad | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/devel/GConf/patches/patch-ad b/devel/GConf/patches/patch-ad new file mode 100644 index 00000000000..151bbdca1cf --- /dev/null +++ b/devel/GConf/patches/patch-ad @@ -0,0 +1,17 @@ +$NetBSD: patch-ad,v 1.5 2007/09/21 12:58:14 wiz Exp $ + +Needed for Solaris 9. Without the <lber.h> header, struct berval, which +is used as a member of another struct in <ldap.h>, has an unknown size. + +--- backends/evoldap-backend.c.orig 2007-03-02 22:10:18.000000000 +0000 ++++ backends/evoldap-backend.c +@@ -25,6 +25,9 @@ + #include <unistd.h> + #include <string.h> + #include <time.h> ++#ifdef __sun ++#include <lber.h> ++#endif + #include <ldap.h> + #include <libxml/parser.h> + #include <libxml/xpath.h> |