mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
Set TMPDIR
This commit is contained in:
parent
51bacc2c99
commit
7f24a010a4
@ -28,9 +28,13 @@
|
||||
|
||||
/* directory for temporary files */
|
||||
#if defined( _P_tmpdir )
|
||||
#define LDAP_TMPDIR _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"
|
||||
# define LDAP_TMPDIR LDAP_DIRSEP "tmp"
|
||||
#endif
|
||||
|
||||
/* directories */
|
||||
|
Loading…
Reference in New Issue
Block a user