summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authordjm <djm>2000-09-24 00:10:13 +0000
committerdjm <djm>2000-09-24 00:10:13 +0000
commit508f0a52ecc97d69b544602b689a25064cca211a (patch)
tree2facf6fc6e677c16e8058890a4c36b976069d054 /defines.h
parentd3f760936fdfc3a0cfc031944b093844374bf8f0 (diff)
downloadopenssh-508f0a52ecc97d69b544602b689a25064cca211a.tar.gz
- (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
- (djm) A bit more cleanup - created cygwin_util.h
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/defines.h b/defines.h
index b3404596..837ed020 100644
--- a/defines.h
+++ b/defines.h
@@ -250,6 +250,8 @@ typedef int mode_t;
#ifndef _PATH_RSH
# ifdef RSH_PATH
# define _PATH_RSH RSH_PATH
+# else /* RSH_PATH */
+# define _PATH_RSH "/usr/bin/rsh"
# endif /* RSH_PATH */
#endif /* _PATH_RSH */
@@ -257,6 +259,11 @@ typedef int mode_t;
# define _PATH_NOLOGIN "/etc/nologin"
#endif
+/* Define this to be the path of the xauth program. */
+#ifndef XAUTH_PATH
+#define XAUTH_PATH "/usr/X11R6/bin/xauth"
+#endif /* XAUTH_PATH */
+
/* Macros */
#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
@@ -332,6 +339,15 @@ typedef int mode_t;
# define getpgrp() getpgrp(0)
#endif
+/*
+ * Define this to use pipes instead of socketpairs for communicating with the
+ * client program. Socketpairs do not seem to work on all systems.
+ *
+ * configure.in sets this for a few OS's which are known to have problems
+ * but you may need to set it yourself
+ */
+/* #define USE_PIPES 1 */
+
/**
** login recorder definitions
**/