~ubuntu-branches/ubuntu/wily/trafficserver/wily

« back to all changes in this revision

Viewing changes to example/replace-header/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2012-12-17 22:28:16 UTC
  • mfrom: (5.1.8 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121217222816-7xwjsx5k76zkb63d
Tags: 3.2.0-1ubuntu1
* Revert FreeBSD strerror_r() fixes that give errors with glibc 2.16.
* Apply patch from Konstantinos Margaritis to define barriers on ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
subdir = example/replace-header
51
51
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
52
52
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
53
 
am__aclocal_m4_deps = $(top_srcdir)/build/common.m4 \
54
 
        $(top_srcdir)/build/crypto.m4 $(top_srcdir)/build/libtool.m4 \
 
53
am__aclocal_m4_deps = $(top_srcdir)/build/ax_lib_readline.m4 \
 
54
        $(top_srcdir)/build/common.m4 $(top_srcdir)/build/crypto.m4 \
 
55
        $(top_srcdir)/build/jemalloc.m4 $(top_srcdir)/build/libtool.m4 \
55
56
        $(top_srcdir)/build/ltoptions.m4 \
56
57
        $(top_srcdir)/build/ltsugar.m4 \
57
58
        $(top_srcdir)/build/ltversion.m4 \
58
59
        $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lzma.m4 \
59
60
        $(top_srcdir)/build/network.m4 $(top_srcdir)/build/pcre.m4 \
60
 
        $(top_srcdir)/build/tcl.m4 $(top_srcdir)/build/xml.m4 \
61
 
        $(top_srcdir)/build/zlib.m4 $(top_srcdir)/configure.ac
 
61
        $(top_srcdir)/build/tcl.m4 $(top_srcdir)/build/tcmalloc.m4 \
 
62
        $(top_srcdir)/build/xml.m4 $(top_srcdir)/build/zlib.m4 \
 
63
        $(top_srcdir)/configure.ac
62
64
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
63
65
        $(ACLOCAL_M4)
64
66
mkinstalldirs = $(install_sh) -d
91
93
replace_header_la_LIBADD =
92
94
am_replace_header_la_OBJECTS = replace-header.lo
93
95
replace_header_la_OBJECTS = $(am_replace_header_la_OBJECTS)
94
 
replace_header_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
95
 
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
96
 
        $(replace_header_la_LDFLAGS) $(LDFLAGS) -o $@
 
96
AM_V_lt = $(am__v_lt_$(V))
 
97
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
 
98
am__v_lt_0 = --silent
 
99
replace_header_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
100
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
101
        $(AM_CFLAGS) $(CFLAGS) $(replace_header_la_LDFLAGS) $(LDFLAGS) \
 
102
        -o $@
97
103
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/lib/ts
98
104
depcomp = $(SHELL) $(top_srcdir)/build/aux/depcomp
99
105
am__depfiles_maybe = depfiles
100
106
am__mv = mv -f
101
107
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
102
108
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
103
 
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
104
 
        --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
105
 
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 
109
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
110
        $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
 
111
        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
 
112
        $(AM_CFLAGS) $(CFLAGS)
 
113
AM_V_CC = $(am__v_CC_$(V))
 
114
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
 
115
am__v_CC_0 = @echo "  CC    " $@;
 
116
AM_V_at = $(am__v_at_$(V))
 
117
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 
118
am__v_at_0 = @
106
119
CCLD = $(CC)
107
 
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
108
 
        --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
109
 
        $(LDFLAGS) -o $@
 
120
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
 
121
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
 
122
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
123
AM_V_CCLD = $(am__v_CCLD_$(V))
 
124
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
 
125
am__v_CCLD_0 = @echo "  CCLD  " $@;
 
126
AM_V_GEN = $(am__v_GEN_$(V))
 
127
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 
128
am__v_GEN_0 = @echo "  GEN   " $@;
110
129
SOURCES = $(replace_header_la_SOURCES)
111
130
DIST_SOURCES = $(replace_header_la_SOURCES)
112
131
ETAGS = etags
117
136
pkglibexecdir = @pkglibexecdir@
118
137
ACLOCAL = @ACLOCAL@
119
138
AMTAR = @AMTAR@
 
139
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
120
140
API_DEFS = @API_DEFS@
121
141
AR = @AR@
122
142
ASCPP = @ASCPP@
130
150
CCASDEPMODE = @CCASDEPMODE@
131
151
CCASFLAGS = @CCASFLAGS@
132
152
CCDEPMODE = @CCDEPMODE@
133
 
CFLAGS = @CFLAGS@ -I$(top_srcdir)/proxy/api
 
153
CFLAGS = @CFLAGS@
134
154
CPP = @CPP@
135
155
CPPFLAGS = @CPPFLAGS@
136
156
CXX = @CXX@
170
190
LIBCRYPT = @LIBCRYPT@
171
191
LIBDEMANGLE = @LIBDEMANGLE@
172
192
LIBDL = @LIBDL@
173
 
LIBEV = @LIBEV@
174
193
LIBEXC = @LIBEXC@
175
194
LIBEXECINFO = @LIBEXECINFO@
176
195
LIBEXPAT = @LIBEXPAT@
 
196
LIBHWLOC = @LIBHWLOC@
177
197
LIBICONV = @LIBICONV@
178
198
LIBMLD = @LIBMLD@
179
199
LIBNSL = @LIBNSL@
210
230
PACKAGE_URL = @PACKAGE_URL@
211
231
PACKAGE_VERSION = @PACKAGE_VERSION@
212
232
PATH_SEPARATOR = @PATH_SEPARATOR@
 
233
PCRE_CONFIG = @PCRE_CONFIG@
213
234
PERL = @PERL@
214
235
RANLIB = @RANLIB@
215
236
RM = @RM@
240
261
TS_VERSION_STRING = @TS_VERSION_STRING@
241
262
VERSION = @VERSION@
242
263
YACC = @YACC@
 
264
YACCBIN = @YACCBIN@
243
265
YFLAGS = @YFLAGS@
244
266
abs_builddir = @abs_builddir@
245
267
abs_srcdir = @abs_srcdir@
256
278
am__quote = @am__quote@
257
279
am__tar = @am__tar@
258
280
am__untar = @am__untar@
 
281
arg_max = @arg_max@
259
282
arpa_ineth = @arpa_ineth@
260
283
arpa_nameser_compath = @arpa_nameser_compath@
261
284
arpa_nameserh = @arpa_nameserh@
285
308
exp_bindir = @exp_bindir@
286
309
exp_cachedir = @exp_cachedir@
287
310
exp_datadir = @exp_datadir@
 
311
exp_docdir = @exp_docdir@
288
312
exp_exec_prefix = @exp_exec_prefix@
289
313
exp_includedir = @exp_includedir@
290
314
exp_infodir = @exp_infodir@
306
330
has_clock_gettime = @has_clock_gettime@
307
331
has_demangle = @has_demangle@
308
332
has_eventfd = @has_eventfd@
 
333
has_in6_is_addr_unspecified = @has_in6_is_addr_unspecified@
309
334
has_inkapi = @has_inkapi@
 
335
has_ip_tos = @has_ip_tos@
310
336
has_lrand48_r = @has_lrand48_r@
311
337
has_posix_fadvise = @has_posix_fadvise@
312
338
has_posix_memalign = @has_posix_memalign@
313
339
has_profiler = @has_profiler@
314
 
has_purify = @has_purify@
 
340
has_so_mark = @has_so_mark@
315
341
has_srand48_r = @has_srand48_r@
316
342
has_standalone_iocore = @has_standalone_iocore@
317
343
has_strlcat = @has_strlcat@
318
344
has_strlcpy = @has_strlcpy@
319
 
has_strndup = @has_strndup@
 
345
has_tcmalloc = @has_tcmalloc@
320
346
has_tests = @has_tests@
321
347
has_wccp = @has_wccp@
322
348
host = @host@
325
351
host_os = @host_os@
326
352
host_vendor = @host_vendor@
327
353
htmldir = @htmldir@
 
354
ifaddrsh = @ifaddrsh@
328
355
includedir = @includedir@
329
356
infodir = @infodir@
330
357
ink_with_modules_def = @ink_with_modules_def@
335
362
iocore_include_dirs = @iocore_include_dirs@
336
363
ip_transparent = @ip_transparent@
337
364
is_micro_build = @is_micro_build@
 
365
jemalloch = @jemalloch@
338
366
libdir = @libdir@
339
367
libexecdir = @libexecdir@
340
368
libgenh = @libgenh@
347
375
mandir = @mandir@
348
376
mathh = @mathh@
349
377
max_api_stats = @max_api_stats@
 
378
max_event_threads = @max_event_threads@
 
379
max_host_name_len = @max_host_name_len@
 
380
max_threads_per_type = @max_threads_per_type@
350
381
mkdir_p = @mkdir_p@
351
382
need_union_semun = @need_union_semun@
352
383
net_ppp_defsh = @net_ppp_defsh@
362
393
pdfdir = @pdfdir@
363
394
pkgbindir = @pkgbindir@
364
395
pkgcachedir = @pkgcachedir@
 
396
pkgdocdir = @pkgdocdir@
365
397
pkglocalstatedir = @pkglocalstatedir@
366
398
pkglogdir = @pkglogdir@
367
399
pkgruntimedir = @pkgruntimedir@
372
404
prefix = @prefix@
373
405
program_transform_name = @program_transform_name@
374
406
psdir = @psdir@
 
407
readline_readlineh = @readline_readlineh@
375
408
rel_bindir = @rel_bindir@
376
409
rel_cachedir = @rel_cachedir@
377
410
rel_datadir = @rel_datadir@
 
411
rel_docdir = @rel_docdir@
378
412
rel_exec_prefix = @rel_exec_prefix@
379
413
rel_includedir = @rel_includedir@
380
414
rel_infodir = @rel_infodir@
413
447
use_diags = @use_diags@
414
448
use_epoll = @use_epoll@
415
449
use_fast_sdk = @use_fast_sdk@
 
450
use_freelist = @use_freelist@
 
451
use_hwloc = @use_hwloc@
416
452
use_kqueue = @use_kqueue@
417
 
use_libev = @use_libev@
418
453
use_port = @use_port@
419
454
use_posix_cap = @use_posix_cap@
 
455
use_tls_npn = @use_tls_npn@
 
456
use_tls_sni = @use_tls_sni@
420
457
use_tproxy = @use_tproxy@
421
458
valuesh = @valuesh@
422
459
waith = @waith@
423
460
zlibh = @zlibh@
 
461
AM_CPPFLAGS = -I$(top_srcdir)/proxy/api
424
462
pkglib_LTLIBRARIES = replace-header.la
425
463
replace_header_la_SOURCES = replace-header.c
426
464
replace_header_la_LDFLAGS = -module -avoid-version -shared
490
528
          rm -f "$${dir}/so_locations"; \
491
529
        done
492
530
replace-header.la: $(replace_header_la_OBJECTS) $(replace_header_la_DEPENDENCIES) 
493
 
        $(replace_header_la_LINK) -rpath $(pkglibdir) $(replace_header_la_OBJECTS) $(replace_header_la_LIBADD) $(LIBS)
 
531
        $(AM_V_CCLD)$(replace_header_la_LINK) -rpath $(pkglibdir) $(replace_header_la_OBJECTS) $(replace_header_la_LIBADD) $(LIBS)
494
532
 
495
533
mostlyclean-compile:
496
534
        -rm -f *.$(OBJEXT)
501
539
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/replace-header.Plo@am__quote@
502
540
 
503
541
.c.o:
504
 
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
505
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
542
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
543
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
544
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
506
545
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
507
546
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
508
547
@am__fastdepCC_FALSE@   $(COMPILE) -c $<
509
548
 
510
549
.c.obj:
511
 
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
512
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
550
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 
551
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 
552
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
513
553
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
514
554
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
515
555
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
516
556
 
517
557
.c.lo:
518
 
@am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
519
 
@am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
558
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
 
559
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
 
560
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
520
561
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
521
562
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
522
563
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<