Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 220899 | Differences between
and this patch

Collapse All | Expand All

(-)lzma-4.32.5-orig/configure.ac (-17 / +1 lines)
Lines 7-16 Link Here
7
# instead of lzma-utils-version.tar.gz.
7
# instead of lzma-utils-version.tar.gz.
8
AC_INIT([LZMA], [4.32.5], [lasse.collin@tukaani.org])
8
AC_INIT([LZMA], [4.32.5], [lasse.collin@tukaani.org])
9
9
10
AC_CONFIG_SRCDIR([src/sdk/7zip/ICoder.h])
11
AC_CONFIG_HEADER([config.h])
10
AC_CONFIG_HEADER([config.h])
12
11
13
AC_SUBST(SDK_CXXFLAGS, "-DCOMPRESS_MF_BT -DCOMPRESS_MF_BT4 -DCOMPRESS_MF_HC")
14
AC_SUBST(SDK_CFLAGS, "-D_LZMA_IN_CB -D_LZMA_OUT_READ -D_LZMA_SYSTEM_SIZE_T -D_LZMA_PROB32")
12
AC_SUBST(SDK_CFLAGS, "-D_LZMA_IN_CB -D_LZMA_OUT_READ -D_LZMA_SYSTEM_SIZE_T -D_LZMA_PROB32")
15
13
16
# Debug or not:
14
# Debug or not:
Lines 21-27 Link Here
21
	enable_debug=no)
19
	enable_debug=no)
22
if test "x$enable_debug" = xyes; then
20
if test "x$enable_debug" = xyes; then
23
	CFLAGS="-g $CFLAGS"
21
	CFLAGS="-g $CFLAGS"
24
	CXXFLAGS="-g $CFLAGS"
25
	AC_MSG_RESULT([yes])
22
	AC_MSG_RESULT([yes])
26
else
23
else
27
	AC_DEFINE(NDEBUG, 1, [Define to disable debugging code.])
24
	AC_DEFINE(NDEBUG, 1, [Define to disable debugging code.])
Lines 34-40 Link Here
34
AM_INIT_AUTOMAKE
31
AM_INIT_AUTOMAKE
35
32
36
# Checks for programs.
33
# Checks for programs.
37
AC_PROG_CXX
38
AC_PROG_CC
34
AC_PROG_CC
39
AC_PROG_CPP
35
AC_PROG_CPP
40
AC_PROG_INSTALL
36
AC_PROG_INSTALL
Lines 81-99 Link Here
81
                 src/Makefile
77
                 src/Makefile
82
                 src/liblzmadec/Makefile
78
                 src/liblzmadec/Makefile
83
                 src/lzmadec/Makefile
79
                 src/lzmadec/Makefile
84
                 src/lzmainfo/Makefile
80
                 src/lzmainfo/Makefile])
85
                 src/lzma/Makefile
86
                 src/scripts/Makefile
87
                 src/sdk/7zip/Common/Makefile
88
                 src/sdk/7zip/Compress/LZ/Makefile
89
                 src/sdk/7zip/Compress/LZMA/Makefile
90
                 src/sdk/7zip/Compress/LZMA_C/Makefile
91
                 src/sdk/7zip/Compress/Makefile
92
                 src/sdk/7zip/Compress/RangeCoder/Makefile
93
                 src/sdk/7zip/Makefile
94
                 src/sdk/Common/Makefile
95
                 src/sdk/Makefile
96
                 tests/Makefile])
97
AC_OUTPUT
81
AC_OUTPUT
98
82
99
# This package should be compiled with large file support unless there's
83
# This package should be compiled with large file support unless there's
(-)lzma-4.32.5-orig/Makefile.am (-1 / +1 lines)
Lines 1-4 Link Here
1
SUBDIRS = src tests
1
SUBDIRS = src
2
ACLOCAL_AMFLAGS = -I m4
2
ACLOCAL_AMFLAGS = -I m4
3
AUTOMAKE_OPTIONS = foreign
3
AUTOMAKE_OPTIONS = foreign
4
EXTRA_DIST = \
4
EXTRA_DIST = \
(-)lzma-4.32.5-orig/src/Makefile.am (-1 / +1 lines)
Lines 1-2 Link Here
1
SUBDIRS = liblzmadec lzmadec lzmainfo sdk lzma scripts
1
SUBDIRS = liblzmadec lzmadec lzmainfo
2
EXTRA_DIST = lzma_version.h
2
EXTRA_DIST = lzma_version.h

Return to bug 220899