~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to tests/server/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-12-12 15:04:52 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20051212150452-2ymlra67b2p7kjyy
Tags: 7.15.1-1ubuntu1
Resynchronise with Debian to get URL parser overflow fix from 7.15.1
(CVE-2005-4077).

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
19
# KIND, either express or implied.
20
20
#
21
 
# $Id: Makefile.am,v 1.13 2005/05/01 12:51:27 bagder Exp $
 
21
# $Id: Makefile.am,v 1.15 2005/09/15 20:36:28 bagder Exp $
22
22
###########################################################################
23
23
 
24
24
AUTOMAKE_OPTIONS = foreign
25
25
 
26
26
INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/include
27
27
 
28
 
noinst_PROGRAMS = sws getpart sockfilt
 
28
noinst_PROGRAMS = sws getpart sockfilt resolve tftpd
29
29
 
30
30
useful = getpart.c getpart.h $(top_srcdir)/lib/strequal.c       \
31
31
 $(top_srcdir)/lib/base64.c $(top_srcdir)/lib/mprintf.c         \
32
32
 $(top_srcdir)/lib/memdebug.c $(top_srcdir)/lib/timeval.c
33
33
 
 
34
resolve_SOURCES= resolve.c util.c util.h $(useful)
34
35
sws_SOURCES= sws.c util.c util.h $(useful)
35
36
sockfilt_SOURCES = sockfilt.c util.c util.h $(useful)   \
36
37
 $(top_srcdir)/lib/inet_pton.c
37
38
getpart_SOURCES= testpart.c $(useful)
 
39
tftpd_SOURCES = tftpd.c util.c util.h $(useful)
38
40
 
39
41
extra_DIST = base64.pl
 
42