1998-10-25 09:41:42 +08:00
|
|
|
/* Generic unistd.h */
|
1999-08-30 16:08:00 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 12:16:36 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation.
|
1998-12-29 03:51:35 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2001-05-29 11:35:56 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
2003-11-26 07:17:08 +08:00
|
|
|
* 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>.
|
1998-12-29 03:51:35 +08:00
|
|
|
*/
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#ifndef _AC_UNISTD_H
|
|
|
|
#define _AC_UNISTD_H
|
|
|
|
|
|
|
|
#if HAVE_SYS_TYPES_H
|
1998-11-18 03:08:29 +08:00
|
|
|
# include <sys/types.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_UNISTD_H
|
1998-11-18 03:08:29 +08:00
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
1999-11-02 06:00:18 +08:00
|
|
|
#if HAVE_PROCESS_H
|
|
|
|
# include <process.h>
|
|
|
|
#endif
|
|
|
|
|
1999-10-01 12:48:30 +08:00
|
|
|
/* note: callers of crypt(3) should include <ac/crypt.h> */
|
1998-10-25 09:41:42 +08:00
|
|
|
|
2000-05-20 02:41:26 +08:00
|
|
|
#if defined(HAVE_GETPASSPHRASE)
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LIBC_F(char*)(getpassphrase)();
|
2000-05-20 02:41:26 +08:00
|
|
|
|
|
|
|
#elif defined(HAVE_GETPASS)
|
|
|
|
#define getpassphrase(p) getpass(p)
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LIBC_F(char*)(getpass)();
|
2000-05-20 02:41:26 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
#define NEED_GETPASSPHRASE 1
|
|
|
|
#define getpassphrase(p) lutil_getpass(p)
|
2000-06-20 06:40:42 +08:00
|
|
|
LDAP_LUTIL_F(char*)(lutil_getpass) LDAP_P((const char *getpass));
|
1999-02-12 05:16:03 +08:00
|
|
|
#endif
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
/* getopt() defines may be in separate include file */
|
|
|
|
#if HAVE_GETOPT_H
|
1998-11-16 13:07:27 +08:00
|
|
|
# include <getopt.h>
|
|
|
|
|
1998-11-17 12:07:31 +08:00
|
|
|
#elif !defined(HAVE_GETOPT)
|
1998-11-16 13:07:27 +08:00
|
|
|
/* no getopt, assume we need getopt-compat.h */
|
|
|
|
# include <getopt-compat.h>
|
|
|
|
|
1998-11-17 12:07:31 +08:00
|
|
|
#else
|
1998-11-16 13:07:27 +08:00
|
|
|
/* assume we need to declare these externs */
|
2000-06-20 11:53:12 +08:00
|
|
|
LDAP_LIBC_V (char *) optarg;
|
|
|
|
LDAP_LIBC_V (int) optind, opterr, optopt;
|
1998-11-17 12:07:31 +08:00
|
|
|
#endif
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-03-29 05:39:02 +08:00
|
|
|
/* use lutil file locking */
|
|
|
|
#define ldap_lockf(x) lutil_lockf(x)
|
|
|
|
#define ldap_unlockf(x) lutil_unlockf(x)
|
|
|
|
#include <lutil_lockf.h>
|
1999-03-14 04:31:55 +08:00
|
|
|
|
2001-12-18 10:03:23 +08:00
|
|
|
/*
|
|
|
|
* Windows: although sleep() will be resolved by both MSVC and Mingw GCC
|
|
|
|
* linkers, the function is not declared in header files. This is
|
|
|
|
* because Windows' version of the function is called _sleep(), and it
|
|
|
|
* is declared in stdlib.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define sleep _sleep
|
|
|
|
#endif
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#endif /* _AC_UNISTD_H */
|