4.0.1-hotfixescachetimestampsdevelopdpdk-ndagetsilivelibtrace4ndag_formatpfringrc-4.0.1rc-4.0.2rc-4.0.3rc-4.0.4ringdecrementfixringperformanceringtimestampfixes
Last change
on this file since d19ff50 was
4b0cd2f,
checked in by Shane Alcock <salcock@…>, 8 years ago
|
Integrate lzma into libwandio properly
Update configure to detect lzma properly.
Add missing get_compression_type API function to wandio code.
Add code to detect if input file is LZMA.
|
-
Property mode set to
100644
|
File size:
998 bytes
|
Line | |
---|
1 | lib_LTLIBRARIES=libwandio.la |
---|
2 | |
---|
3 | include_HEADERS=wandio.h |
---|
4 | |
---|
5 | AM_CFLAGS=@LIBCFLAGS@ @CFLAG_VISIBILITY@ |
---|
6 | AM_CXXFLAGS=@LIBCXXFLAGS@ @CFLAG_VISIBILITY@ |
---|
7 | |
---|
8 | if HAVE_ZLIB |
---|
9 | LIBTRACEIO_ZLIB=ior-zlib.c iow-zlib.c |
---|
10 | else |
---|
11 | LIBTRACEIO_ZLIB= |
---|
12 | endif |
---|
13 | |
---|
14 | if HAVE_BZLIB |
---|
15 | LIBTRACEIO_BZLIB=ior-bzip.c iow-bzip.c |
---|
16 | else |
---|
17 | LIBTRACEIO_BZLIB= |
---|
18 | endif |
---|
19 | |
---|
20 | if HAVE_LZO |
---|
21 | LIBTRACEIO_LZO=iow-lzo.c |
---|
22 | else |
---|
23 | LIBTRACEIO_LZO= |
---|
24 | endif |
---|
25 | |
---|
26 | if HAVE_LZMA |
---|
27 | LIBTRACEIO_LZMA=ior-lzma.c iow-lzma.c |
---|
28 | else |
---|
29 | LIBTRACEIO_LZMA= |
---|
30 | endif |
---|
31 | |
---|
32 | libwandio_la_SOURCES=wandio.c ior-peek.c ior-stdio.c ior-thread.c \ |
---|
33 | iow-stdio.c iow-thread.c wandio.h wandio_internal.h \ |
---|
34 | $(LIBTRACEIO_ZLIB) $(LIBTRACEIO_BZLIB) $(LIBTRACEIO_LZO) \ |
---|
35 | $(LIBTRACEIO_LZMA) |
---|
36 | |
---|
37 | AM_CPPFLAGS = @ADD_INCLS@ |
---|
38 | libwandio_la_LIBADD = @LIBWANDIO_LIBS@ |
---|
39 | libwandio_la_LDFLAGS=-version-info 1:0:0 @ADD_LDFLAGS@ |
---|
40 | |
---|
41 | bin_PROGRAMS = wandiocat |
---|
42 | wandiocat_SOURCES = wcat.c |
---|
43 | wandiocat_CFLAGS = -I"$(top_srcdir)/libwandio" |
---|
44 | wandiocat_CXXFLAGS = -I"$(top_srcdir)/libwandio" |
---|
45 | wandiocat_LDFLAGS = -L"$(top_srcdir)/libwandio" -lwandio |
---|
Note: See
TracBrowser
for help on using the repository browser.