You are currently viewing a snapshot of www.mozilla.org taken on April 21, 2008. Most of this content is highly out of date (some pages haven't been updated since the project began in 1998) and exists for historical purposes only. If there are any pages on this archive site that you think should be added back to www.mozilla.org, please file a bug.



The Mozilla LDAP C SDK

THIS PAGE HAS BEEN MOVED

NOTE: This page has moved to the wiki - http://wiki.mozilla.org/LDAP_C_SDK

The information provided here is for historical purposes only.

Contact: Mark Smith <mcs@pearlcrescent.com>
Discussion: mozilla.dev.tech.ldap

Latest News - 2/13/2006

New release - 5.17 - CVS tag LDAPCSDK_5_1_7_RTM. This release has support for building on Windows using cygwin and the free MSVC compilers and SDKs. It also has support for HP-UX on IPF (32 bit and 64 bit). 5.17 has support for building with the Mozilla client and we're working with the client team so they can use 5.17 as the basis for their new branch.

News (updated 1/17/2006)

There is a lot of bug fixing going on now, so if you have any requests, now is a good time to get them in to be examined.

New platform support - The CVS head now has support for building on linux x86_64, HP-UX IA64, and Solaris using gcc. See below for build instructions.

Latest news (updated 5/10/2005)

The latest release is 5.16. This release contains a fix for using startTLS with the command line tools as well as some configuration and Makefile changes for building with gcc on Solaris (32 bit and 64 bit) - bugs 291993, 293042, and 293199. The CVS tag is LDAPCSDK_5_1_6_RTM.

The previous release was 5.15, CVS tag LDAPCSDK_5_1_5_RTM.

Documentation

Checking Out the Source Code

  1. Get the CVS client and set your computer up mozilla work. Read through the instructions on using CVS. Make sure you have set your CVSROOT environment variable and that you have successfully executed the cvs login command.
  2. Pull the current LDAP C SDK code (which is located on the CVS trunk) using this command: cvs co -P [-r currentrelease] DirectorySDKSourceC The most current release is LDAPCSDK_5_1_7_RTM, so to pull this version (recommended), use this command: cvs co -P -r LDAPCSDK_5_1_7_RTM DirectorySDKSourceC
  3. Pull the code for libraries that LDAP C SDK depends on. Pull NSPR, NSS, and DBM (used by NSS) using these commands:
    cvs co -r NSPR_4_6_1_RTM mozilla/nsprpub
    cvs co -r NSS_3_11_RTM mozilla/security/coreconf mozilla/security/nss
    cvs co -r DBM_1_61_RTM mozilla/dbm mozilla/security/dbm
    
    There is an optional package called SVRCORE which provides secure PIN management for the command line and Windows clients. This is recommended for using the command line tools with SSL, for a more secure environment.
    cvs co -r SVRCORE_4_0_1_RTM mozilla/security/svrcore [mozilla/security/coreconf]
    
    Add mozilla/security/coreconf if you didn't checkout NSS. Alternatively, you can download stable binary releases of NSPR and NSS and drop them into your source tree under mozilla/dist.

Obtaining Build Tools and Setting Up Your Environment

Follow these instructions to obtain the necessary build tools:

Follow these instructions to set up your environment:

  • Microsoft Windows Note that MOZCONFIG is not used for LDAP C SDK builds, so it is safe to leave it unset.
  • Solaris using GCC (instead of the Sun/Forte compiler)
    • Requires GCC 3.4 or later
    • Make sure the GNU gcc, g++, ld, ar, and ranlib are in your PATH ahead of the ones in /usr/ccs/bin or elsewhere.
    • LD_LIBRARY_PATH must include the libgcc and libstdc++ libraries - note that if you are building 64 bit binaries, you must use the 64 bit libraries in the lib/sparcv9 directory instead of the 32 bit versions in the lib directory.
    • Use CXX=g++ CC=gcc when calling configure - also add CXXFLAGS=-m64 CFLAGS=-m64 if building 64 bit binaries
  • Other Linux and Unix. No environment variables need to be set.

Building using autoconf (preferred method)

NOTE: You must use GNU make (called gmake on some platforms).
  1. Build NSPR and NSS (if not using binary releases of those components) by executing these commands:
    cd mozilla/security/nss
    make nss_build_all [USE_64=1]
    
  2. [Optional - see above] Build the SVRCORE module:
    cd mozilla/security/svrcore
    make [USE_64=1]
    
  3. Read the NSS Build Instructions and the NSPR Build Instructions if you run into problems. Note that the instructions for NSS say to use the NSS_3_9_RTM tag to pull the source, but use NSS_3_11_RTM instead.
  4. Build the LDAP C SDK libraries:
    cd mozilla/directory/c-sdk
    ./configure --with-nss [--enable-64bit]
    make [USE_64=1]
    
  5. Build the LDAP C SDK libraries and command line tools:
    cd mozilla/directory/c-sdk
    ./configure --with-nss [--enable-64bit]
    make BUILDCLU=1 [USE_64=1]
    
  6. Build the LDAP C SDK libraries and command line tools with SVRCORE:
    cd mozilla/directory/c-sdk
    ./configure --with-svrcore [--enable-64bit]
    make BUILDCLU=1 HAVE_SVRCORE=1 [USE_64=1]
    
    Note that since svrcore requires NSS, --with-svrcore implies --with-nss
  7. If your build is successful, the LDAP C SDK libraries, command line tools, and header files will be placed under mozilla/dist/<OSNAME>.OBJ/.

    If you like, you can run an acceptance test.

    Note that you can build without SSL support by skipping the NSS related build steps and omitting the --with-nss on the configure command. You will still need a binary copy of NSPR or you will need to build NSPR from source.

Building without using autoconf (older method)

  1. Build NSPR and NSS (if not using binary releases of those components) by executing these commands:
    cd mozilla/security/nss
    
    gmake nss_build_all
    
    Read the NSS Build Instructions and the NSPR Build Instructions if you run into problems. Note that the instructions for NSS say to use the NSS_3_9_RTM tag to pull the source, but use NSS_3_9_3_RTM instead.
  2. Build the LDAP C SDK (libraries and tools):
    cd mozilla/directory
    gmake buildLdapClientSDK BUILD_CLU=1 COMPS_FROM_OBJDIR=1 [HAVE_SVRCORE=1]
    
    Other things can be included on the gmake command line used to build the LDAP C SDK. Execute a gmake command by itself (without any targets) to see the list of allowed options. HAVE_SVRCORE=1 is optional but recommended if using NSS.

    If your build is successful, the LDAP C SDK libraries, command line tools, and header files will be placed under mozilla/dist/<OSNAME>.OBJ/.

    If you like, you can run an acceptance test.

More Information

If you have questions or want to discuss issues about the LDAP C SDK or any of the Mozilla LDAP source products, post a message to the mozilla.dev.tech.ldap newsgroup.

For more information about the available newsgroups and mailing lists, see the Mozilla community page.