/* Generated from ./ldap_config.hin on Wed 22 Dec 2021 05:22:52 PM CET */1/* $OpenLDAP$ */2/* This work is part of OpenLDAP Software <http://www.openldap.org/>.3*4* Copyright 1998-2022 The OpenLDAP Foundation.5* All rights reserved.6*7* Redistribution and use in source and binary forms, with or without8* modification, are permitted only as authorized by the OpenLDAP9* Public License.10*11* A copy of this license is available in file LICENSE in the12* top-level directory of the distribution or, alternatively, at13* <http://www.OpenLDAP.org/license.html>.14*/1516/*17* This file works in conjunction with OpenLDAP configure system.18* If you do no like the values below, adjust your configure options.19*/2021#ifndef _LDAP_CONFIG_H22#define _LDAP_CONFIG_H2324/* directory separator */25#ifndef LDAP_DIRSEP26#ifndef _WIN3227#define LDAP_DIRSEP "/"28#else29#define LDAP_DIRSEP "\\"30#endif31#endif3233/* directory for temporary files */34#if defined(_WIN32)35# define LDAP_TMPDIR "C:\\." /* we don't have much of a choice */36#elif defined( _P_tmpdir )37# define LDAP_TMPDIR _P_tmpdir38#elif defined( P_tmpdir )39# define LDAP_TMPDIR P_tmpdir40#elif defined( _PATH_TMPDIR )41# define LDAP_TMPDIR _PATH_TMPDIR42#else43# define LDAP_TMPDIR LDAP_DIRSEP "tmp"44#endif4546/* directories */47#ifndef LDAP_BINDIR48#define LDAP_BINDIR ""49#endif50#ifndef LDAP_SBINDIR51#define LDAP_SBINDIR ""52#endif53#ifndef LDAP_DATADIR54#define LDAP_DATADIR ""55#endif56#ifndef LDAP_SYSCONFDIR57#define LDAP_SYSCONFDIR ""58#endif59#ifndef LDAP_LIBEXECDIR60#define LDAP_LIBEXECDIR ""61#endif62#ifndef LDAP_MODULEDIR63#define LDAP_MODULEDIR ""64#endif65#ifndef LDAP_RUNDIR66#define LDAP_RUNDIR ""67#endif68#ifndef LDAP_LOCALEDIR69#define LDAP_LOCALEDIR ""70#endif717273#endif /* _LDAP_CONFIG_H */747576