home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ldapsdk.zip / h / ldap_config.h < prev    next >
C/C++ Source or Header  |  2000-07-05  |  2KB  |  67 lines

  1. /* $OpenLDAP: pkg/ldap/include/ldap_config.nt,v 1.2.2.3 2000/07/04 17:58:48 kurt Exp $ */
  2. /*
  3.  * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms are permitted only
  7.  * as authorized by the OpenLDAP Public License.  A copy of this
  8.  * license is available at http://www.OpenLDAP.org/license.html or
  9.  * in file LICENSE in the top-level directory of the distribution.
  10.  */
  11.  
  12. /*
  13.  * This file works in confunction with OpenLDAP setup.mak system.
  14.  * If you do no like the values below, adjust your configure options.
  15.  */
  16.  
  17. #ifndef _LDAP_CONFIG_H
  18. #define _LDAP_CONFIG_H
  19.  
  20. /* directory separator */
  21. #ifndef LDAP_DIRSEP
  22. #define LDAP_DIRSEP "\\"
  23. #endif
  24.  
  25. /* directory for temporary files */
  26. #if defined( _P_tmpdir )
  27. #define LDAP_TMPDIR _P_tmpdir
  28. #else
  29. #define LDAP_TMPDIR "\\"
  30. #endif
  31.  
  32. /* directories */
  33. #ifndef LDAP_PREFIX
  34. #define LDAP_PREFIX            "C:\\OpenLDAP"
  35. #endif
  36. #ifndef LDAP_BINDIR
  37. #define LDAP_BINDIR            LDAP_PREFIX "\\bin"
  38. #endif
  39. #ifndef LDAP_SBINDIR
  40. #define LDAP_SBINDIR        LDAP_PREFIX "\\sbin"
  41. #endif
  42. #ifndef LDAP_DATADIR
  43. #define LDAP_DATADIR        LDAP_PREFIX "\\share"
  44. #endif
  45. #ifndef LDAP_SYSCONFDIR
  46. #define LDAP_SYSCONFDIR        LDAP_PREFIX "\\sysconf"
  47. #endif
  48. #ifndef LDAP_LIBEXECDIR
  49. #define LDAP_LIBEXECDIR        LDAP_PREFIX "\\libexec"
  50. #endif
  51. #ifndef LDAP_RUNDIR
  52. #define LDAP_RUNDIR            LDAP_PREFIX "\\run"
  53. #endif
  54.  
  55. /* command locations */
  56. #ifndef LDAP_EDITOR
  57. #define LDAP_EDITOR            "%EDITOR%"
  58. #endif
  59. #ifndef LDAP_FINGER
  60. #define LDAP_FINGER            "%FINGER%"
  61. #endif
  62. #ifndef LDAP_SENDMAIL
  63. #define LDAP_SENDMAIL        "%SENDMAIL%"
  64. #endif
  65.  
  66. #endif /* _LDAP_CONFIG_H */
  67.