1998-10-24 21:41:42 -04:00
|
|
|
/* Generic unistd.h */
|
1999-08-30 04:08:00 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-25 23:16:36 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2010-04-13 18:17:29 -04:00
|
|
|
* Copyright 1998-2010 The OpenLDAP Foundation.
|
1998-12-28 14:51:35 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
2001-05-28 23:35:56 -04:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
2003-11-25 18:17:08 -05: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-28 14:51:35 -05:00
|
|
|
*/
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#ifndef _AC_UNISTD_H
|
|
|
|
|
#define _AC_UNISTD_H
|
|
|
|
|
|
2007-05-09 14:17:10 -04:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
1998-11-17 14:08:29 -05:00
|
|
|
# include <sys/types.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
#endif
|
|
|
|
|
|
2007-05-09 14:17:10 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
1998-11-17 14:08:29 -05:00
|
|
|
# include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-05-09 14:17:10 -04:00
|
|
|
#ifdef HAVE_PROCESS_H
|
1999-11-01 17:00:18 -05:00
|
|
|
# include <process.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-10-01 00:48:30 -04:00
|
|
|
/* note: callers of crypt(3) should include <ac/crypt.h> */
|
1998-10-24 21:41:42 -04:00
|
|
|
|
2000-05-19 14:41:26 -04:00
|
|
|
#if defined(HAVE_GETPASSPHRASE)
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LIBC_F(char*)(getpassphrase)();
|
2000-05-19 14:41:26 -04:00
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
#define getpassphrase(p) lutil_getpass(p)
|
2000-06-19 18:40:42 -04:00
|
|
|
LDAP_LUTIL_F(char*)(lutil_getpass) LDAP_P((const char *getpass));
|
1999-02-11 16:16:03 -05:00
|
|
|
#endif
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
/* getopt() defines may be in separate include file */
|
2007-05-09 14:17:10 -04:00
|
|
|
#ifdef HAVE_GETOPT_H
|
1998-11-16 00:07:27 -05:00
|
|
|
# include <getopt.h>
|
|
|
|
|
|
1998-11-16 23:07:31 -05:00
|
|
|
#elif !defined(HAVE_GETOPT)
|
1998-11-16 00:07:27 -05:00
|
|
|
/* no getopt, assume we need getopt-compat.h */
|
|
|
|
|
# include <getopt-compat.h>
|
|
|
|
|
|
1998-11-16 23:07:31 -05:00
|
|
|
#else
|
1998-11-16 00:07:27 -05:00
|
|
|
/* assume we need to declare these externs */
|
2000-06-19 23:53:12 -04:00
|
|
|
LDAP_LIBC_V (char *) optarg;
|
|
|
|
|
LDAP_LIBC_V (int) optind, opterr, optopt;
|
1998-11-16 23:07:31 -05:00
|
|
|
#endif
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1999-03-28 16:39:02 -05: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-13 15:31:55 -05:00
|
|
|
|
2001-12-17 21:03:23 -05: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-24 21:41:42 -04:00
|
|
|
#endif /* _AC_UNISTD_H */
|