Hi I would like to contribute and maintain the LDAP libraries and clients from the openldap package. Gerrit (thanks a lot for your tip) pointed out that the previous problem with my shared build could be a permission problem. He was right, the dlls had 644 after installation and couldn't be loaded. After changing it to 755 everything was ok. So this time we have a shared build and the distribution is also split up in different packages see below:
* http://www.openldap.org/ (Homepage) * http://www.openldap.org/software/download/ (Download location) The libraries are needed for example to LDAP enable xemacs. A happy new year Volker -- Here are the setup.hint files: * openldap-2.1.25-1.tar.bz2 sdesc: "Lightweight Directory Access Protocol clients" ldesc: "Lightweight Directory Access Protocol clients" category: Libs Net requires: cygwin libopenldap2 minires openssl * openldap-devel-2.1.25-1.tar.bz2 sdesc: "Lightweight Directory Access Protocol libraries and headers" ldesc: "Lightweight Directory Access Protocol libraries and headers" category: Libs Net requires: cygwin libopenldap2 minires openssl external-source: openldap * libopenldap2-2.1.25-1.tar.bz2 sdesc: "Lightweight Directory Access Protocol runtime" ldesc: "Lightweight Directory Access Protocol runtime" category: Libs Net requires: cygwin minires openssl external-source: openldap -------------------------------- cut here ------------------------------------ #!/bin/bash mkdir -p openldap openldap/openldap-devel openldap/libopenldap2 cd openldap wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/setup.hint wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/openldap-2.1.25-1.tar.bz2 wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/openldap-2.1.25-1-src.tar.bz2 cd openldap-devel wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/openldap-devel/setup.hint wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/openldap-devel/openldap-devel-2.1.25-1.tar.bz2 cd ../libopenldap2 wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/libopenldap2/setup.hint wget http://cygwin.dev.wapme.net/packages/vzell/cygwin/release/openldap/libopenldap2/libopenldap2-2.1.25-1.tar.bz2 -------------------------------- cut here ------------------------------------