mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-11-27 02:22:00 +08:00
136 lines
2.8 KiB
C
136 lines
2.8 KiB
C
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
||
*
|
||
* Copyright 1998-2004 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 the file LICENSE in the
|
||
* top-level directory of the distribution or, alternatively, at
|
||
* <http://www.OpenLDAP.org/license.html>.
|
||
*/
|
||
|
||
#ifndef _LDAP_PORTABLE_H
|
||
#define _LDAP_PORTABLE_H
|
||
|
||
/* end of preamble */
|
||
|
||
@TOP@
|
||
|
||
/* define this if needed to get reentrant functions */
|
||
#ifndef REENTRANT
|
||
#undef REENTRANT
|
||
#endif
|
||
#ifndef _REENTRANT
|
||
#undef _REENTRANT
|
||
#endif
|
||
|
||
/* define this if needed to get threadsafe functions */
|
||
#ifndef THREADSAFE
|
||
#undef THREADSAFE
|
||
#endif
|
||
#ifndef _THREADSAFE
|
||
#undef _THREADSAFE
|
||
#endif
|
||
#ifndef THREAD_SAFE
|
||
#undef THREAD_SAFE
|
||
#endif
|
||
#ifndef _THREAD_SAFE
|
||
#undef _THREAD_SAFE
|
||
#endif
|
||
|
||
#ifndef _SGI_MP_SOURCE
|
||
#undef _SGI_MP_SOURCE
|
||
#endif
|
||
|
||
/* define this if TIOCGWINSZ is defined in sys/ioctl.h */
|
||
#undef GWINSZ_IN_SYS_IOCTL
|
||
|
||
/* These are defined in ldap_features.h */
|
||
/*
|
||
LDAP_API_FEATURE_X_OPENLDAP_REENTRANT
|
||
LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
|
||
LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
|
||
LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
|
||
*/
|
||
|
||
/* These are defined in lber_types.h */
|
||
/*
|
||
LBER_INT_T
|
||
LBER_LEN_T
|
||
LBER_SOCKET_T
|
||
LBER_TAG_T
|
||
*/
|
||
|
||
/* define to character address type */
|
||
#undef caddr_t
|
||
|
||
/* define to signed size type */
|
||
#undef ssize_t
|
||
|
||
|
||
/* Leave that blank line there!! Autoheader needs it. */
|
||
|
||
@BOTTOM@
|
||
|
||
/* begin of postamble */
|
||
|
||
#ifdef _WIN32
|
||
/* don't suck in all of the win32 api */
|
||
# define WIN32_LEAN_AND_MEAN 1
|
||
#endif
|
||
|
||
#ifndef LDAP_NEEDS_PROTOTYPES
|
||
/* force LDAP_P to always include prototypes */
|
||
#define LDAP_NEEDS_PROTOTYPES 1
|
||
#endif
|
||
|
||
#ifndef LDAP_REL_ENG
|
||
#if (LDAP_VENDOR_VERSION == 000000) && !defined(LDAP_DEVEL)
|
||
#define LDAP_DEVEL
|
||
#endif
|
||
#if defined(LDAP_DEVEL) && !defined(LDAP_TEST)
|
||
#define LDAP_TEST
|
||
#endif
|
||
#endif
|
||
|
||
#ifdef HAVE_STDDEF_H
|
||
# include <stddef.h>
|
||
#endif
|
||
|
||
#ifdef HAVE_EBCDIC
|
||
/* ASCII/EBCDIC converting replacements for stdio funcs
|
||
* vsnprintf and snprintf are used too, but they are already
|
||
* checked by the configure script
|
||
*/
|
||
#define fputs ber_pvt_fputs
|
||
#define fgets ber_pvt_fgets
|
||
#define printf ber_pvt_printf
|
||
#define fprintf ber_pvt_fprintf
|
||
#define vfprintf ber_pvt_vfprintf
|
||
#define vsprintf ber_pvt_vsprintf
|
||
#endif
|
||
|
||
#ifdef OPENLDAP_FD_SETSIZE
|
||
/* assume installer desires to enlarge fd_set */
|
||
#ifdef HAVE_BITS_TYPES_H
|
||
#include <bits/types.h>
|
||
#endif
|
||
#ifdef __FD_SETSIZE
|
||
#undef __FD_SETSIZE
|
||
#define __FD_SETSIZE OPENLDAP_FD_SETSIZE
|
||
#else
|
||
#define FD_SETSIZE OPENLDAP_FD_SETSIZE
|
||
#endif
|
||
#endif
|
||
|
||
#include "ldap_cdefs.h"
|
||
#include "ldap_features.h"
|
||
|
||
#include "ac/assert.h"
|
||
#include "ac/localize.h"
|
||
|
||
#endif /* _LDAP_PORTABLE_H */
|