1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* Generated from ./ldap_config.hin on */
- /* $OpenLDAP$ */
- /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
- *
- * Copyright 1998-2024 The OpenLDAP Foundation.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted only as authorized by the OpenLDAP
- * Public License.
- *
- * A copy of this license is available in file LICENSE in the
- * top-level directory of the distribution or, alternatively, at
- * <http://www.OpenLDAP.org/license.html>.
- */
- /*
- * This file works in conjunction with OpenLDAP configure system.
- * If you do no like the values below, adjust your configure options.
- */
- #ifndef _LDAP_CONFIG_H
- #define _LDAP_CONFIG_H
- /* directory separator */
- #ifndef LDAP_DIRSEP
- #ifndef _WIN32
- #define LDAP_DIRSEP "/"
- #else
- #define LDAP_DIRSEP "\\"
- #endif
- #endif
- /* directory for temporary files */
- #if defined(_WIN32)
- # define LDAP_TMPDIR "C:\\." /* we don't have much of a choice */
- #elif defined( _P_tmpdir )
- # define LDAP_TMPDIR _P_tmpdir
- #elif defined( P_tmpdir )
- # define LDAP_TMPDIR P_tmpdir
- #elif defined( _PATH_TMPDIR )
- # define LDAP_TMPDIR _PATH_TMPDIR
- #else
- # define LDAP_TMPDIR LDAP_DIRSEP "tmp"
- #endif
- /* directories */
- #ifndef LDAP_BINDIR
- #define LDAP_BINDIR "/var/empty/tmp/out/bin"
- #endif
- #ifndef LDAP_SBINDIR
- #define LDAP_SBINDIR "/var/empty/tmp/out/sbin"
- #endif
- #ifndef LDAP_DATADIR
- #define LDAP_DATADIR "/var/empty/openldap-2.6.9/share/openldap"
- #endif
- #ifndef LDAP_SYSCONFDIR
- #define LDAP_SYSCONFDIR "/var/empty/openldap-2.6.9/etc/openldap"
- #endif
- #ifndef LDAP_LIBEXECDIR
- #define LDAP_LIBEXECDIR "/var/empty/tmp/out/libexec"
- #endif
- #ifndef LDAP_MODULEDIR
- #define LDAP_MODULEDIR "/var/empty/tmp/out/libexec/openldap"
- #endif
- #ifndef LDAP_RUNDIR
- #define LDAP_RUNDIR "/var/empty/openldap-2.6.9/var"
- #endif
- #ifndef LDAP_LOCALEDIR
- #define LDAP_LOCALEDIR ""
- #endif
- #endif /* _LDAP_CONFIG_H */
|