Files
heimdal/appl/telnet/acconfig.h
Assar Westerlund 714d1fcba7 use BINDIR
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@600 ec53bebd-3082-4978-b11e-865c3cabbd6b
1996-06-24 00:09:08 +00:00

82 lines
1.5 KiB
C

/*
* configuration file for telnet
*
* $Id$
*
*/
#ifndef T_CONFIG_H
#define T_CONFIG_H
#include "../../config.h"
@TOP@
/* define this if you want authentication */
#undef AUTHENTICATION
/* define this if you have kerberos 4 */
#undef KRB4
/* define this if you want encryption */
#undef ENCRYPTION
/* Set this if you want des encryption */
#undef DES_ENCRYPTION
/* Set this to the default system lead string for telnetd
* can contain %-escapes: %s=sysname, %m=machine, %r=os-release
* %v=os-version, %t=tty, %h=hostname, %d=date and time
*/
#undef USE_IM
/* define this if you want diagnostics in telnetd */
#undef DIAGNOSTICS
/* define this if you want support for broken ENV_{VALUE,VAR} systems */
#undef ENV_HACK
/* define this if you want support for line mode in telnetd */
#undef LINEMODE
/* define this if you want support for 4.3BSD kludged line mode */
#undef KLUDGELINEMODE
/* */
#undef OLD_ENVIRON
/* Define if login doesn't understand -f */
#undef NO_LOGIN_F
/* Define if login does understand -r */
#undef LOGIN_R
/* Define if login doesn't understand -h */
/* */
#undef NO_LOGIN_H
/* Define if login doesn't understand -p */
#undef NO_LOGIN_P
/* Used with login -p */
#undef LOGIN_ARGS
/* Define if you have setupterm() */
#undef HAVE_SETUPTERM
/* Define if you have tgetent() */
#undef HAVE_TGETENT
/* Define if there are working stream ptys */
#undef STREAMSPTY
@BOTTOM@
/* set this to a sensible login */
#ifndef LOGIN_PATH
#define LOGIN_PATH BINDIR "/login"
#endif
#endif /* T_CONFIG_H */