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

« back to all changes in this revision

Viewing changes to docs/examples/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-04-29 11:10:29 UTC
  • mfrom: (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090429111029-2j5eiyokfw2bw049
Tags: 7.19.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* drop debian/patches/security_CVE-2009-0037.patch 
  - this patch is part of 7.19.4

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.50 2008-03-31 03:01:13 danf Exp $
 
18
# $Id: Makefile.am,v 1.52 2008-08-07 00:29:08 yangtse Exp $
19
19
#
20
20
srcdir = @srcdir@
21
21
top_srcdir = @top_srcdir@
51
51
        multi-single$(EXEEXT) persistant$(EXEEXT) \
52
52
        post-callback$(EXEEXT) postit2$(EXEEXT) sepheaders$(EXEEXT) \
53
53
        simple$(EXEEXT) simplepost$(EXEEXT) simplessl$(EXEEXT) \
54
 
        sendrecv$(EXEEXT)
 
54
        sendrecv$(EXEEXT) httpcustomheader$(EXEEXT) certinfo$(EXEEXT)
55
55
subdir = docs/examples
56
56
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
57
 
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
58
 
        $(top_srcdir)/configure.ac
 
57
am__aclocal_m4_deps = $(top_srcdir)/m4/curl-compilers.m4 \
 
58
        $(top_srcdir)/m4/curl-confopts.m4 \
 
59
        $(top_srcdir)/m4/curl-functions.m4 \
 
60
        $(top_srcdir)/m4/curl-override.m4 \
 
61
        $(top_srcdir)/m4/curl-reentrant.m4 \
 
62
        $(top_srcdir)/m4/curl-system.m4 $(top_srcdir)/m4/libtool.m4 \
 
63
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
64
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
65
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
59
66
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
60
67
        $(ACLOCAL_M4)
61
68
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
62
69
CONFIG_HEADER = $(top_builddir)/lib/config.h \
63
 
        $(top_builddir)/src/config.h
 
70
        $(top_builddir)/src/config.h \
 
71
        $(top_builddir)/include/curl/curlbuild.h
64
72
CONFIG_CLEAN_FILES =
65
73
10_at_a_time_SOURCES = 10-at-a-time.c
66
74
10_at_a_time_OBJECTS = 10-at-a-time.$(OBJEXT)
70
78
anyauthput_OBJECTS = anyauthput.$(OBJEXT)
71
79
anyauthput_LDADD = $(LDADD)
72
80
anyauthput_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
81
certinfo_SOURCES = certinfo.c
 
82
certinfo_OBJECTS = certinfo.$(OBJEXT)
 
83
certinfo_LDADD = $(LDADD)
 
84
certinfo_DEPENDENCIES = $(LIBDIR)/libcurl.la
73
85
cookie_interface_SOURCES = cookie_interface.c
74
86
cookie_interface_OBJECTS = cookie_interface.$(OBJEXT)
75
87
cookie_interface_LDADD = $(LDADD)
110
122
http_post_OBJECTS = http-post.$(OBJEXT)
111
123
http_post_LDADD = $(LDADD)
112
124
http_post_DEPENDENCIES = $(LIBDIR)/libcurl.la
 
125
httpcustomheader_SOURCES = httpcustomheader.c
 
126
httpcustomheader_OBJECTS = httpcustomheader.$(OBJEXT)
 
127
httpcustomheader_LDADD = $(LDADD)
 
128
httpcustomheader_DEPENDENCIES = $(LIBDIR)/libcurl.la
113
129
httpput_SOURCES = httpput.c
114
130
httpput_OBJECTS = httpput.$(OBJEXT)
115
131
httpput_LDADD = $(LDADD)
181
197
CCLD = $(CC)
182
198
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
183
199
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
184
 
SOURCES = 10-at-a-time.c anyauthput.c cookie_interface.c debug.c \
185
 
        fileupload.c fopen.c ftpget.c ftpgetresp.c ftpupload.c \
186
 
        getinfo.c getinmemory.c http-post.c httpput.c https.c \
187
 
        multi-app.c multi-debugcallback.c multi-double.c multi-post.c \
188
 
        multi-single.c persistant.c post-callback.c postit2.c \
189
 
        sendrecv.c sepheaders.c simple.c simplepost.c simplessl.c
190
 
DIST_SOURCES = 10-at-a-time.c anyauthput.c cookie_interface.c debug.c \
191
 
        fileupload.c fopen.c ftpget.c ftpgetresp.c ftpupload.c \
192
 
        getinfo.c getinmemory.c http-post.c httpput.c https.c \
193
 
        multi-app.c multi-debugcallback.c multi-double.c multi-post.c \
 
200
SOURCES = 10-at-a-time.c anyauthput.c certinfo.c cookie_interface.c \
 
201
        debug.c fileupload.c fopen.c ftpget.c ftpgetresp.c ftpupload.c \
 
202
        getinfo.c getinmemory.c http-post.c httpcustomheader.c \
 
203
        httpput.c https.c multi-app.c multi-debugcallback.c \
 
204
        multi-double.c multi-post.c multi-single.c persistant.c \
 
205
        post-callback.c postit2.c sendrecv.c sepheaders.c simple.c \
 
206
        simplepost.c simplessl.c
 
207
DIST_SOURCES = 10-at-a-time.c anyauthput.c certinfo.c \
 
208
        cookie_interface.c debug.c fileupload.c fopen.c ftpget.c \
 
209
        ftpgetresp.c ftpupload.c getinfo.c getinmemory.c http-post.c \
 
210
        httpcustomheader.c httpput.c https.c multi-app.c \
 
211
        multi-debugcallback.c multi-double.c multi-post.c \
194
212
        multi-single.c persistant.c post-callback.c postit2.c \
195
213
        sendrecv.c sepheaders.c simple.c simplepost.c simplessl.c
196
214
ETAGS = etags
213
231
CPPFLAGS = -DCURL_NO_OLDIES $(STATICCPPFLAGS)
214
232
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
215
233
CROSSCOMPILING_TRUE = @CROSSCOMPILING_TRUE@
 
234
CURL_CA_BUNDLE = @CURL_CA_BUNDLE@
216
235
CURL_DISABLE_DICT = @CURL_DISABLE_DICT@
217
236
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
218
237
CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
219
238
CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
220
239
CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
221
240
CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
 
241
CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
222
242
CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
223
243
CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
224
244
CURL_LIBS = @CURL_LIBS@
227
247
DEPDIR = @DEPDIR@
228
248
DLLTOOL = @DLLTOOL@
229
249
DSYMUTIL = @DSYMUTIL@
230
 
ECHO = @ECHO@
 
250
DUMPBIN = @DUMPBIN@
231
251
ECHO_C = @ECHO_C@
232
252
ECHO_N = @ECHO_N@
233
253
ECHO_T = @ECHO_T@
234
254
EGREP = @EGREP@
235
255
EXEEXT = @EXEEXT@
 
256
FGREP = @FGREP@
236
257
GREP = @GREP@
237
258
HAVE_ARES = @HAVE_ARES@
238
259
HAVE_LIBZ = @HAVE_LIBZ@
246
267
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
247
268
IPV6_ENABLED = @IPV6_ENABLED@
248
269
KRB4_ENABLED = @KRB4_ENABLED@
 
270
LD = @LD@
249
271
LDFLAGS = @LDFLAGS@
250
272
LIBCURL_LIBS = @LIBCURL_LIBS@
251
273
LIBOBJS = @LIBOBJS@
252
274
LIBS = @LIBS@
253
275
LIBTOOL = @LIBTOOL@
 
276
LIPO = @LIPO@
254
277
LN_S = @LN_S@
255
278
LTLIBOBJS = @LTLIBOBJS@
256
279
MAINT = @MAINT@
260
283
MANOPT = @MANOPT@
261
284
MIMPURE_FALSE = @MIMPURE_FALSE@
262
285
MIMPURE_TRUE = @MIMPURE_TRUE@
 
286
NM = @NM@
263
287
NMEDIT = @NMEDIT@
264
288
NO_UNDEFINED_FALSE = @NO_UNDEFINED_FALSE@
265
289
NO_UNDEFINED_TRUE = @NO_UNDEFINED_TRUE@
266
290
NROFF = @NROFF@
267
291
OBJDUMP = @OBJDUMP@
268
292
OBJEXT = @OBJEXT@
 
293
OTOOL = @OTOOL@
 
294
OTOOL64 = @OTOOL64@
269
295
PACKAGE = @PACKAGE@
270
296
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
271
297
PACKAGE_NAME = @PACKAGE_NAME@
272
298
PACKAGE_STRING = @PACKAGE_STRING@
273
299
PACKAGE_TARNAME = @PACKAGE_TARNAME@
274
300
PACKAGE_VERSION = @PACKAGE_VERSION@
 
301
PATH = @PATH@
275
302
PATH_SEPARATOR = @PATH_SEPARATOR@
276
303
PERL = @PERL@
277
304
PKGADD_NAME = @PKGADD_NAME@
284
311
SED = @SED@
285
312
SET_MAKE = @SET_MAKE@
286
313
SHELL = @SHELL@
 
314
SONAME_BUMP_FALSE = @SONAME_BUMP_FALSE@
 
315
SONAME_BUMP_TRUE = @SONAME_BUMP_TRUE@
287
316
SSL_ENABLED = @SSL_ENABLED@
288
317
STATICLIB_FALSE = @STATICLIB_FALSE@
289
318
STATICLIB_TRUE = @STATICLIB_TRUE@
290
319
STRIP = @STRIP@
 
320
SUPPORT_FEATURES = @SUPPORT_FEATURES@
 
321
SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
291
322
TEST_SERVER_LIBS = @TEST_SERVER_LIBS@
292
323
USE_GNUTLS = @USE_GNUTLS@
293
324
USE_LIBSSH2 = @USE_LIBSSH2@
299
330
VERSION = @VERSION@
300
331
VERSIONNUM = @VERSIONNUM@
301
332
ac_ct_CC = @ac_ct_CC@
 
333
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
302
334
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
303
335
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
304
336
am__include = @am__include@
331
363
libext = @libext@
332
364
localedir = @localedir@
333
365
localstatedir = @localstatedir@
 
366
lt_ECHO = @lt_ECHO@
334
367
mandir = @mandir@
335
368
mkdir_p = @mkdir_p@
336
369
oldincludedir = @oldincludedir@
347
380
EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 \
348
381
        makefile.dj $(COMPLICATED_EXAMPLES)
349
382
 
350
 
INCLUDES = -I$(top_srcdir)/include
 
383
 
 
384
# Specify our include paths here, and do it relative to $(top_srcdir) and
 
385
# $(top_builddir), to ensure that these paths which belong to the library
 
386
# being currently built and tested are searched before the library which
 
387
# might possibly already be installed in the system.
 
388
#
 
389
# $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
 
390
# $(top_srcdir)/include is for libcurl's external include files
 
391
INCLUDES = -I$(top_builddir)/include \
 
392
           -I$(top_srcdir)/include
 
393
 
351
394
LIBDIR = $(top_builddir)/lib
352
395
 
353
396
# we need this define when building with a static lib on Windows
361
404
COMPLICATED_EXAMPLES = \
362
405
 curlgtk.c curlx.c htmltitle.cc cacertinmem.c ftpuploadresume.c \
363
406
 ghiper.c hiperfifo.c htmltidy.c multithread.c \
364
 
 opensslthreadlock.c sampleconv.c synctime.c threaded-ssl.c
 
407
 opensslthreadlock.c sampleconv.c synctime.c threaded-ssl.c evhiperfifo.c
365
408
 
366
409
all: all-am
367
410
 
409
452
anyauthput$(EXEEXT): $(anyauthput_OBJECTS) $(anyauthput_DEPENDENCIES) 
410
453
        @rm -f anyauthput$(EXEEXT)
411
454
        $(LINK) $(anyauthput_LDFLAGS) $(anyauthput_OBJECTS) $(anyauthput_LDADD) $(LIBS)
 
455
certinfo$(EXEEXT): $(certinfo_OBJECTS) $(certinfo_DEPENDENCIES) 
 
456
        @rm -f certinfo$(EXEEXT)
 
457
        $(LINK) $(certinfo_LDFLAGS) $(certinfo_OBJECTS) $(certinfo_LDADD) $(LIBS)
412
458
cookie_interface$(EXEEXT): $(cookie_interface_OBJECTS) $(cookie_interface_DEPENDENCIES) 
413
459
        @rm -f cookie_interface$(EXEEXT)
414
460
        $(LINK) $(cookie_interface_LDFLAGS) $(cookie_interface_OBJECTS) $(cookie_interface_LDADD) $(LIBS)
439
485
http-post$(EXEEXT): $(http_post_OBJECTS) $(http_post_DEPENDENCIES) 
440
486
        @rm -f http-post$(EXEEXT)
441
487
        $(LINK) $(http_post_LDFLAGS) $(http_post_OBJECTS) $(http_post_LDADD) $(LIBS)
 
488
httpcustomheader$(EXEEXT): $(httpcustomheader_OBJECTS) $(httpcustomheader_DEPENDENCIES) 
 
489
        @rm -f httpcustomheader$(EXEEXT)
 
490
        $(LINK) $(httpcustomheader_LDFLAGS) $(httpcustomheader_OBJECTS) $(httpcustomheader_LDADD) $(LIBS)
442
491
httpput$(EXEEXT): $(httpput_OBJECTS) $(httpput_DEPENDENCIES) 
443
492
        @rm -f httpput$(EXEEXT)
444
493
        $(LINK) $(httpput_LDFLAGS) $(httpput_OBJECTS) $(httpput_LDADD) $(LIBS)
493
542
 
494
543
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/10-at-a-time.Po@am__quote@
495
544
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/anyauthput.Po@am__quote@
 
545
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/certinfo.Po@am__quote@
496
546
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cookie_interface.Po@am__quote@
497
547
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@
498
548
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileupload.Po@am__quote@
503
553
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getinfo.Po@am__quote@
504
554
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getinmemory.Po@am__quote@
505
555
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http-post.Po@am__quote@
 
556
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/httpcustomheader.Po@am__quote@
506
557
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/httpput.Po@am__quote@
507
558
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/https.Po@am__quote@
508
559
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi-app.Po@am__quote@