#if 0 /* * $Header: /home/jsellens/src/users/Include/RCS/biffoptions.h,v 1.8 1996/09/12 19:06:22 rbutterworth Exp jsellens $ */ #endif /* BIFFER OPTIONS */ /* #include */ #define C_PROTOTYPES 1 /* define X11 to support X11 biffing */ #define X11 /* command to execute for X11 biffing */ #define X11MESSAGE \ "exec /usr/X11R6/bin/xmsg -title biffer -name biffer" /* define SUNGUESS to assume that you are using X if you are signed on to a Sun console */ #ifdef sun #define SUNGUESS #endif /* define USERPROG to allow users to run programs via biffer */ /* Cannot have USERPROG on Sequents, because they (still) have a dumb ttys file and so we cannot tell what kind of terminal it is, so we cannot select which of our user programs to run based on terminal type. */ #if !defined(C_OS_UNIX_DYNIX) && !defined(C_OS_UNIX_SUN_5) && !defined(C_OS_UNIX_IRIX) && !defined(C_OS_UNIX_LINUX) #define USERPROG #endif /* We need to make sure that PATH has everything we need in it so we can run xmessage for x11 for example. define ABSPATH if you want to specify the complete PATH variable, else define ADDPATH for what to add to the end of the possibly stupid existing PATH variable */ /* #define ABSPATH "/.software/local/.admin/bins/bin:/usr/ucb:/bin:/usr/bin" */ /* #define ADDPATH "/.software/local/.admin/bins/bin" */ /* #define ADDPATH "/usr/X11R6/bin" */ /* defined NEED_STRERROR if your machine does not have strerror() */ /* #define NEED_STRERROR */ /* SOCKETCHECK - Should we check to make sure we have a socket as input? You might possibly want to turn this off if you are testing outside inetd, but it is better to leave it on and use DEBUG. */ #define SOCKETCHECK /* Define DEBUG to Enable -d (debug) option? */ #define DEBUG /* Option sanity checking */ #if defined(SUNGUESS) && !defined(X10) && !defined(X11) You cannot use SUNGUESS unless you have some kind of X enabled. #endif #if defined(ABSPATH) && defined(ADDPATH) You cannot have ABSPATH and ADDPATH defined #endif