added bindir
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1186 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -21,6 +21,7 @@ MKINSTALLDIRS = @top_srcdir@/mkinstalldirs
|
|||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
|
bindir = @bindir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
transform=@program_transform_name@
|
transform=@program_transform_name@
|
||||||
EXECSUFFIX=@EXECSUFFIX@
|
EXECSUFFIX=@EXECSUFFIX@
|
||||||
|
@@ -33,6 +33,8 @@
|
|||||||
* @(#)ext.h 8.2 (Berkeley) 12/15/93
|
* @(#)ext.h 8.2 (Berkeley) 12/15/93
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* $Id$ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Telnet server variable declarations
|
* Telnet server variable declarations
|
||||||
*/
|
*/
|
||||||
@@ -80,111 +82,103 @@ extern int ourpty, net;
|
|||||||
extern char *line;
|
extern char *line;
|
||||||
extern int SYNCHing; /* we are in TELNET SYNCH mode */
|
extern int SYNCHing; /* we are in TELNET SYNCH mode */
|
||||||
|
|
||||||
#ifndef P
|
|
||||||
# ifdef __STDC__
|
|
||||||
# define P(x) x
|
|
||||||
# else
|
|
||||||
# define P(x) ()
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern void
|
extern void
|
||||||
_termstat P((void)),
|
_termstat (void),
|
||||||
add_slc P((int, int, int)),
|
add_slc (int, int, int),
|
||||||
check_slc P((void)),
|
check_slc (void),
|
||||||
change_slc P((int, int, int)),
|
change_slc (int, int, int),
|
||||||
cleanup P((int)),
|
cleanup (int),
|
||||||
clientstat P((int, int, int)),
|
clientstat (int, int, int),
|
||||||
copy_termbuf P((char *, int)),
|
copy_termbuf (char *, int),
|
||||||
deferslc P((void)),
|
deferslc (void),
|
||||||
defer_terminit P((void)),
|
defer_terminit (void),
|
||||||
do_opt_slc P((unsigned char *, int)),
|
do_opt_slc (unsigned char *, int),
|
||||||
doeof P((void)),
|
doeof (void),
|
||||||
dooption P((int)),
|
dooption (int),
|
||||||
dontoption P((int)),
|
dontoption (int),
|
||||||
edithost P((char *, char *)),
|
edithost (char *, char *),
|
||||||
fatal P((int, char *)),
|
fatal (int, char *),
|
||||||
fatalperror P((int, char *)),
|
fatalperror (int, char *),
|
||||||
get_slc_defaults P((void)),
|
get_slc_defaults (void),
|
||||||
init_env P((void)),
|
init_env (void),
|
||||||
init_termbuf P((void)),
|
init_termbuf (void),
|
||||||
interrupt P((void)),
|
interrupt (void),
|
||||||
localstat P((void)),
|
localstat (void),
|
||||||
flowstat P((void)),
|
flowstat (void),
|
||||||
netclear P((void)),
|
netclear (void),
|
||||||
netflush P((void)),
|
netflush (void),
|
||||||
#ifdef DIAGNOSTICS
|
#ifdef DIAGNOSTICS
|
||||||
printoption P((char *, int)),
|
printoption (char *, int),
|
||||||
printdata P((char *, char *, int)),
|
printdata (char *, char *, int),
|
||||||
printsub P((int, unsigned char *, int)),
|
printsub (int, unsigned char *, int),
|
||||||
#endif
|
#endif
|
||||||
ptyflush P((void)),
|
ptyflush (void),
|
||||||
putchr P((int)),
|
putchr (int),
|
||||||
putf P((char *, char *)),
|
putf (char *, char *),
|
||||||
recv_ayt P((void)),
|
recv_ayt (void),
|
||||||
send_do P((int, int)),
|
send_do (int, int),
|
||||||
send_dont P((int, int)),
|
send_dont (int, int),
|
||||||
send_slc P((void)),
|
send_slc (void),
|
||||||
send_status P((void)),
|
send_status (void),
|
||||||
send_will P((int, int)),
|
send_will (int, int),
|
||||||
send_wont P((int, int)),
|
send_wont (int, int),
|
||||||
sendbrk P((void)),
|
sendbrk (void),
|
||||||
sendsusp P((void)),
|
sendsusp (void),
|
||||||
set_termbuf P((void)),
|
set_termbuf (void),
|
||||||
start_login P((char *, int, char *)),
|
start_login (char *, int, char *),
|
||||||
start_slc P((int)),
|
start_slc (int),
|
||||||
#if defined(AUTHENTICATION)
|
#if defined(AUTHENTICATION)
|
||||||
start_slave P((char *)),
|
start_slave (char *),
|
||||||
#else
|
#else
|
||||||
start_slave P((char *, int, char *)),
|
start_slave (char *, int, char *),
|
||||||
#endif
|
#endif
|
||||||
suboption P((void)),
|
suboption (void),
|
||||||
telrcv P((void)),
|
telrcv (void),
|
||||||
ttloop P((void)),
|
ttloop (void),
|
||||||
tty_binaryin P((int)),
|
tty_binaryin (int),
|
||||||
tty_binaryout P((int));
|
tty_binaryout (int);
|
||||||
|
|
||||||
extern int
|
extern int
|
||||||
end_slc P((unsigned char **)),
|
end_slc (unsigned char **),
|
||||||
getnpty P((void)),
|
getnpty (void),
|
||||||
#ifndef convex
|
#ifndef convex
|
||||||
getpty P((int *)),
|
getpty (int *),
|
||||||
#endif
|
#endif
|
||||||
login_tty P((int)),
|
login_tty (int),
|
||||||
spcset P((int, cc_t *, cc_t **)),
|
spcset (int, cc_t *, cc_t **),
|
||||||
stilloob P((int)),
|
stilloob (int),
|
||||||
terminit P((void)),
|
terminit (void),
|
||||||
termstat P((void)),
|
termstat (void),
|
||||||
tty_flowmode P((void)),
|
tty_flowmode (void),
|
||||||
tty_restartany P((void)),
|
tty_restartany (void),
|
||||||
tty_isbinaryin P((void)),
|
tty_isbinaryin (void),
|
||||||
tty_isbinaryout P((void)),
|
tty_isbinaryout (void),
|
||||||
tty_iscrnl P((void)),
|
tty_iscrnl (void),
|
||||||
tty_isecho P((void)),
|
tty_isecho (void),
|
||||||
tty_isediting P((void)),
|
tty_isediting (void),
|
||||||
tty_islitecho P((void)),
|
tty_islitecho (void),
|
||||||
tty_isnewmap P((void)),
|
tty_isnewmap (void),
|
||||||
tty_israw P((void)),
|
tty_israw (void),
|
||||||
tty_issofttab P((void)),
|
tty_issofttab (void),
|
||||||
tty_istrapsig P((void)),
|
tty_istrapsig (void),
|
||||||
tty_linemode P((void));
|
tty_linemode (void);
|
||||||
|
|
||||||
extern void
|
extern void
|
||||||
tty_rspeed P((int)),
|
tty_rspeed (int),
|
||||||
tty_setecho P((int)),
|
tty_setecho (int),
|
||||||
tty_setedit P((int)),
|
tty_setedit (int),
|
||||||
tty_setlinemode P((int)),
|
tty_setlinemode (int),
|
||||||
tty_setlitecho P((int)),
|
tty_setlitecho (int),
|
||||||
tty_setsig P((int)),
|
tty_setsig (int),
|
||||||
tty_setsofttab P((int)),
|
tty_setsofttab (int),
|
||||||
tty_tspeed P((int)),
|
tty_tspeed (int),
|
||||||
willoption P((int)),
|
willoption (int),
|
||||||
wontoption P((int)),
|
wontoption (int),
|
||||||
writenet P((unsigned char *, int));
|
writenet (unsigned char *, int);
|
||||||
|
|
||||||
#if defined(ENCRYPTION)
|
#if defined(ENCRYPTION)
|
||||||
extern void (*encrypt_output) P((unsigned char *, int));
|
extern void (*encrypt_output) (unsigned char *, int);
|
||||||
extern int (*decrypt_input) P((int));
|
extern int (*decrypt_input) (int);
|
||||||
extern char *nclearto;
|
extern char *nclearto;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user