~ubuntu-branches/ubuntu/natty/curl/natty-security

« back to all changes in this revision

Viewing changes to tests/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2010-06-20 13:56:28 UTC
  • mfrom: (3.4.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100620135628-e30tp9jldq6hq985
Tags: 7.21.0-1ubuntu1
* Merge from debian unstable.  Remaining changes: LP: #596334
  - Keep build deps in main:
    - Drop build dependencies: stunnel, libssh2-1-dev
    - Add build-dependency on openssh-server
    - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
35
35
# KIND, either express or implied.
36
36
#
37
 
# $Id: Makefile.am,v 1.49 2009-08-11 21:48:59 bagder Exp $
38
37
###########################################################################
39
38
srcdir = @srcdir@
40
39
top_srcdir = @top_srcdir@
102
101
CC = @CC@
103
102
CCDEPMODE = @CCDEPMODE@
104
103
CFLAGS = @CFLAGS@
 
104
CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
105
105
CPP = @CPP@
106
106
CPPFLAGS = @CPPFLAGS@
107
107
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
113
113
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
114
114
CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
115
115
CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
 
116
CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@
116
117
CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
117
118
CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
 
119
CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@
118
120
CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
 
121
CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@
 
122
CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@
119
123
CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
120
124
CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
121
125
CURL_LIBS = @CURL_LIBS@
132
136
EXEEXT = @EXEEXT@
133
137
FGREP = @FGREP@
134
138
GREP = @GREP@
135
 
HAVE_ARES = @HAVE_ARES@
 
139
HAVE_LDAP_SSL = @HAVE_LDAP_SSL@
136
140
HAVE_LIBZ = @HAVE_LIBZ@
137
141
HAVE_LIBZ_FALSE = @HAVE_LIBZ_FALSE@
138
142
HAVE_LIBZ_TRUE = @HAVE_LIBZ_TRUE@
198
202
SUPPORT_FEATURES = @SUPPORT_FEATURES@
199
203
SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
200
204
TEST_SERVER_LIBS = @TEST_SERVER_LIBS@
 
205
USE_ARES = @USE_ARES@
201
206
USE_EMBEDDED_ARES_FALSE = @USE_EMBEDDED_ARES_FALSE@
202
207
USE_EMBEDDED_ARES_TRUE = @USE_EMBEDDED_ARES_TRUE@
203
208
USE_GNUTLS = @USE_GNUTLS@
 
209
USE_LIBRTMP = @USE_LIBRTMP@
204
210
USE_LIBSSH2 = @USE_LIBSSH2@
205
211
USE_MANUAL_FALSE = @USE_MANUAL_FALSE@
206
212
USE_MANUAL_TRUE = @USE_MANUAL_TRUE@
207
213
USE_NSS = @USE_NSS@
 
214
USE_OPENLDAP = @USE_OPENLDAP@
 
215
USE_POLARSSL = @USE_POLARSSL@
208
216
USE_SSLEAY = @USE_SSLEAY@
209
217
USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@
210
218
VERSION = @VERSION@
258
266
target_alias = @target_alias@
259
267
HTMLPAGES = testcurl.html runtests.html
260
268
PDFPAGES = testcurl.pdf runtests.pdf
261
 
EXTRA_DIST = ftpserver.pl httpserver.pl httpsserver.pl runtests.pl getpart.pm \
 
269
EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \
262
270
 FILEFORMAT README stunnel.pem memanalyze.pl testcurl.pl valgrind.pm ftp.pm   \
263
271
 sshserver.pl sshhelp.pm testcurl.1 runtests.1 $(HTMLPAGES) $(PDFPAGES) \
264
 
 CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot*
 
272
 CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot* \
 
273
 serverhelp.pm tftpserver.pl rtspserver.pl directories.pm
265
274
 
266
275
SUBDIRS = data server libtest
267
276
PERLFLAGS = -I$(srcdir)
271
280
@CROSSCOMPILING_TRUE@TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
272
281
@CROSSCOMPILING_FALSE@TEST_Q = -a -s
273
282
@CROSSCOMPILING_TRUE@TEST_Q = 
274
 
@CROSSCOMPILING_FALSE@TEST_F = -a -p
 
283
@CROSSCOMPILING_FALSE@TEST_F = -a -p -r
275
284
@CROSSCOMPILING_TRUE@TEST_F = 
276
285
@CROSSCOMPILING_FALSE@TEST_T = -a -t
277
286
@CROSSCOMPILING_TRUE@TEST_T = 
288
297
              exit 1;; \
289
298
          esac; \
290
299
        done; \
291
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  tests/Makefile'; \
 
300
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  tests/Makefile'; \
292
301
        cd $(top_srcdir) && \
293
 
          $(AUTOMAKE) --gnu  tests/Makefile
 
302
          $(AUTOMAKE) --foreign  tests/Makefile
294
303
.PRECIOUS: Makefile
295
304
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
296
305
        @case '$?' in \