git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@653 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1996-08-17 15:14:25 +00:00
parent 94bf6d4c4f
commit d939e8edb3
4 changed files with 5 additions and 6 deletions

View File

@@ -46,8 +46,7 @@ KLIB=$(LIBKAFS) $(LIBKRB) $(LIBDES) $(LIBROKEN)
all: telnetd all: telnetd
.c.o: .c.o:
$(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) \ $(CC) -c $(CPPFLAGS) $(CFLAGS) $(DEFS) -I../../../include -I.. -I../../.. -I$(srcdir)/.. -I. -I$(srcdir) $<
-I../../../include -I.. -I../../.. -I$(srcdir)/.. -I. -I$(srcdir) $<
telnetd: $(OBJECTS) telnetd: $(OBJECTS)
$(CC) $(LD_FLAGS) $(LDFLAGS) -o telnetd $(OBJECTS) ../libtelnet/libtelnet.a $(KLIB) $(LIBS) $(CC) $(LD_FLAGS) $(LDFLAGS) -o telnetd $(OBJECTS) ../libtelnet/libtelnet.a $(KLIB) $(LIBS)

View File

@@ -8,6 +8,8 @@
#include <sys/types.h> #include <sys/types.h>
#include <netinet/in.h> #include <netinet/in.h>
#include "protos.h"
#ifndef HAVE_PUTENV #ifndef HAVE_PUTENV
int putenv(const char *string); int putenv(const char *string);
#endif #endif

View File

@@ -8,6 +8,8 @@
#include <sys/types.h> #include <sys/types.h>
#include <netinet/in.h> #include <netinet/in.h>
#include "protos.h"
#ifndef HAVE_PUTENV #ifndef HAVE_PUTENV
int putenv(const char *string); int putenv(const char *string);
#endif #endif

View File

@@ -13,10 +13,6 @@ RCSID("$Id$");
#endif #endif
#include "roken.h" #include "roken.h"
#if defined(__ultrix) || defined(sun)
char *crypt(const char*, const char*);
#endif
int int
verify_unix_user(char *user, char *password) verify_unix_user(char *user, char *password)
{ {