home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ldapsdk.zip / LDAPTUT.TXT < prev    next >
Text File  |  2001-11-27  |  2KB  |  59 lines

  1. LDAP SDK for OS/2 0.00
  2. based on OpenLDAP 2.0.15 (http://www.openldap.com)
  3.  
  4. YANO Takashi (tyano@tk.airnet.ne.jp)
  5.  
  6. History:
  7. 2001-11-16 0.00: Initial release
  8.  
  9. files:
  10. h/ include files for OS/2
  11. lib/ static and import library files for OS/2
  12.    liblldap.lib (static link library for IBM VisualAge C/C++ 3.0)
  13.    libllber.lib (static link library for IBM VisualAge C/C++ 3.0)
  14.    liblldif.lib (static link library for IBM VisualAge C/C++ 3.0)
  15.    ldapdll.lib   (import library to use with IBM TCP/IP 4.0)
  16.    ldapdll41.lib (import library to use with IBM TCP/IP 4.1)
  17. dll/ dynamic library files for OS/2
  18.    ldapdll.dll   (dynamic link library to use with IBM TCP/IP 4.0)
  19.    ldapdll41.dll (dynamic link library to use with IBM TCP/IP 4.1)
  20. src/ modified SDK *.c files for OS/2
  21. include/ OpenLDAP 2.0.15 source tree's (no change)
  22. libraries/ OpenLDAP 2.0.15 source tree's (no change)
  23. doc/ OpenLDAP 2.0.15 source tree's (no change)
  24. makefile
  25. build.cmd
  26. ldapdll.def
  27. ldapdll41.def
  28.  
  29. How to use:
  30. icc -C -Gm -I\ldapsdl\h yourprog.c
  31. icc yourprog.obj libldap.lib liblber.lib libldif.lib tcp32dll.lib so32dll.lib
  32. icc yourprog.obj ldapdll.lib
  33. icc yourprog.obj ldapdll41.lib
  34.  
  35. Note:
  36. OS/2 Warp 4 and later OS/2s have TCP/IP 4.0 runtime.
  37. OS/2 Warp Server for e-business and later OS/2s have TCP/IP 4.1 runtime.
  38. If you want for your LDAP programs to work on any OS/2s, I recommend you to use
  39. ldapdll.lib or libldap.lib/liblber.lib/libldif.lib.
  40. The programs linked with ldapdll.lib must work with ldapdll.dll.
  41. The programs linked with ldapdll41.lib must work with ldapdll41.dll.
  42. The include path of the SDK must be H, not INCLUDE.
  43.  
  44. How to build:
  45.  
  46. build clean
  47. clean up files
  48.  
  49. build tcpip41
  50. build ldapdll41.dll and ldapdll41.lib
  51.  
  52. build tcpip40
  53. build ldapdll.dll and ldapdll.lib
  54.  
  55. build
  56. build libldap.lib and liblber.lib and libldif.lib
  57.  
  58.  
  59.