Skip to content
Snippets Groups Projects
Commit 7f24a010 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Set TMPDIR

parent 51bacc2c
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment