diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/telnet/telnet/ChangeLog | 6 | ||||
| -rw-r--r-- | src/appl/telnet/telnet/commands.c | 4 | ||||
| -rw-r--r-- | src/appl/telnet/telnet/configure.in | 2 |
3 files changed, 12 insertions, 0 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog index 643c2f21da..bd49c1c98b 100644 --- a/src/appl/telnet/telnet/ChangeLog +++ b/src/appl/telnet/telnet/ChangeLog @@ -1,3 +1,9 @@ +Wed Jul 27 22:49:18 1994 Tom Yu (tlyu@dragons-lair) + + * configure.in: add check for dbm libs + + * commands.c: linux in_system.h (note "e") is broken + Tue Jul 26 18:22:00 1994 Tom Yu (tlyu@dragons-lair) * Makefile.in: forgot some $(srcdir) stuff diff --git a/src/appl/telnet/telnet/commands.c b/src/appl/telnet/telnet/commands.c index da7b459e98..f353251073 100644 --- a/src/appl/telnet/telnet/commands.c +++ b/src/appl/telnet/telnet/commands.c @@ -68,7 +68,11 @@ static char sccsid[] = "@(#)commands.c 8.1 (Berkeley) 6/6/93"; #include "types.h" #if !defined(CRAY) && !defined(sysV88) +#ifndef linux #include <netinet/in_systm.h> +#else /* someone broke the linux includes... */ +#include <netinet/in_system.h> +#endif # if (defined(vax) || defined(tahoe) || defined(hp300)) && !defined(ultrix) # include <machine/endian.h> # endif /* vax */ diff --git a/src/appl/telnet/telnet/configure.in b/src/appl/telnet/telnet/configure.in index 61301d6dea..4315281f6a 100644 --- a/src/appl/telnet/telnet/configure.in +++ b/src/appl/telnet/telnet/configure.in @@ -21,4 +21,6 @@ AC_FUNC_CHECK(gettosbyname,AC_DEFINE(HAS_GETTOS)) AC_HEADER_CHECK(sys/filio.h,AC_DEFINE(FILIO_H)) AC_HEADER_CHECK(sys/stream.h,AC_DEFINE(STREAMS)) AC_FUNC_CHECK(cgetent,AC_DEFINE(HAS_CGETENT)) +AC_HAVE_LIBRARY(-lndbm) +AC_HAVE_LIBRARY(-ldbm) AC_OUTPUT(Makefile,[EXTRA_RULES]) |
