version 1.1, 1999/06/17 01:54:26
|
version 1.1.8.5, 2002/01/04 20:38:15
|
Line 1
|
Line 1
|
|
/* $OpenLDAP: pkg/ldap/include/ldap_config.h.in,v 1.1.8.4 2001/06/02 00:33:03 kurt Exp $ */ |
/* |
/* |
* Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA |
* Copyright 1998-2002 The OpenLDAP Foundation, Redwood City, California, USA |
* All rights reserved. |
* All rights reserved. |
* |
* |
* Redistribution and use in source and binary forms are permitted only |
* Redistribution and use in source and binary forms, with or without |
* as authorized by the OpenLDAP Public License. A copy of this |
* modification, are permitted only as authorized by the OpenLDAP |
* license is available at http://www.OpenLDAP.org/license.html or |
* Public License. A copy of this license is available at |
* in file LICENSE in the top-level directory of the distribution. |
* http://www.OpenLDAP.org/license.html or in file LICENSE in the |
|
* top-level directory of the distribution. |
*/ |
*/ |
|
|
/* |
/* |
Line 18
|
Line 20
|
|
|
/* directory separator */ |
/* directory separator */ |
#ifndef LDAP_DIRSEP |
#ifndef LDAP_DIRSEP |
|
#ifndef _WIN32 |
#define LDAP_DIRSEP "/" |
#define LDAP_DIRSEP "/" |
|
#else |
|
#define LDAP_DIRSEP "\\" |
|
#endif |
|
#endif |
|
|
|
/* directory for temporary files */ |
|
#if 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 |
#endif |
|
|
/* directories */ |
/* directories */ |