~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to src/tests/resolve/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2009-05-07 16:16:34 UTC
  • mfrom: (13.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090507161634-xqyk0s9na0le4flj
Tags: 1.7dfsg~beta1-4
When  decrypting the TGS response fails with the subkey, try with the
session key to work around Heimdal bug, Closes: #527353 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
thisconfigdir=./..
 
1
thisconfigdir=../..
2
2
myfulldir=tests/resolve
3
 
mydir=resolve
 
3
mydir=tests/resolve
4
4
BUILDTOP=$(REL)..$(S)..
5
5
RUN_SETUP = @KRB5_RUN_ENV@
6
6
PROG_LIBPATH=-L$(TOPLIBD)
16
16
        $(CC_LINK) -o $@ resolve.o $(LIBS)
17
17
 
18
18
addrinfo-test: addrinfo-test.o
19
 
        $(CC_LINK) -o $@ addrinfo-test.o $(LIBS)
 
19
        $(CC_LINK) -o $@ addrinfo-test.o $(SUPPORT_LIB) $(LIBS)
20
20
 
21
21
fake-addrinfo-test: fake-addrinfo-test.o
22
22
        $(CC_LINK) -o $@ fake-addrinfo-test.o $(SUPPORT_LIB) $(LIBS)
23
23
 
24
 
check:: resolve addrinfo-test
 
24
check:: resolve addrinfo-test fake-addrinfo-test
25
25
        $(RUN_SETUP) $(VALGRIND) ./resolve
26
26
        $(RUN_SETUP) $(VALGRIND) ./addrinfo-test -p telnet
27
27
        $(RUN_SETUP) $(VALGRIND) ./fake-addrinfo-test -p telnet
29
29
install::
30
30
 
31
31
clean::
32
 
        $(RM) resolve addrinfo-test
 
32
        $(RM) resolve addrinfo-test fake-addrinfo-test
33
33
 
34
 
# +++ Dependency line eater +++
35
 
36
 
# Makefile dependencies follow.  This must be the last section in
37
 
# the Makefile.in file
38
 
#
39
 
$(OUTPRE)resolve.$(OBJEXT): resolve.c
40
 
$(OUTPRE)addrinfo-test.$(OBJEXT): addrinfo-test.c
41
 
$(OUTPRE)fake-addrinfo-test.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
42
 
  $(SRCTOP)/include/fake-addrinfo.h $(SRCTOP)/include/k5-platform.h \
43
 
  $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/port-sockets.h \
44
 
  $(SRCTOP)/include/socket-utils.h addrinfo-test.c fake-addrinfo-test.c