summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
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 b34045963..837ed0207 100644
--- a/defines.h
+++ b/defines.h
@@ -250,6 +250,8 @@ typedef int mode_t;
250#ifndef _PATH_RSH 250#ifndef _PATH_RSH
251# ifdef RSH_PATH 251# ifdef RSH_PATH
252# define _PATH_RSH RSH_PATH 252# define _PATH_RSH RSH_PATH
253# else /* RSH_PATH */
254# define _PATH_RSH "/usr/bin/rsh"
253# endif /* RSH_PATH */ 255# endif /* RSH_PATH */
254#endif /* _PATH_RSH */ 256#endif /* _PATH_RSH */
255 257
@@ -257,6 +259,11 @@ typedef int mode_t;
257# define _PATH_NOLOGIN "/etc/nologin" 259# define _PATH_NOLOGIN "/etc/nologin"
258#endif 260#endif
259 261
262/* Define this to be the path of the xauth program. */
263#ifndef XAUTH_PATH
264#define XAUTH_PATH "/usr/X11R6/bin/xauth"
265#endif /* XAUTH_PATH */
266
260/* Macros */ 267/* Macros */
261 268
262#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H) 269#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
@@ -332,6 +339,15 @@ typedef int mode_t;
332# define getpgrp() getpgrp(0) 339# define getpgrp() getpgrp(0)
333#endif 340#endif
334 341
342/*
343 * Define this to use pipes instead of socketpairs for communicating with the
344 * client program. Socketpairs do not seem to work on all systems.
345 *
346 * configure.in sets this for a few OS's which are known to have problems
347 * but you may need to set it yourself
348 */
349/* #define USE_PIPES 1 */
350
335/** 351/**
336 ** login recorder definitions 352 ** login recorder definitions
337 **/ 353 **/