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

Collapse All | Expand All

(-)lrzip-0.23.orig/configure.in (-1 / +10 lines)
Lines 2-17 Link Here
2
AC_INIT(lrzip, 0.23,kernel@kolivas.org,lrzip-0.23)
2
AC_INIT(lrzip, 0.23,kernel@kolivas.org,lrzip-0.23)
3
AC_CONFIG_HEADER(config.h)
3
AC_CONFIG_HEADER(config.h)
4
# see what our system is!
4
# see what our system is!
5
AC_CANONICAL_HOST
5
AC_CANONICAL_HOST
6
6
7
AC_ARG_ENABLE(	
8
		asm,
9
		[AC_HELP_STRING([--enable-asm],[Enable native Assembly code])],
10
		ASM=$enableval,
11
		ASM=yes
12
             )
13
if test x"$ASM" = xyes; then
14
	AC_CHECK_PROG( ASM, nasm, yes, no )
15
fi
16
7
dnl Checks for programs.
17
dnl Checks for programs.
8
AC_PROG_CC
18
AC_PROG_CC
9
AC_PROG_CXX
19
AC_PROG_CXX
10
AC_PROG_INSTALL
20
AC_PROG_INSTALL
11
AC_PROG_LN_S
21
AC_PROG_LN_S
12
AC_CHECK_PROG( ASM, nasm, yes, no )
13
AC_SUBST(SHELL)
22
AC_SUBST(SHELL)
14
AC_SYS_LARGEFILE
23
AC_SYS_LARGEFILE
15
24
16
# Thanks to Martin Pool
25
# Thanks to Martin Pool
17
#if test x"$GCC" = xyes 
26
#if test x"$GCC" = xyes 
(-)lrzip-0.23.orig/lzma/ASM/x86/7zCrcT8U.s (+3 lines)
Lines 95-99 Link Here
95
    pop EDI
95
    pop EDI
96
    pop ESI
96
    pop ESI
97
    pop EBX
97
    pop EBX
98
    ret 
98
    ret 
99
99
100
%ifidn __OUTPUT_FORMAT__,elf
101
    section .note.GNU-stack noalloc noexec nowrite progbits
102
%endif

Return to bug 220829