]> git.sur5r.net Git - openldap/blobdiff - include/ldap_config.h.in
Cleanup NT service support declarations
[openldap] / include / ldap_config.h.in
index 63b604f6ea62f9478d80eb0dfcd9067006a44d65..46d96036ea11e3e08eb8298a9d5b7cb65cd8d82a 100644 (file)
@@ -1,12 +1,13 @@
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
+ * Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted only
- * as authorized by the OpenLDAP Public License.  A copy of this
- * license is available at http://www.OpenLDAP.org/license.html or
- * in file LICENSE in the top-level directory of the distribution.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.  A copy of this license is available at
+ * http://www.OpenLDAP.org/license.html or in file LICENSE in the
+ * top-level directory of the distribution.
  */
 
 /*
 #endif
 #endif
 
+/* directory for temporary files */
+#if defined(_WIN32)
+# define LDAP_TMPDIR "C:\\."   /* we don't have much of a choice */
+#elif 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
+
 /* directories */
 #ifndef LDAP_BINDIR
 #define LDAP_BINDIR                    "%BINDIR%"
 #define LDAP_RUNDIR                    "%RUNDIR%"
 #endif
 
-/* command locations */
-#ifndef LDAP_EDITOR
-#define LDAP_EDITOR                    "%EDITOR%"
-#endif
-#ifndef LDAP_FINGER
-#define LDAP_FINGER                    "%FINGER%"
-#endif
-#ifndef LDAP_SENDMAIL
-#define LDAP_SENDMAIL          "%SENDMAIL%"
-#endif
-
 #endif /* _LDAP_CONFIG_H */