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

« back to all changes in this revision

Viewing changes to docs/examples/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:
15
15
@SET_MAKE@
16
16
 
17
17
#
18
 
# $Id: Makefile.am,v 1.52 2008-08-07 00:29:08 yangtse Exp $
19
18
#
20
19
srcdir = @srcdir@
21
20
top_srcdir = @top_srcdir@
236
235
CC = @CC@
237
236
CCDEPMODE = @CCDEPMODE@
238
237
CFLAGS = @CFLAGS@
 
238
CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
239
239
CPP = @CPP@
240
240
CPPFLAGS = -DCURL_NO_OLDIES $(STATICCPPFLAGS)
241
241
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
247
247
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
248
248
CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
249
249
CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
 
250
CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@
250
251
CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
251
252
CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
 
253
CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@
252
254
CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
 
255
CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@
 
256
CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@
253
257
CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
254
258
CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
255
259
CURL_LIBS = @CURL_LIBS@
266
270
EXEEXT = @EXEEXT@
267
271
FGREP = @FGREP@
268
272
GREP = @GREP@
269
 
HAVE_ARES = @HAVE_ARES@
 
273
HAVE_LDAP_SSL = @HAVE_LDAP_SSL@
270
274
HAVE_LIBZ = @HAVE_LIBZ@
271
275
HAVE_LIBZ_FALSE = @HAVE_LIBZ_FALSE@
272
276
HAVE_LIBZ_TRUE = @HAVE_LIBZ_TRUE@
332
336
SUPPORT_FEATURES = @SUPPORT_FEATURES@
333
337
SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
334
338
TEST_SERVER_LIBS = @TEST_SERVER_LIBS@
 
339
USE_ARES = @USE_ARES@
335
340
USE_EMBEDDED_ARES_FALSE = @USE_EMBEDDED_ARES_FALSE@
336
341
USE_EMBEDDED_ARES_TRUE = @USE_EMBEDDED_ARES_TRUE@
337
342
USE_GNUTLS = @USE_GNUTLS@
 
343
USE_LIBRTMP = @USE_LIBRTMP@
338
344
USE_LIBSSH2 = @USE_LIBSSH2@
339
345
USE_MANUAL_FALSE = @USE_MANUAL_FALSE@
340
346
USE_MANUAL_TRUE = @USE_MANUAL_TRUE@
341
347
USE_NSS = @USE_NSS@
 
348
USE_OPENLDAP = @USE_OPENLDAP@
 
349
USE_POLARSSL = @USE_POLARSSL@
342
350
USE_SSLEAY = @USE_SSLEAY@
343
351
USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@
344
352
VERSION = @VERSION@
400
408
# being currently built and tested are searched before the library which
401
409
# might possibly already be installed in the system.
402
410
#
403
 
# $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
 
411
# $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
 
412
# $(top_builddir)/include for generated curlbuild.h included from lib/setup.h
404
413
# $(top_srcdir)/include is for libcurl's external include files
405
 
INCLUDES = -I$(top_builddir)/include \
 
414
INCLUDES = -I$(top_builddir)/include/curl \
 
415
           -I$(top_builddir)/include      \
406
416
           -I$(top_srcdir)/include
407
417
 
408
418
LIBDIR = $(top_builddir)/lib